metaforce/Runtime/MP1/CStateSetterFlow.cpp

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;
}
}
}