server-master/srcs/WingsAPI.Game/Core/ECS/ITickManager.cs
2026-02-10 18:21:30 +01:00

15 lines
No EOL
261 B
C#

// WingsEmu
//
// Developed by NosWings Team
namespace WingsEmu.Game._ECS;
public interface ITickManager
{
void AddProcessable(ITickProcessable processable);
void RemoveProcessable(ITickProcessable processable);
void Start();
void Stop();
}