22 lines
250 B
C++
22 lines
250 B
C++
#ifndef __SLEEPSTATUS_H__
|
|
#define __SLEEPSTATUS_H__
|
|
|
|
#include "AbilityStatus.h"
|
|
|
|
// 슬립 상태
|
|
class SleepStatus : public AbilityStatus
|
|
{
|
|
public:
|
|
SleepStatus() {}
|
|
~SleepStatus() {}
|
|
|
|
virtual VOID Start();
|
|
|
|
virtual BOOL CanRemove();
|
|
};
|
|
|
|
|
|
#endif
|
|
|
|
|