mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-26 00:45:20 +00:00
9 lines
176 B
C#
9 lines
176 B
C#
using Microsoft.Xna.Framework;
|
|
|
|
namespace MonoGame.Extended.Entities.Systems
|
|
{
|
|
public interface IDrawSystem : ISystem
|
|
{
|
|
void Draw(GameTime gameTime);
|
|
}
|
|
} |