mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-13 13:51:21 +00:00
Continues the override modernization by applying it to the main RuntimeCommon target. Resolves around 1100+ cases where override can be used.
14 lines
247 B
C++
14 lines
247 B
C++
#pragma once
|
|
|
|
#include "CIOWin.hpp"
|
|
|
|
namespace urde::MP1 {
|
|
|
|
class CStateSetterFlow : public CIOWin {
|
|
public:
|
|
CStateSetterFlow();
|
|
EMessageReturn OnMessage(const CArchitectureMessage&, CArchitectureQueue&) override;
|
|
};
|
|
|
|
} // namespace urde::MP1
|