mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 01:11:29 +00:00
15 lines
175 B
C++
15 lines
175 B
C++
#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
|