mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-13 14:31:20 +00:00
Continues the override modernization by applying it to the main RuntimeCommon target. Resolves around 1100+ cases where override can be used.
16 lines
285 B
C++
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
|