diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-06-05 17:20:48 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-06-05 17:20:48 +0200 |
commit | d832996e198605c20760c72433e35beca3192a5a (patch) | |
tree | aedaefb6b7753a14eb27c7c6fd3e8e3a3b7c3df3 /source/cPluginManager.h | |
parent | Fixed previous commit's recipes and items. (diff) | |
download | cuberite-d832996e198605c20760c72433e35beca3192a5a.tar cuberite-d832996e198605c20760c72433e35beca3192a5a.tar.gz cuberite-d832996e198605c20760c72433e35beca3192a5a.tar.bz2 cuberite-d832996e198605c20760c72433e35beca3192a5a.tar.lz cuberite-d832996e198605c20760c72433e35beca3192a5a.tar.xz cuberite-d832996e198605c20760c72433e35beca3192a5a.tar.zst cuberite-d832996e198605c20760c72433e35beca3192a5a.zip |
Diffstat (limited to 'source/cPluginManager.h')
-rw-r--r-- | source/cPluginManager.h | 34 |
1 files changed, 18 insertions, 16 deletions
diff --git a/source/cPluginManager.h b/source/cPluginManager.h index d2099ebd7..b6983a5e3 100644 --- a/source/cPluginManager.h +++ b/source/cPluginManager.h @@ -12,22 +12,24 @@ public: //tolua_export // Called each tick
virtual void Tick(float a_Dt);
- enum PluginHook //tolua_export
- { //tolua_export
- E_PLUGIN_TICK, //tolua_export
- E_PLUGIN_CHAT, //tolua_export
- E_PLUGIN_COLLECT_ITEM, //tolua_export
- E_PLUGIN_BLOCK_DIG, //tolua_export
- E_PLUGIN_BLOCK_PLACE, //tolua_export
- E_PLUGIN_DISCONNECT, //tolua_export
- E_PLUGIN_HANDSHAKE, //tolua_export
- E_PLUGIN_LOGIN, //tolua_export
- E_PLUGIN_PLAYER_SPAWN, //tolua_export
- E_PLUGIN_PLAYER_JOIN, //tolua_export
- E_PLUGIN_PLAYER_MOVE, //tolua_export
- E_PLUGIN_TAKE_DAMAGE, //tolua_export
- E_PLUGIN_KILLED, //tolua_export
- }; //tolua_export
+ enum PluginHook // tolua_export
+ { // tolua_export
+ E_PLUGIN_TICK, // tolua_export
+ E_PLUGIN_CHAT, // tolua_export
+ E_PLUGIN_COLLECT_ITEM, // tolua_export
+ E_PLUGIN_BLOCK_DIG, // tolua_export
+ E_PLUGIN_BLOCK_PLACE, // tolua_export
+ E_PLUGIN_DISCONNECT, // tolua_export
+ E_PLUGIN_HANDSHAKE, // tolua_export
+ E_PLUGIN_LOGIN, // tolua_export
+ E_PLUGIN_PLAYER_SPAWN, // tolua_export
+ E_PLUGIN_PLAYER_JOIN, // tolua_export
+ E_PLUGIN_PLAYER_MOVE, // tolua_export
+ E_PLUGIN_TAKE_DAMAGE, // tolua_export
+ E_PLUGIN_KILLED, // tolua_export
+ E_PLUGIN_CHUNK_GENERATED, // tolua_export
+ E_PLUGIN_CHUNK_GENERATING, // tolua_export
+ }; // tolua_export
static cPluginManager * GetPluginManager(); //tolua_export
|