8 lines
222 B
C#
8 lines
222 B
C#
using Civilization.Server.Game;
|
|
|
|
namespace Civilization.Server.Networking.Interfaces;
|
|
|
|
public interface ITransport
|
|
{
|
|
Task StartAsync(GameSessionCoordinator coordinator, CancellationToken cancellationToken = default);
|
|
} |