2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-25 20:45:36 +00:00
metaforce/Runtime/MP1/CSlideShow.cpp
2016-09-16 10:18:03 -10:00

21 lines
277 B
C++

#include "CSlideShow.hpp"
namespace urde
{
CSlideShow::CSlideShow()
: CIOWin("SlideShow")
{
}
CIOWin::EMessageReturn CSlideShow::OnMessage(const CArchitectureMessage& msg, CArchitectureQueue& queue)
{
return EMessageReturn::Exit;
}
void CSlideShow::Draw() const
{
}
}