mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-03-09 03:18:24 +00:00
16 lines
345 B
TypeScript
16 lines
345 B
TypeScript
|
import { GameManagerHelper } from "./gameManagerHelper";
|
||
|
|
||
|
/**
|
||
|
* Helper to handle settings for tests
|
||
|
*/
|
||
|
export class SettingsHelper extends GameManagerHelper {
|
||
|
|
||
|
/**
|
||
|
* Disable/Enable type hints settings
|
||
|
* @param enable true to enabled, false to disabled
|
||
|
*/
|
||
|
typeHints(enable: boolean) {
|
||
|
this.game.scene.typeHints = enable;
|
||
|
}
|
||
|
}
|