15 lines
No EOL
261 B
C#
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();
|
|
} |