You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
356 B
13 lines
356 B
import 'package:uuid/uuid.dart';
|
|
import 'package:uuid/uuid_util.dart';
|
|
import 'GameDetail.dart';
|
|
import 'Player.dart';
|
|
|
|
abstract class IGameManager {
|
|
// Methods
|
|
GameDetail getGameById(Uuid id);
|
|
List<GameDetail> getGamesByPlayerId(Uuid id);
|
|
List<GameDetail> getGamesByPlayer(Player user);
|
|
List<GameDetail> getGamesByPlayers(List<Player> users);
|
|
}
|