2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-06-05 09:13:27 +00:00
metaforce/Runtime/MP1/COptionsScreen.cpp
2017-05-01 18:00:38 -10:00

32 lines
423 B
C++

#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;
}
}
}