mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 12:06:37 +00:00
16 lines
315 B
C#
16 lines
315 B
C#
using System;
|
|
using Microsoft.Xna.Framework;
|
|
|
|
namespace MonoGame.Extended.Entities.Systems
|
|
{
|
|
public abstract class UpdateSystem : IDisposable
|
|
{
|
|
protected UpdateSystem()
|
|
{
|
|
}
|
|
|
|
public virtual void Dispose() { }
|
|
|
|
public abstract void Update(GameTime gameTime);
|
|
}
|
|
} |