mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-13 06:21:28 +00:00
20 lines
242 B
C++
20 lines
242 B
C++
#ifndef EQEMU_LUA_HATE_ENTRY_H
|
|
#define EQEMU_LUA_HATE_ENTRY_H
|
|
#ifdef LUA_EQEMU
|
|
|
|
class Lua_Mob;
|
|
|
|
struct Lua_HateEntry
|
|
{
|
|
Lua_HateEntry() { }
|
|
virtual ~Lua_HateEntry() { }
|
|
|
|
Lua_Mob ent;
|
|
int damage;
|
|
int hate;
|
|
bool frenzy;
|
|
};
|
|
|
|
#endif
|
|
#endif
|