2017-02-12 03:17:18 +00:00
|
|
|
#ifndef __URDE_CMESSAGESCREEN_HPP__
|
|
|
|
#define __URDE_CMESSAGESCREEN_HPP__
|
|
|
|
|
2017-02-18 02:19:50 +00:00
|
|
|
#include "RetroTypes.hpp"
|
|
|
|
|
2017-02-12 03:17:18 +00:00
|
|
|
namespace urde
|
|
|
|
{
|
2017-04-15 05:32:25 +00:00
|
|
|
class CFinalInput;
|
|
|
|
|
2017-02-12 03:17:18 +00:00
|
|
|
namespace MP1
|
|
|
|
{
|
|
|
|
|
|
|
|
class CMessageScreen
|
|
|
|
{
|
|
|
|
public:
|
2017-02-18 02:19:50 +00:00
|
|
|
CMessageScreen(ResId msg, float time);
|
2017-04-15 05:32:25 +00:00
|
|
|
void ProcessControllerInput(const CFinalInput& input);
|
2017-02-12 03:17:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // __URDE_CMESSAGESCREEN_HPP__
|