2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-13 14:31:20 +00:00
metaforce/Runtime/MP1/CPreFrontEnd.hpp
Lioncash 9312eef905 RuntimeCommon: Use override where applicable
Continues the override modernization by applying it to the main
RuntimeCommon target. Resolves around 1100+ cases where override can be
used.
2019-08-09 17:39:42 -04:00

16 lines
285 B
C++

#pragma once
#include "CIOWin.hpp"
namespace urde::MP1 {
class CPreFrontEnd : public CIOWin {
bool x14_resourceTweaksRegistered = false;
public:
CPreFrontEnd();
EMessageReturn OnMessage(const CArchitectureMessage&, CArchitectureQueue&) override;
};
} // namespace urde::MP1