From 7f981ccd5ac4d572d9a08cc570bebb114f06bc75 Mon Sep 17 00:00:00 2001 From: gravity Date: Thu, 17 Aug 2023 20:58:11 +0300 Subject: [PATCH] ui --- DangerousD/GameCore/GUI/HUD.cs | 33 +++------------------------------ 1 file changed, 3 insertions(+), 30 deletions(-) diff --git a/DangerousD/GameCore/GUI/HUD.cs b/DangerousD/GameCore/GUI/HUD.cs index 092829a..f649a43 100644 --- a/DangerousD/GameCore/GUI/HUD.cs +++ b/DangerousD/GameCore/GUI/HUD.cs @@ -5,36 +5,9 @@ using MonogameLibrary.UI.Elements; namespace DangerousD.GameCore.GUI { - public class HUD : IDrawableObject - { - - - public HUD() - { - } - - public void Draw(SpriteBatch spriteBatch) - { - ; - } - - public void Initialize(GraphicsDevice graphicsDevice) - { - throw new NotImplementedException(); - } - - public void Initialize() - { - throw new NotImplementedException(); - } - - public void LoadContent() - { - var content = AppManager.Instance.Content; - - } - - public void Update(GameTime gameTime) + public class HUD : AbstractGui + { + protected override void CreateUI() { throw new NotImplementedException(); }