Performance optimization

This commit is contained in:
2025-04-18 17:45:31 -04:00
parent c1ccb444f7
commit 8a222fdd7c
11 changed files with 38 additions and 175 deletions

View File

@@ -5,7 +5,7 @@ class ControllableBox final : public Engine::Scene {
public:
void Init() final;
public:
explicit ControllableBox(const std::string& name) : Scene(name) {}
explicit ControllableBox(const std::string& name) : Scene(name, 64) {}
};