diff options
author | faketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-01-27 00:10:49 +0100 |
---|---|---|
committer | faketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-01-27 00:10:49 +0100 |
commit | 4e8128b9d738d1744cc883deaa9c294f43ba8242 (patch) | |
tree | b5badd0ccc771d95e066026876c06c58d673ee25 /source/cPlugin_NewLua.h | |
parent | More new plugin awesomeness (diff) | |
download | cuberite-4e8128b9d738d1744cc883deaa9c294f43ba8242.tar cuberite-4e8128b9d738d1744cc883deaa9c294f43ba8242.tar.gz cuberite-4e8128b9d738d1744cc883deaa9c294f43ba8242.tar.bz2 cuberite-4e8128b9d738d1744cc883deaa9c294f43ba8242.tar.lz cuberite-4e8128b9d738d1744cc883deaa9c294f43ba8242.tar.xz cuberite-4e8128b9d738d1744cc883deaa9c294f43ba8242.tar.zst cuberite-4e8128b9d738d1744cc883deaa9c294f43ba8242.zip |
Diffstat (limited to '')
-rw-r--r-- | source/cPlugin_NewLua.h | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/source/cPlugin_NewLua.h b/source/cPlugin_NewLua.h index 418865879..bdd7f1f7e 100644 --- a/source/cPlugin_NewLua.h +++ b/source/cPlugin_NewLua.h @@ -5,16 +5,23 @@ typedef struct lua_State lua_State;
-class cPlugin_NewLua : public cPlugin //tolua_export
-{ //tolua_export
-public: //tolua_export
+class cPlugin_NewLua : public cPlugin //tolua_export
+{ //tolua_export
+public: //tolua_export
cPlugin_NewLua( const char* a_PluginName );
~cPlugin_NewLua();
- virtual bool Initialize(); //tolua_export
- virtual void Tick(float a_Dt); //tolua_export
+ virtual bool Initialize(); //tolua_export
+ virtual void Tick(float a_Dt); //tolua_export
+ virtual bool OnPlayerJoin( cPlayer* a_Player ); //tolua_export
+ virtual bool OnLogin( cPacket_Login* a_PacketData ); //tolua_export
+ virtual bool OnBlockPlace( cPacket_BlockPlace* a_PacketData, cPlayer* a_Player ); // tolua_export
+ virtual bool OnKilled( cPawn* a_Killed, cEntity* a_Killer ); //tolua_export
private:
+ bool PushFunction( const char* a_FunctionName );
+ bool CallFunction( int a_NumArgs, int a_NumResults, const char* a_FunctionName ); // a_FunctionName is only used for error messages, nothing else
+
std::string m_Directory;
lua_State* m_LuaState;
};//tolua_export
\ No newline at end of file |