mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-15 07:51:21 +00:00
19 lines
280 B
C++
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;
|
|
};
|
|
|
|
}
|
|
|