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

13 lines
251 B
C#

using Microsoft.Xna.Framework;
namespace MonoGame.Extended.Entities.Systems
{
public abstract class DrawSystem : BaseSystem
{
protected DrawSystem()
{
}
public abstract void Draw(GameTime gameTime);
}
}