metaforce/Runtime/MP1/CCredits.cpp

18 lines
411 B
C++
Raw Normal View History

#include "Runtime/MP1/CCredits.hpp"
#include "Runtime/Graphics/CGraphics.hpp"
2018-12-08 05:30:43 +00:00
namespace urde::MP1 {
2018-12-08 05:30:43 +00:00
CCredits::CCredits() : CIOWin("Credits") {}
2018-12-08 05:30:43 +00:00
CIOWin::EMessageReturn CCredits::OnMessage(const CArchitectureMessage& msg, CArchitectureQueue& queue) {
return EMessageReturn::Normal;
}
2019-07-21 08:42:52 +00:00
void CCredits::Draw() const {
SCOPED_GRAPHICS_DEBUG_GROUP("CCredits::Draw", zeus::skGreen);
}
2018-12-08 05:30:43 +00:00
} // namespace urde::MP1