2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-13 14:31:20 +00:00
metaforce/Runtime/MP1/CCredits.cpp
2019-07-20 22:42:52 -10:00

17 lines
390 B
C++

#include "CCredits.hpp"
#include "Graphics/CGraphics.hpp"
namespace urde::MP1 {
CCredits::CCredits() : CIOWin("Credits") {}
CIOWin::EMessageReturn CCredits::OnMessage(const CArchitectureMessage& msg, CArchitectureQueue& queue) {
return EMessageReturn::Normal;
}
void CCredits::Draw() const {
SCOPED_GRAPHICS_DEBUG_GROUP("CCredits::Draw", zeus::skGreen);
}
} // namespace urde::MP1