mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 20:12:23 +00:00
working on an entity component system
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
using Microsoft.Xna.Framework;
|
||||
|
||||
namespace Demo.Platformer.Entities.Systems
|
||||
{
|
||||
public abstract class UpdatableComponentSystem : ComponentSystem
|
||||
{
|
||||
public abstract void Update(GameTime gameTime);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user