mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-14 01:11:20 +00:00
23 lines
333 B
C++
23 lines
333 B
C++
#ifndef __URDE_CINGAMEGUIMANAGERCOMMON_HPP__
|
|
#define __URDE_CINGAMEGUIMANAGERCOMMON_HPP__
|
|
|
|
#include "RetroTypes.hpp"
|
|
|
|
namespace urde::MP1
|
|
{
|
|
|
|
enum class EInGameGuiState
|
|
{
|
|
Zero,
|
|
InGame,
|
|
MapScreen,
|
|
PauseGame,
|
|
PauseLogBook,
|
|
PauseSaveGame,
|
|
PauseHUDMessage
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __URDE_CINGAMEGUIMANAGERCOMMON_HPP__
|