DangerousD/DangerousD/GameCore/GameObjects/IDrawableObject.cs
2023-08-15 11:23:51 +03:00

14 lines
362 B
C#

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