42 lines
No EOL
784 B
C#
42 lines
No EOL
784 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Linq;
|
|
using System.Xml;
|
|
using Microsoft.Xna.Framework;
|
|
using Microsoft.Xna.Framework.Content;
|
|
using Microsoft.Xna.Framework.Graphics;
|
|
using Microsoft.Xna.Framework.Input;
|
|
using MonogameLibrary.UI.Base;
|
|
using MonogameLibrary.UI.Elements;
|
|
|
|
namespace ZoFo.GameCore.GUI;
|
|
|
|
public class HUD : AbstractGUI
|
|
{
|
|
|
|
private GraphicsDevice graphicsDevice;
|
|
public virtual void Initialize()
|
|
{
|
|
|
|
}
|
|
|
|
public virtual void LoadContent()
|
|
{
|
|
|
|
}
|
|
|
|
public virtual void Update(GameTime gameTime)
|
|
{
|
|
|
|
}
|
|
|
|
public virtual void Draw(SpriteBatch spriteBatch)
|
|
{
|
|
//Manager.Draw(spriteBatch);
|
|
}
|
|
|
|
protected override void CreateUI()
|
|
{
|
|
}
|
|
} |