6 lines
111 B
Dart
6 lines
111 B
Dart
part of '../game.dart';
|
|
|
|
abstract class IGameRepository {
|
|
Future<Either<GameFailure, Game>> ferrisWheel();
|
|
}
|