blob: 10a05f0773cbe74c41c7f2283c747cc2f36ce4e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
using System.Collections.Generic;
namespace Impostor.Api.Games.Managers
{
public interface IGameManager
{
IEnumerable<IGame> Games { get; }
IGame? Find(GameCode code);
}
}
|