mirror of https://github.com/AxioDL/metaforce.git
24 lines
334 B
C++
24 lines
334 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);
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif // __URDE_CMESSAGESCREEN_HPP__
|