mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-08 22:27:43 +00:00
More class stubs
This commit is contained in:
27
Runtime/MP1/CMainFlow.hpp
Normal file
27
Runtime/MP1/CMainFlow.hpp
Normal file
@@ -0,0 +1,27 @@
|
||||
#ifndef __RETRO_CMAINFLOW_HPP__
|
||||
#define __RETRO_CMAINFLOW_HPP__
|
||||
|
||||
#include "CMainFlowBase.hpp"
|
||||
|
||||
namespace Retro
|
||||
{
|
||||
class CArchitectureMessage;
|
||||
class CArchitectureQueue;
|
||||
|
||||
namespace MP1
|
||||
{
|
||||
|
||||
class CMainFlow : public CMainFlowBase
|
||||
{
|
||||
public:
|
||||
CMainFlow() : CMainFlowBase("CMainFlow") {}
|
||||
void SetGameState(EClientFlowStates state, CArchitectureQueue& queue);
|
||||
bool GetIsContinueDraw() const {return false;}
|
||||
void Draw() const {}
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
#endif // __RETRO_CMAINFLOW_HPP__
|
||||
Reference in New Issue
Block a user