2016-04-13 06:07:23 +00:00
|
|
|
#ifndef __URDE_CMAINFLOW_HPP__
|
|
|
|
#define __URDE_CMAINFLOW_HPP__
|
2015-08-18 05:54:43 +00:00
|
|
|
|
2015-08-27 00:23:46 +00:00
|
|
|
#include "CMainFlowBase.hpp"
|
2015-08-20 02:52:07 +00:00
|
|
|
|
2016-03-04 23:04:53 +00:00
|
|
|
namespace urde
|
2015-08-18 05:54:43 +00:00
|
|
|
{
|
2015-08-22 01:58:41 +00:00
|
|
|
class CArchitectureMessage;
|
|
|
|
class CArchitectureQueue;
|
2015-08-18 05:54:43 +00:00
|
|
|
|
2015-08-27 00:23:46 +00:00
|
|
|
namespace MP1
|
2015-08-20 02:52:07 +00:00
|
|
|
{
|
|
|
|
|
2015-08-27 00:23:46 +00:00
|
|
|
class CMainFlow : public CMainFlowBase
|
2015-08-18 05:54:43 +00:00
|
|
|
{
|
2015-08-20 02:52:07 +00:00
|
|
|
public:
|
2015-08-27 00:23:46 +00:00
|
|
|
CMainFlow() : CMainFlowBase("CMainFlow") {}
|
2015-08-27 00:27:32 +00:00
|
|
|
void AdvanceGameState(CArchitectureQueue& queue);
|
2015-08-22 01:58:41 +00:00
|
|
|
void SetGameState(EClientFlowStates state, CArchitectureQueue& queue);
|
2015-08-20 02:52:07 +00:00
|
|
|
bool GetIsContinueDraw() const {return false;}
|
|
|
|
void Draw() const {}
|
2015-08-18 05:54:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-08-27 00:23:46 +00:00
|
|
|
}
|
|
|
|
|
2016-04-13 06:07:23 +00:00
|
|
|
#endif // __URDE_CMAINFLOW_HPP__
|