mirror of https://github.com/AxioDL/metaforce.git
21 lines
278 B
C++
21 lines
278 B
C++
|
#include "CStateSetterFlow.hpp"
|
||
|
|
||
|
namespace urde
|
||
|
{
|
||
|
namespace MP1
|
||
|
{
|
||
|
|
||
|
CStateSetterFlow::CStateSetterFlow()
|
||
|
: CIOWin("")
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
CIOWin::EMessageReturn CStateSetterFlow::OnMessage(const CArchitectureMessage& msg, CArchitectureQueue& queue)
|
||
|
{
|
||
|
return EMessageReturn::Normal;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|