diff options
author | megamage <none@none> | 2009-02-17 17:40:03 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-02-17 17:40:03 -0600 |
commit | a24928be67da1cffd433c6bd40564ebfd55b1d9d (patch) | |
tree | f50ac4f59d40a59d2195848ab9a7a54de700880f /src/game/GossipDef.h | |
parent | 68cfb7c5a492ca1cc691cce831421af98bd6fe45 (diff) |
[7292] Implement storage for points of interest data in DB.
It can be in current state used for simplify scripting code that set POI and more advansed way later..
Call void PlayerMenu::SendPointOfInterest( float X, float Y, uint32 Icon, uint32 Flags, uint32 Data, char const * locName )
will removed after some time delay, and only void PlayerMenu::SendPointOfInterest( uint32 poi_id ) will exist.
Author: GriffonHeart
--HG--
branch : trunk
Diffstat (limited to 'src/game/GossipDef.h')
-rw-r--r-- | src/game/GossipDef.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/game/GossipDef.h b/src/game/GossipDef.h index cb93a4e7a91..dc52eb4dc3b 100644 --- a/src/game/GossipDef.h +++ b/src/game/GossipDef.h @@ -189,6 +189,7 @@ class TRINITY_DLL_SPEC PlayerMenu void SendGossipMenu( uint32 TitleTextId, uint64 npcGUID ); void CloseGossip(); void SendPointOfInterest( float X, float Y, uint32 Icon, uint32 Flags, uint32 Data, const char * locName ); + void SendPointOfInterest( uint32 poi_id ); void SendTalking( uint32 textID ); void SendTalking( char const * title, char const * text ); |