Files
Leviathan/Client/Game/game/Utility/StringDBHelper.h
T
2026-06-01 12:46:52 +02:00

31 lines
744 B
C++

#ifndef _StringDBHelper_h_
#define _StringDBHelper_h_
//#include <string>
/*
2011.03.22 스트링 디비에서 관련 스트링을 뽑는데 도움을 주는 함수,
현재 여기저기에 있는데, 여기로 하나씩 통합 시키면 될것 같음 - prodongi
*/
namespace StringDBHelper
{
/// 2011.03.22 - prodongi
void getBitSetANameList(int bitSetId, char const* tag, std::string& str);
/// 2011.04.11 - prodongi
void getBitSetBNameList(int bitSetId, char const* tag, std::string& str);
/// 2011.03.21 계열(기타, 야수, 아인,,,) - prodongi
const char* getDescentName(int type);
/// 2011.03.21 데미지 속성(무속성, 화속성, ,,,) - prodongi
const char* getDmgAttriName(int type);
};
#endif