28 lines
547 B
C++
28 lines
547 B
C++
|
|
/// 2011.10.12 - prodongi
|
|
|
|
#ifndef _SUIRaidSiegeRotationSiegeWnd_h_
|
|
#define _SUIRaidSiegeRotationSiegeWnd_h_
|
|
|
|
//#include "SUIWnd.h"
|
|
//#include "Util.h"
|
|
|
|
/*
|
|
시즈 공수 교대
|
|
*/
|
|
class SUIRaidSiegeRotationSiegeWnd : public SUIWnd
|
|
{
|
|
public:
|
|
SUIRaidSiegeRotationSiegeWnd(class SGameManager* pGameManager);
|
|
virtual ~SUIRaidSiegeRotationSiegeWnd();
|
|
virtual void Process(DWORD dwTime);
|
|
void setOwnerType(int newOwnerType);
|
|
bool isEnd() const { return m_end; }
|
|
|
|
protected:
|
|
sUpdateTime<float> m_updateTime;
|
|
bool m_end;
|
|
DWORD m_time;
|
|
};
|
|
|
|
#endif |