Lua work on api - entity and mob, lots more to go

This commit is contained in:
KimLS
2013-05-11 13:51:57 -07:00
parent d1f7935ee2
commit fa908040ca
10 changed files with 292 additions and 13 deletions
+18
View File
@@ -0,0 +1,18 @@
#ifndef EQEMU_LUA_CLIENT_H
#define EQEMU_LUA_CLIENT_H
#ifdef LUA_EQEMU
#include "lua_mob.h"
class Client;
class Lua_Client : public Lua_Mob
{
public:
Lua_Client() { d_ = nullptr; }
Lua_Client(Client *d) { d_ = d; }
virtual ~Lua_Client() { }
};
#endif
#endif