mirror of
https://github.com/ornfelt/azerothcore_lua_scripts
synced 2026-08-22 06:26:03 -04:00
20 lines
311 B
C
20 lines
311 B
C
|
|
|
||
|
|
|
||
|
|
|
||
|
|
#ifndef _CUSTOMWORLDSYSTEM_H
|
||
|
|
#define _CUSTOMWORLDSYSTEM_H
|
||
|
|
|
||
|
|
class CustomWorldSystem {
|
||
|
|
public:
|
||
|
|
|
||
|
|
|
||
|
|
int getItemID(int itemid);
|
||
|
|
std::string getQuestNamebyID(int questid);
|
||
|
|
int getQuestIDbyName(std::string questname);
|
||
|
|
bool doesItemExistinDB(int itemid);
|
||
|
|
std::string getItemNamebyItemId(int itemid);
|
||
|
|
};
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
#endif
|