mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-26 00:45:20 +00:00
14 lines
299 B
C#
14 lines
299 B
C#
using Microsoft.Xna.Framework;
|
|
|
|
namespace MonoGame.Extended.Entities.Systems
|
|
{
|
|
public abstract class DrawSystem : BaseSystem
|
|
{
|
|
protected DrawSystem(Aspect.Builder aspect)
|
|
: base(aspect)
|
|
{
|
|
}
|
|
|
|
public abstract void Draw(GameTime gameTime);
|
|
}
|
|
} |