Changeset 178 for trunk/src/game/Player.h
- Timestamp:
- 11/19/08 13:43:40 (17 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/game/Player.h
r177 r178 1993 1993 ClientGUIDs m_clientGUIDs; 1994 1994 1995 bool HaveAtClient(WorldObject const* u) { return u==this || m_clientGUIDs.find(u->GetGUID())!=m_clientGUIDs.end(); } 1996 1997 bool IsVisibleInGridForPlayer(Player* pl) const; 1995 bool HaveAtClient(WorldObject const* u) const { return u==this || m_clientGUIDs.find(u->GetGUID())!=m_clientGUIDs.end(); } 1996 1997 bool canSeeOrDetect(Unit const* u, bool detect, bool inVisibleList) const; 1998 bool IsVisibleInGridForPlayer(Player const* pl) const; 1998 1999 bool IsVisibleGloballyFor(Player* pl) const; 1999 2000