mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-03-05 17:38:35 +00:00
* Fix daily run generated movesets * add unit-tests for `fix-daily-run` (#3) * add `daily` and `classic` helper. split `runToSummon` there is now a `classicMode.runToSummon` which represents the old one used. There is now a `dailyMode.runToSummon` too * add daily_mode.test.ts covers the occured issue --------- Co-authored-by: flx-sta <50131232+flx-sta@users.noreply.github.com>
13 lines
242 B
TypeScript
13 lines
242 B
TypeScript
import GameManager from "../gameManager";
|
|
|
|
/**
|
|
* Base class for defining all game helpers.
|
|
*/
|
|
export abstract class GameManagerHelper {
|
|
protected readonly game: GameManager;
|
|
|
|
constructor(game: GameManager) {
|
|
this.game = game;
|
|
}
|
|
}
|