diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-08-24 09:58:26 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-08-24 09:58:26 +0200 |
commit | e92b9e7ecbdf2918aab59d4eeb7bb5966430b264 (patch) | |
tree | 1a998d44e5faab91c54ea8517dd9fa02b3732ef7 /source/cClientHandle.h | |
parent | Added plugin name to deprecation messages (diff) | |
download | cuberite-e92b9e7ecbdf2918aab59d4eeb7bb5966430b264.tar cuberite-e92b9e7ecbdf2918aab59d4eeb7bb5966430b264.tar.gz cuberite-e92b9e7ecbdf2918aab59d4eeb7bb5966430b264.tar.bz2 cuberite-e92b9e7ecbdf2918aab59d4eeb7bb5966430b264.tar.lz cuberite-e92b9e7ecbdf2918aab59d4eeb7bb5966430b264.tar.xz cuberite-e92b9e7ecbdf2918aab59d4eeb7bb5966430b264.tar.zst cuberite-e92b9e7ecbdf2918aab59d4eeb7bb5966430b264.zip |
Diffstat (limited to 'source/cClientHandle.h')
-rw-r--r-- | source/cClientHandle.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source/cClientHandle.h b/source/cClientHandle.h index bc644227f..ae2bea6c5 100644 --- a/source/cClientHandle.h +++ b/source/cClientHandle.h @@ -33,6 +33,8 @@ class cRedstone; class cInventory; class cWindow; class cPawn; +class cPickup; +class cMonster; @@ -107,6 +109,10 @@ public: void SendEntityStatus(const cEntity & a_Entity, char a_Status); void SendMetadata(const cPawn & a_Entity); void SendInventoryProgress(char a_WindowID, short a_Progressbar, short a_Value); + void SendPlayerSpawn(const cPlayer & a_Player); + void SendPickupSpawn(const cPickup & a_Pickup); + void SendSpawnMob (const cMonster & a_Mob); + void SendUpdateSign (int a_BlockX, int a_BlockY, int a_BlockZ, const AString & a_Line1, const AString & a_Line2, const AString & a_Line3, const AString & a_Line4); const AString & GetUsername(void) const; //tolua_export |