Refactor: remove "s" prefix from "sRender" method ( -> "render") Closes #44

This commit is contained in:
John McCardle 2024-04-20 14:16:14 -04:00
commit c2de9b08d6
7 changed files with 14 additions and 9 deletions

View file

@ -18,5 +18,5 @@ public:
UITestScene(GameEngine*);
void update() override final;
void doAction(std::string, std::string) override final;
void sRender() override final;
void render() override final;
};