diff options
author | Mattes D <github@xoft.cz> | 2013-12-11 17:02:45 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2013-12-11 17:02:45 +0100 |
commit | 7035d31e9d8f4d25efc722cb3d2a49fb756249ee (patch) | |
tree | 75dd002246aa046a67c6675e9f3a4f93bb644e33 /src/Bindings/Plugin.h | |
parent | ExpOrbs now move. (diff) | |
parent | HOOK_WORLD_STARTED now gets called when the CreateAndInitializeWorld function is used. (diff) | |
download | cuberite-7035d31e9d8f4d25efc722cb3d2a49fb756249ee.tar cuberite-7035d31e9d8f4d25efc722cb3d2a49fb756249ee.tar.gz cuberite-7035d31e9d8f4d25efc722cb3d2a49fb756249ee.tar.bz2 cuberite-7035d31e9d8f4d25efc722cb3d2a49fb756249ee.tar.lz cuberite-7035d31e9d8f4d25efc722cb3d2a49fb756249ee.tar.xz cuberite-7035d31e9d8f4d25efc722cb3d2a49fb756249ee.tar.zst cuberite-7035d31e9d8f4d25efc722cb3d2a49fb756249ee.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Bindings/Plugin.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Bindings/Plugin.h b/src/Bindings/Plugin.h index 50a89018d..5cb35ac5a 100644 --- a/src/Bindings/Plugin.h +++ b/src/Bindings/Plugin.h @@ -93,6 +93,7 @@ public: virtual bool OnUpdatingSign (cWorld * a_World, int a_BlockX, int a_BlockY, int a_BlockZ, AString & a_Line1, AString & a_Line2, AString & a_Line3, AString & a_Line4, cPlayer * a_Player) = 0; virtual bool OnWeatherChanged (cWorld & a_World) = 0; virtual bool OnWeatherChanging (cWorld & a_World, eWeather & a_NewWeather) = 0; + virtual bool OnWorldStarted (cWorld & a_World) = 0; virtual bool OnWorldTick (cWorld & a_World, float a_Dt, int a_LastTickDurationMSec) = 0; /** Handles the command split into a_Split, issued by player a_Player. |