mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-25 16:35:33 +00:00
9 lines
180 B
C#
9 lines
180 B
C#
using Microsoft.Xna.Framework;
|
|
|
|
namespace MonoGame.Extended.Entities.Systems
|
|
{
|
|
public interface IUpdateSystem : ISystem
|
|
{
|
|
void Update(GameTime gameTime);
|
|
}
|
|
} |