more lua, gonna work on single interpreter soon

This commit is contained in:
KimLS
2013-05-14 19:05:49 -07:00
parent 38521e0009
commit 3cc1065873
13 changed files with 387 additions and 125 deletions
+14
View File
@@ -0,0 +1,14 @@
#ifdef LUA_EQEMU
#include "masterentity.h"
#include "lua_item.h"
bool Lua_Item::Null() {
return d_ == nullptr;
}
bool Lua_Item::Valid() {
return d_ != nullptr;
}
#endif