2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-15 07:51:21 +00:00
metaforce/Runtime/MP1/CCredits.hpp
2018-10-06 17:42:33 -10:00

19 lines
280 B
C++

#pragma once
#include "CIOWin.hpp"
namespace urde::MP1
{
class CCredits : public CIOWin
{
public:
CCredits();
EMessageReturn OnMessage(const CArchitectureMessage&, CArchitectureQueue&);
bool GetIsContinueDraw() const { return false; }
void Draw() const;
};
}