GUID interface.

This commit is contained in:
KimLS 2023-03-06 13:51:00 -08:00
parent 67df6f62b7
commit 593127fb7e

View File

@ -228,6 +228,9 @@ namespace EQ
inline int32 GetSerialNumber() const { return m_SerialNumber; }
inline void SetSerialNumber(int32 id) { m_SerialNumber = id; }
inline std::string GetGUID() const { return m_guid; }
inline void SetGUID(const std::string &guid) { m_guid = guid; }
std::map<std::string, ::Timer>& GetTimers() { return m_timers; }
void SetTimer(std::string name, uint32 time);
void StopTimer(std::string name);
@ -313,6 +316,7 @@ namespace EQ
bool m_attuned;
int32 m_merchantcount; //number avaliable on the merchant, -1=unlimited
int32 m_SerialNumber; // Unique identifier for this instance of an item. Needed for Bazaar.
std::string m_guid;
uint32 m_exp;
int8 m_evolveLvl;
bool m_activated;