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