servicepoint-tanks/TanksServer/TickSteps/ITickStep.cs
2024-04-07 19:52:16 +02:00

7 lines
87 B
C#

namespace TanksServer.TickSteps;
public interface ITickStep
{
Task TickAsync();
}