mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-07-25 20:45:36 +00:00
21 lines
277 B
C++
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
|
|
{
|
|
}
|
|
|
|
}
|