2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-13 21:11:21 +00:00
metaforce/Runtime/MP1/CMessageScreen.hpp
2017-05-18 09:27:21 -10:00

25 lines
376 B
C++

#ifndef __URDE_CMESSAGESCREEN_HPP__
#define __URDE_CMESSAGESCREEN_HPP__
#include "RetroTypes.hpp"
namespace urde
{
class CFinalInput;
namespace MP1
{
class CMessageScreen
{
public:
CMessageScreen(ResId msg, float time);
void ProcessControllerInput(const CFinalInput& input);
bool Update(float dt, float blurAmt);
};
}
}
#endif // __URDE_CMESSAGESCREEN_HPP__