21 lines
441 B
C#
21 lines
441 B
C#
namespace API.Services.GameManager
|
|
{
|
|
public class GameManager : IGameManager
|
|
{
|
|
public int CreateGame(string playerName)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public bool JoinGame(string playerName, int gameCode)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
private int GenerateNonExistingGameCode()
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
}
|