mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 00:27:42 +00:00
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.
This commit is contained in:
@@ -39,22 +39,22 @@ class CLogBookScreen : public CPauseScreenBase {
|
||||
|
||||
public:
|
||||
CLogBookScreen(const CStateManager& mgr, CGuiFrame& frame, const CStringTable& pauseStrg);
|
||||
~CLogBookScreen();
|
||||
~CLogBookScreen() override;
|
||||
|
||||
bool InputDisabled() const;
|
||||
void TransitioningAway();
|
||||
void Update(float dt, CRandom16& rand, CArchitectureQueue& archQueue);
|
||||
void Touch();
|
||||
void ProcessControllerInput(const CFinalInput& input);
|
||||
void Draw(float transInterp, float totalAlpha, float yOff);
|
||||
bool VReady() const;
|
||||
void VActivate();
|
||||
void RightTableSelectionChanged(int oldSel, int newSel);
|
||||
void ChangedMode(EMode oldMode);
|
||||
void UpdateRightTable();
|
||||
bool ShouldLeftTableAdvance() const;
|
||||
bool ShouldRightTableAdvance() const;
|
||||
u32 GetRightTableCount() const;
|
||||
bool InputDisabled() const override;
|
||||
void TransitioningAway() override;
|
||||
void Update(float dt, CRandom16& rand, CArchitectureQueue& archQueue) override;
|
||||
void Touch() override;
|
||||
void ProcessControllerInput(const CFinalInput& input) override;
|
||||
void Draw(float transInterp, float totalAlpha, float yOff) override;
|
||||
bool VReady() const override;
|
||||
void VActivate() override;
|
||||
void RightTableSelectionChanged(int oldSel, int newSel) override;
|
||||
void ChangedMode(EMode oldMode) override;
|
||||
void UpdateRightTable() override;
|
||||
bool ShouldLeftTableAdvance() const override;
|
||||
bool ShouldRightTableAdvance() const override;
|
||||
u32 GetRightTableCount() const override;
|
||||
};
|
||||
|
||||
} // namespace urde::MP1
|
||||
|
||||
Reference in New Issue
Block a user