GUI: Rename some methods, start to implement new one

This commit is contained in:
Er2
2023-12-09 19:44:25 +03:00
parent 5e311cbbb3
commit b6bf9d616a
76 changed files with 883 additions and 263 deletions

View File

@@ -19,8 +19,8 @@ class OptionsScreen : public Screen
public:
OptionsScreen();
~OptionsScreen();
void init() override;
void render(int, int, float) override;
void onInit() override;
void onRender(int, int, float) override;
void removed() override;
void buttonClicked(Button* pButton) override;
@@ -37,7 +37,7 @@ class OptionsScreen : public Screen
public:
OptionsScreen();
void init() override;
void render(int, int, float) override;
void onRender(int, int, float) override;
void removed() override;
#ifndef ORIGINAL_CODE