mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 12:06:37 +00:00
10 lines
219 B
C#
10 lines
219 B
C#
using Microsoft.Xna.Framework;
|
|
|
|
namespace Demo.Platformer.Entities.Systems
|
|
{
|
|
public abstract class UpdatableComponentSystem : ComponentSystem
|
|
{
|
|
public abstract void Update(GameTime gameTime);
|
|
}
|
|
}
|