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

Work on CPauseScreen

This commit is contained in:
Jack Andersen
2017-05-01 18:00:38 -10:00
parent 159b83b37a
commit 394cbf36e0
13 changed files with 576 additions and 52 deletions

View File

@@ -0,0 +1,25 @@
#ifndef __URDE_COPTIONSSCREEN_HPP__
#define __URDE_COPTIONSSCREEN_HPP__
#include "CInGameGuiManager.hpp"
#include "CPauseScreenBase.hpp"
namespace urde
{
namespace MP1
{
class COptionsScreen : public CPauseScreenBase
{
public:
COptionsScreen(const CStateManager& mgr, CGuiFrame& frame, const CStringTable& pauseStrg);
bool VReady() const;
void VActivate() const;
u32 GetRightTableCount() const;
};
}
}
#endif // __URDE_COPTIONSSCREEN_HPP__