mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-08-10 17:39:31 +02:00
* Standardize filenames to kebab-case Co-authored-by: pymilkmaiden <cassiopeiamahler56@gmail.com> * Move script outside of public folder * Move update_exp_sprites to scripts * Add ls-lint to lint file and directory names * Update lefthook.yml to skip merge / rebase on all pre-commit commands --------- Co-authored-by: pymilkmaiden <cassiopeiamahler56@gmail.com>
13 lines
266 B
TypeScript
13 lines
266 B
TypeScript
import type { GameManager } from "#test/test-utils/game-manager";
|
|
|
|
/**
|
|
* Base class for defining all game helpers.
|
|
*/
|
|
export abstract class GameManagerHelper {
|
|
protected readonly game: GameManager;
|
|
|
|
constructor(game: GameManager) {
|
|
this.game = game;
|
|
}
|
|
}
|