mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-22 10:19:30 +00:00
Move source projects into source directory
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
using Microsoft.Xna.Framework;
|
||||
|
||||
namespace MonoGame.Extended.Entities.Systems
|
||||
{
|
||||
public abstract class EntityUpdateSystem : EntitySystem, IUpdateSystem
|
||||
{
|
||||
protected EntityUpdateSystem(AspectBuilder aspectBuilder)
|
||||
: base(aspectBuilder)
|
||||
{
|
||||
}
|
||||
|
||||
public abstract void Update(GameTime gameTime);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user