pokerogue/test/test-utils/mocks/mock-game-object.ts
Sirz Benjie 51d4c33de0
[Misc] Standardize-file-names (#6137)
* 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>
2025-07-24 16:38:31 -04:00

8 lines
158 B
TypeScript

export interface MockGameObject {
name: string;
active: boolean;
destroy?(): void;
setActive(active: boolean): this;
setName(name: string): this;
}