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.
16 lines
461 B
16 lines
461 B
import 'package:uuid/uuid.dart';
|
|
import 'package:uuid/uuid_util.dart';
|
|
import 'GameDetail.dart';
|
|
import 'Player.dart';
|
|
import 'User.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);
|
|
List<User> getPlayersByIdGame(Uuid id);
|
|
Map<int, Uuid> getRankByIdGame(Uuid id);
|
|
}
|