pokerogue/src/test/utils/helpers/gameManagerHelper.ts
NightKev 0d3fcd82bb
[Bug] Fix daily run generated movesets (#3519)
* 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>
2024-08-13 21:48:56 +01:00

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;
}
}