Minor formatting

This commit is contained in:
Сухинов Сережа 2024-08-15 02:26:35 +03:00
parent fc18c517fb
commit 2fb9c235e0

View file

@ -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
}