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
+20
View File
@@ -0,0 +1,20 @@
#ifndef EQEMU_LUA_MOB_H
#define EQEMU_LUA_MOB_H
#ifdef LUA_EQEMU
#include "lua_entity.h"
class Mob;
class Lua_Mob : public Lua_Entity
{
public:
Lua_Mob() { }
Lua_Mob(Mob *d) { this->d_ = d; }
virtual ~Lua_Mob() { }
const char *GetName();
};
#endif
#endif