using API.Models.Game; namespace API.Services.GameManager; public interface IGameManager { public (string, int) CreateGame(Coordinates gFs, Player player); public Task JoinGame(Player player, int gameCode) public Task Place(string gameCode, int coordinates, string playerConnectionId) }