Files
MonoGame.Extended/Source/MonoGame.Extended.Entities/Systems/DrawSystem.cs
T

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);
}
}