mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-03-06 18:09:10 +00:00
* move test folder * Update vitest files * rename test/utils to test/testUtils * Remove stray utils/gameManager Got put back from a rebase
13 lines
247 B
TypeScript
13 lines
247 B
TypeScript
import type GameManager from "../gameManager";
|
|
|
|
/**
|
|
* Base class for defining all game helpers.
|
|
*/
|
|
export abstract class GameManagerHelper {
|
|
protected readonly game: GameManager;
|
|
|
|
constructor(game: GameManager) {
|
|
this.game = game;
|
|
}
|
|
}
|