mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-15 07:11:20 +00:00
17 lines
220 B
C++
17 lines
220 B
C++
#pragma once
|
|
|
|
#include "CIOWin.hpp"
|
|
|
|
namespace urde::MP1
|
|
{
|
|
|
|
class CStateSetterFlow : public CIOWin
|
|
{
|
|
public:
|
|
CStateSetterFlow();
|
|
EMessageReturn OnMessage(const CArchitectureMessage&, CArchitectureQueue&);
|
|
};
|
|
|
|
}
|
|
|