Files
4Gewinnt/API/Services/GameManager/GameManager.cs
T

19 lines
467 B
C#

using API.Models.Game;
using API.Repository.GameRepo;
namespace API.Services.GameManager;
public class GameManager(IGameRepository gameRepository) : IGameManager
{
private readonly IGameRepository _gameRepo = gameRepository;
public int CreateGame(Coordinates gFs, Player player)
{
throw new NotImplementedException();
}
public bool JoinGame(Player playerName, int gameCode)
{
throw new NotImplementedException();
}
}