blob: b9e63ebbda4f04cfc9a1bfe7f4d641d1acf58456 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using Microsoft.Xna.Framework;
namespace MonoGame.Extended.Entities.Systems
{
public interface IDrawSystem : ISystem
{
void Draw(GameTime gameTime);
}
public abstract class DrawSystem : IDrawSystem
{
public virtual void Dispose() { }
public virtual void Initialize(World world) { }
public abstract void Draw(GameTime gameTime);
}
}
|