9 lines
201 B
C#
9 lines
201 B
C#
namespace API.Services.GameManager
|
|
{
|
|
public interface IGameManager
|
|
{
|
|
public int CreateGame(string playerName);
|
|
public bool JoinGame(string playerName, int gameCode);
|
|
}
|
|
}
|