mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 20:12:23 +00:00
making progress on the new ecs framework
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using Microsoft.Xna.Framework;
|
||||
|
||||
namespace MonoGame.Extended.Entities.Systems
|
||||
{
|
||||
public abstract class UpdateSystem : BaseSystem
|
||||
{
|
||||
protected UpdateSystem()
|
||||
{
|
||||
}
|
||||
|
||||
public abstract void Update(GameTime gameTime);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user