mirror of
https://github.com/ornfelt/azerothcore_lua_scripts
synced 2026-08-22 06:26:03 -04:00
25 lines
No EOL
380 B
C++
25 lines
No EOL
380 B
C++
|
|
|
|
|
|
|
|
|
|
#ifndef _CUSTOMXP_H
|
|
#define _CUSTOMXP_H
|
|
|
|
class CustomXP {
|
|
public:
|
|
|
|
|
|
void setCustomXPEntry(std::string charactername, int characterguid, int xpvalue);
|
|
std::string getCustomXPExntry(int characterguid);
|
|
void updateCustomXPEntry(int xpvalue, int characterguid);
|
|
int getCustomXPValue(int characterguid);
|
|
|
|
void setXPRate(Player * player, const char* args);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif |