32 lines
769 B
C++
32 lines
769 B
C++
//=============================================================================================================================
|
|
/// WUTLoader class
|
|
/**
|
|
@author Kim Min Wook < taiyo@webzen.com >
|
|
@since 2006. 7. 28
|
|
@note
|
|
- WUT 파일에서 유닛의 리젠+그룹 정보 읽는 static class
|
|
@history
|
|
|
|
*/
|
|
//=============================================================================================================================
|
|
|
|
#pragma once
|
|
|
|
|
|
#include <string>
|
|
|
|
class CLoadHelper;
|
|
class UnitRegenInfoManager;
|
|
class UnitGroupInfoManager;
|
|
|
|
class WUTLoader
|
|
{
|
|
public:
|
|
WUTLoader(void);
|
|
~WUTLoader(void);
|
|
|
|
static BOOL Load( FIELDCODE wutcode,
|
|
UnitRegenInfoManager * pRegenInfoMGR, UnitGroupInfoManager * pGroupInfoMGR );
|
|
//static BOOL Load( std::string wmoFileName );
|
|
};
|