mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-14 03:11:28 +00:00
21 lines
270 B
C++
21 lines
270 B
C++
#include "CPreFrontEnd.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
namespace MP1
|
|
{
|
|
|
|
CPreFrontEnd::CPreFrontEnd()
|
|
: CIOWin("Pre front-end window")
|
|
{
|
|
|
|
}
|
|
|
|
CIOWin::EMessageReturn CPreFrontEnd::OnMessage(const CArchitectureMessage&, CArchitectureQueue&)
|
|
{
|
|
return EMessageReturn::Exit;
|
|
}
|
|
|
|
}
|
|
}
|