move PlayerController to LevelScreen

This commit is contained in:
MihailRis
2024-12-11 23:42:59 +03:00
parent 9adaf6d527
commit 863146cf6b
7 changed files with 66 additions and 64 deletions
+2
View File
@@ -8,6 +8,7 @@ class Engine;
class LevelFrontend;
class Hud;
class LevelController;
class PlayerController;
class WorldRenderer;
class TextureAnimator;
class PostProcessing;
@@ -18,6 +19,7 @@ class Level;
class LevelScreen : public Screen {
std::unique_ptr<LevelFrontend> frontend;
std::unique_ptr<LevelController> controller;
std::unique_ptr<PlayerController> playerController;
std::unique_ptr<WorldRenderer> worldRenderer;
std::unique_ptr<TextureAnimator> animator;
std::unique_ptr<PostProcessing> postProcessing;