Lua work - loading works, I think checking for sub works. Calling subs is in the beginning stages and binding is starting

This commit is contained in:
KimLS
2013-05-10 20:13:35 -07:00
parent 43d0350870
commit dc045591e4
18 changed files with 5917 additions and 63 deletions
+11
View File
@@ -0,0 +1,11 @@
#ifdef LUA_EQEMU
#include "masterentity.h"
#include "lua_mob.h"
const char *Lua_Mob::GetName() {
Mob *m = reinterpret_cast<Mob*>(d_);
return m->GetName();
}
#endif