mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-10 06:27:43 +00:00
CIOWin: Make Draw() non-const
Allows removing several const_cast usages within the codebase.
This commit is contained in:
@@ -43,7 +43,7 @@ public:
|
||||
~CMFGame() override;
|
||||
CIOWin::EMessageReturn OnMessage(const CArchitectureMessage& msg, CArchitectureQueue& queue) override;
|
||||
void Touch();
|
||||
void Draw() const override;
|
||||
void Draw() override;
|
||||
void PlayerDied();
|
||||
void UnpauseGame();
|
||||
void EnterMessageScreen(float time);
|
||||
@@ -72,7 +72,7 @@ public:
|
||||
CMFGameLoader();
|
||||
~CMFGameLoader() override;
|
||||
EMessageReturn OnMessage(const CArchitectureMessage& msg, CArchitectureQueue& queue) override;
|
||||
void Draw() const override;
|
||||
void Draw() override;
|
||||
};
|
||||
|
||||
} // namespace MP1
|
||||
|
||||
Reference in New Issue
Block a user