mirror of https://github.com/AxioDL/metaforce.git
21 lines
272 B
C++
21 lines
272 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::Normal;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|