mirror of
https://github.com/whoahq/whoa.git
synced 2026-03-05 15:42:17 +03:00
feat(object): add CGPlayer_C::GetActiveXP
This commit is contained in:
parent
5d81022c74
commit
ee48e47992
@ -1,5 +1,6 @@
|
||||
#include "object/client/CGPlayer_C.hpp"
|
||||
#include "db/Db.hpp"
|
||||
#include "object/client/ObjMgr.hpp"
|
||||
#include "object/Types.hpp"
|
||||
#include <storm/Error.hpp>
|
||||
|
||||
@ -11,6 +12,14 @@ CGPlayer_C::~CGPlayer_C() {
|
||||
// TODO
|
||||
}
|
||||
|
||||
uint32_t CGPlayer_C::GetActiveXP() const {
|
||||
if (this->GetGUID() != ClntObjMgrGetActivePlayer()) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
return this->GetXP();
|
||||
}
|
||||
|
||||
void CGPlayer_C::PostInit(uint32_t time, const CClientObjCreate& init, bool a4) {
|
||||
// TODO
|
||||
|
||||
|
||||
@ -15,6 +15,7 @@ class CGPlayer_C : public CGUnit_C, public CGPlayer {
|
||||
|
||||
// Public member functions
|
||||
CGPlayer_C(uint32_t time, CClientObjCreate& objCreate);
|
||||
uint32_t GetActiveXP() const;
|
||||
void PostInit(uint32_t time, const CClientObjCreate& init, bool a4);
|
||||
void SetStorage(uint32_t* storage, uint32_t* saved);
|
||||
};
|
||||
|
||||
Loading…
Reference in New Issue
Block a user