This commit is contained in:
gravity 2023-08-17 20:58:11 +03:00
parent 566e42d6d2
commit 7f981ccd5a

View file

@ -5,36 +5,9 @@ using MonogameLibrary.UI.Elements;
namespace DangerousD.GameCore.GUI namespace DangerousD.GameCore.GUI
{ {
public class HUD : IDrawableObject public class HUD : AbstractGui
{ {
protected override void CreateUI()
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)
{ {
throw new NotImplementedException(); throw new NotImplementedException();
} }