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

9 lines
176 B
C#

using Microsoft.Xna.Framework;
namespace MonoGame.Extended.Entities.Systems
{
public interface IDrawSystem : ISystem
{
void Draw(GameTime gameTime);
}
}