mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 12:06:37 +00:00
rejigged the base systems classes and interfaces
This commit is contained in:
@@ -2,18 +2,13 @@
|
||||
|
||||
namespace MonoGame.Extended.Entities.Systems
|
||||
{
|
||||
public abstract class EntityDrawSystem : EntityUpdateSystem
|
||||
public abstract class EntityDrawSystem : EntitySystem, IDrawSystem
|
||||
{
|
||||
protected EntityDrawSystem(AspectBuilder aspect)
|
||||
: base(aspect)
|
||||
{
|
||||
}
|
||||
|
||||
public sealed override void Update(GameTime gameTime)
|
||||
{
|
||||
Draw(gameTime);
|
||||
}
|
||||
|
||||
public abstract void Draw(GameTime gameTime);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user