DangerousD/DangerousD/GameCore/GameObjects/IDrawableObject.cs
Ivan Filipenkov cbdabf794f DebugHUD
2023-08-17 21:53:17 +03:00

14 lines
No EOL
339 B
C#

using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Content;
using Microsoft.Xna.Framework.Graphics;
namespace DangerousD.GameCore.GUI
{
public interface IDrawableObject
{
void Initialize();
void LoadContent();
void Update(GameTime gameTime);
void Draw(SpriteBatch spriteBatch);
}
}