mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-14 18:31:20 +00:00
26 lines
287 B
C++
26 lines
287 B
C++
#include "CCredits.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
namespace MP1
|
|
{
|
|
|
|
CCredits::CCredits()
|
|
: CIOWin("Credits")
|
|
{
|
|
|
|
}
|
|
|
|
CIOWin::EMessageReturn CCredits::OnMessage(const CArchitectureMessage& msg, CArchitectureQueue& queue)
|
|
{
|
|
return EMessageReturn::Normal;
|
|
}
|
|
|
|
void CCredits::Draw() const
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
}
|