2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-10 17:47:42 +00:00

Finish initial CCredits implementation, merge EFlowStates with EClientFlowStates

This commit is contained in:
2021-06-03 16:47:04 -07:00
parent 665dc5fd51
commit 99d363d5df
12 changed files with 50 additions and 49 deletions

View File

@@ -4,7 +4,20 @@
namespace metaforce {
enum class EClientFlowStates { Unspecified = -1, PreFrontEnd = 7, FrontEnd = 8, Game = 14, GameExit = 15 };
enum class EClientFlowStates {
Unspecified = -1,
None = 0,
WinBad = 1,
WinGood = 2,
WinBest = 3,
LoseGame = 4,
Default = 5,
StateSetter = 6,
PreFrontEnd = 7,
FrontEnd = 8,
Game = 14,
GameExit = 15
};
class CMainFlowBase : public CIOWin {
protected: