metaforce/Runtime/MP1/CCredits.hpp

21 lines
371 B
C++
Raw Normal View History

#ifndef __URDE_MP1_CCREDITS_HPP__
#define __URDE_MP1_CCREDITS_HPP__
#include "CIOWin.hpp"
2017-12-29 08:08:12 +00:00
namespace urde::MP1
{
class CCredits : public CIOWin
{
public:
CCredits();
EMessageReturn OnMessage(const CArchitectureMessage&, CArchitectureQueue&);
bool GetIsContinueDraw() const { return false; }
void Draw() const;
};
}
#endif // __URDE_MP1_CCREDITS_HPP__