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.
22 lines
503 B
22 lines
503 B
import 'User.dart';
|
|
import 'Game.dart';
|
|
import 'IUserManager.dart';
|
|
import 'IGameManager.dart';
|
|
import 'Game.dart';
|
|
|
|
abstract class IManager {
|
|
late User _userCurrent;
|
|
late Game _gameCurrent;
|
|
IUserManager _userMgr;
|
|
IGameManager _gameMgr;
|
|
|
|
// Constructor
|
|
IManager(this._userCurrent, this._gameCurrent);
|
|
|
|
// Getters and setters
|
|
User get userCurrent => _userCurrent;
|
|
Game get gameCurrent => _gameCurrent;
|
|
IUserManager get userMgr => _userMgr;
|
|
IGameManager get gameMgr => _gameMgr;
|
|
}
|