eqemu-server/zone/lua_hate_list.h
Chris Miles 209b0eb273
[int64] Hate Fixes (#2163)
* Hate fixes

* Update perl_hateentry.cpp

* Update perl_hateentry.cpp
2022-05-09 20:49:43 -05:00

38 lines
716 B
C++

#ifndef EQEMU_LUA_HATE_LIST_H
#define EQEMU_LUA_HATE_LIST_H
#ifdef LUA_EQEMU
#include "lua_ptr.h"
class Lua_Mob;
struct struct_HateList;
luabind::scope lua_register_hate_entry();
luabind::scope lua_register_hate_list();
class Lua_HateEntry : public Lua_Ptr<struct_HateList>
{
typedef struct_HateList NativeType;
public:
Lua_HateEntry() : Lua_Ptr(nullptr) { }
Lua_HateEntry(struct_HateList *d) : Lua_Ptr(d) { }
virtual ~Lua_HateEntry() { }
Lua_Mob GetEnt();
void SetEnt(Lua_Mob e);
int64 GetDamage();
void SetDamage(int64 value);
int64 GetHate();
void SetHate(int64 value);
int GetFrenzy();
void SetFrenzy(bool value);
};
struct Lua_HateList
{
std::vector<Lua_HateEntry> entries;
};
#endif
#endif