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.
26 lines
453 B
26 lines
453 B
library StubLib;
|
|
import '../IGameManager.dart';
|
|
|
|
class GameManager extends IGameManager {
|
|
List<GameDetail> games = [];
|
|
|
|
// 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) {
|
|
|
|
}
|
|
} |