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.
BOB_PARTY/bob_party/src/services/gameService/managerGame.ts

30 lines
520 B

import { Game } from "../../core/game";
import ILoaderGame from "./ILoaderGame";
export default class ManagerGame{
private tabGame: Game[] | null=null;
private loaderGame: ILoaderGame;
constructor(loader:ILoaderGame){
this.loaderGame=loader;
}
getTabGame(){
return this.tabGame;
}
setTabGame(g:Game[] | null){
this.tabGame=g;
}
getLoaderGame(){
return this.loaderGame;
}
setLoaderGame(l:ILoaderGame){
this.loaderGame=l;
}
}