mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-22 02:09:31 +00:00
16 lines
392 B
C#
16 lines
392 B
C#
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);
|
|
}
|
|
} |