2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 22:27:43 +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,31 @@
#include "COptionsScreen.hpp"
namespace urde
{
namespace MP1
{
COptionsScreen::COptionsScreen(const CStateManager& mgr, CGuiFrame& frame,
const CStringTable& pauseStrg)
: CPauseScreenBase(mgr, frame, pauseStrg)
{
}
bool COptionsScreen::VReady() const
{
return true;
}
void COptionsScreen::VActivate() const
{
}
u32 COptionsScreen::GetRightTableCount() const
{
return 0;
}
}
}