diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-07-02 19:46:00 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2014-07-02 19:46:00 +0200 |
commit | 19caba5125e457a9663102989ea717898e3c2827 (patch) | |
tree | 5ddd30ef142ad0f6d962e851c275687f5ab07f2e /src/Blocks/WorldInterface.h | |
parent | Fixed printf formats for Win builds (diff) | |
download | cuberite-19caba5125e457a9663102989ea717898e3c2827.tar cuberite-19caba5125e457a9663102989ea717898e3c2827.tar.gz cuberite-19caba5125e457a9663102989ea717898e3c2827.tar.bz2 cuberite-19caba5125e457a9663102989ea717898e3c2827.tar.lz cuberite-19caba5125e457a9663102989ea717898e3c2827.tar.xz cuberite-19caba5125e457a9663102989ea717898e3c2827.tar.zst cuberite-19caba5125e457a9663102989ea717898e3c2827.zip |
Diffstat (limited to 'src/Blocks/WorldInterface.h')
-rw-r--r-- | src/Blocks/WorldInterface.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Blocks/WorldInterface.h b/src/Blocks/WorldInterface.h index 650a216c0..251b28d03 100644 --- a/src/Blocks/WorldInterface.h +++ b/src/Blocks/WorldInterface.h @@ -46,4 +46,7 @@ public: virtual void SetTimeOfDay(Int64 a_TimeOfDay) = 0; + /** Wakes up the simulators for the specified block */ + virtual void WakeUpSimulators(int a_BlockX, int a_BlockY, int a_BlockZ) = 0; + }; |