mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 12:06:37 +00:00
19 lines
430 B
C#
19 lines
430 B
C#
using Microsoft.Xna.Framework;
|
|
|
|
namespace MonoGame.Extended.Entities.Systems
|
|
{
|
|
public abstract class EntityDrawSystem : EntityUpdateSystem
|
|
{
|
|
protected EntityDrawSystem(Aspect.Builder aspect)
|
|
: base(aspect)
|
|
{
|
|
}
|
|
|
|
public sealed override void Update(GameTime gameTime)
|
|
{
|
|
Draw(gameTime);
|
|
}
|
|
|
|
public abstract void Draw(GameTime gameTime);
|
|
}
|
|
} |