metaforce/Runtime/MP1/CMainFlow.hpp

29 lines
530 B
C++
Raw Normal View History

2016-02-13 09:02:47 +00:00
#ifndef __PSHAG_CMAINFLOW_HPP__
#define __PSHAG_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-02-13 09:02:47 +00:00
#endif // __PSHAG_CMAINFLOW_HPP__