diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-03-09 01:17:23 +0100 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-03-09 16:32:34 +0100 |
commit | b64e9fb7f52e4a2b75b49413fdc2194132885370 (patch) | |
tree | a967875d53f6530d88065460c3e853c955ea10f5 /src/Blocks/WorldInterface.h | |
parent | Merge pull request #777 from jfhumann/issue317 (diff) | |
download | cuberite-b64e9fb7f52e4a2b75b49413fdc2194132885370.tar cuberite-b64e9fb7f52e4a2b75b49413fdc2194132885370.tar.gz cuberite-b64e9fb7f52e4a2b75b49413fdc2194132885370.tar.bz2 cuberite-b64e9fb7f52e4a2b75b49413fdc2194132885370.tar.lz cuberite-b64e9fb7f52e4a2b75b49413fdc2194132885370.tar.xz cuberite-b64e9fb7f52e4a2b75b49413fdc2194132885370.tar.zst cuberite-b64e9fb7f52e4a2b75b49413fdc2194132885370.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Blocks/WorldInterface.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/Blocks/WorldInterface.h b/src/Blocks/WorldInterface.h index e59b00eff..580339d32 100644 --- a/src/Blocks/WorldInterface.h +++ b/src/Blocks/WorldInterface.h @@ -27,7 +27,13 @@ public: /** Spawns a mob of the specified type. Returns the mob's EntityID if recognized and spawned, <0 otherwise */ virtual int SpawnMob(double a_PosX, double a_PosY, double a_PosZ, cMonster::eType a_MonsterType) = 0; - + /** Sends the block on those coords to the player */ virtual void SendBlockTo(int a_BlockX, int a_BlockY, int a_BlockZ, cPlayer * a_Player) = 0; + + /** Calls the callback for each player in the list; returns true if all players processed, false if the callback aborted by returning true */ + virtual bool ForEachPlayer(cItemCallback<cPlayer> & a_Callback) = 0; + + virtual void SetTimeOfDay(Int64 a_TimeOfDay) = 0; + }; |