Files
MonoGame.Extended/Source/Demos/Demo.Platformer/Entities/Systems/DrawableComponentSystem.cs
T
2016-08-18 23:21:37 +10:00

9 lines
215 B
C#

using Microsoft.Xna.Framework;
namespace Demo.Platformer.Entities.Systems
{
public abstract class DrawableComponentSystem : ComponentSystem
{
public abstract void Draw(GameTime gameTime);
}
}