ISystem.cs 154 B

123456789
  1. using System;
  2. namespace MonoGame.Extended.ECS.Systems
  3. {
  4. public interface ISystem : IDisposable
  5. {
  6. void Initialize(World world);
  7. }
  8. }