mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-03-06 01:47:30 +00:00
13 lines
241 B
TypeScript
13 lines
241 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;
|
||
|
}
|
||
|
}
|