summaryrefslogtreecommitdiff
path: root/Plugins/MonoGame.Extended/source/MonoGame.Extended.Entities/Systems/ISystem.cs
blob: d4511fcba7a1c7bc3e9c4e9c1a3ddb748e58f306 (plain)
1
2
3
4
5
6
7
8
9
using System;

namespace MonoGame.Extended.Entities.Systems
{
    public interface ISystem : IDisposable
    {
        void Initialize(World world);
    }
}