mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-21 17:59:31 +00:00
14 lines
325 B
C#
14 lines
325 B
C#
using Microsoft.Xna.Framework;
|
|
|
|
namespace MonoGame.Extended.Entities.Systems
|
|
{
|
|
public abstract class EntityDrawSystem : EntitySystem, IDrawSystem
|
|
{
|
|
protected EntityDrawSystem(AspectBuilder aspect)
|
|
: base(aspect)
|
|
{
|
|
}
|
|
|
|
public abstract void Draw(GameTime gameTime);
|
|
}
|
|
} |