2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-13 21:11:21 +00:00
metaforce/Runtime/MP1/CMessageScreen.cpp
2017-05-21 12:01:04 -04:00

30 lines
321 B
C++

#include "CMessageScreen.hpp"
namespace urde
{
namespace MP1
{
CMessageScreen::CMessageScreen(ResId msg, float time)
{
}
void CMessageScreen::ProcessControllerInput(const CFinalInput& input)
{
}
bool CMessageScreen::Update(float dt, float blurAmt)
{
return false;
}
void CMessageScreen::Draw() const
{
}
}
}