servicepoint-tanks/tanks-backend/TanksServer/GameLogic/ITickStep.cs

7 lines
101 B
C#
Raw Normal View History

2024-04-10 19:25:45 +02:00
namespace TanksServer.GameLogic;
2024-04-07 19:52:16 +02:00
public interface ITickStep
{
2024-04-16 19:40:08 +02:00
Task TickAsync(TimeSpan delta);
2024-04-07 19:52:16 +02:00
}