7 lines
87 B
C#
7 lines
87 B
C#
namespace TanksServer.TickSteps;
|
|
|
|
public interface ITickStep
|
|
{
|
|
Task TickAsync();
|
|
}
|