From 2fb9c235e0b8139b92d38b5a9e89998a4e5c9345 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A1=D1=83=D1=85=D0=B8=D0=BD=D0=BE=D0=B2=20=D0=A1=D0=B5?= =?UTF-8?q?=D1=80=D0=B5=D0=B6=D0=B0?= Date: Thu, 15 Aug 2024 02:26:35 +0300 Subject: [PATCH] Minor formatting --- ZoFo/GameCore/GameManagers/AppManager.cs | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/ZoFo/GameCore/GameManagers/AppManager.cs b/ZoFo/GameCore/GameManagers/AppManager.cs index b28935e..d62fde7 100644 --- a/ZoFo/GameCore/GameManagers/AppManager.cs +++ b/ZoFo/GameCore/GameManagers/AppManager.cs @@ -39,11 +39,16 @@ namespace ZoFo.GameCore.GameManagers Instance = this; InputManager = new InputManager(); + + + + } protected override void Initialize() { - // TODO: Add your initialization logic here + + base.Initialize(); } @@ -52,7 +57,9 @@ namespace ZoFo.GameCore.GameManagers { _spriteBatch = new SpriteBatch(GraphicsDevice); - // TODO: use this.Content to load your game content here + + + } protected override void Update(GameTime gameTime) @@ -105,7 +112,7 @@ namespace ZoFo.GameCore.GameManagers } public void SetGUI(/*AbstractGUI gui*/) { - //currentGUI = gui + //currentGUI = gui; //TODO }