mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-08-13 02:49:26 +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>
12 lines
357 B
TypeScript
12 lines
357 B
TypeScript
import { MockContainer } from "#test/test-utils/mocks/mocks-container/mock-container";
|
|
|
|
export class MockImage extends MockContainer {
|
|
// biome-ignore lint/correctness/noUnusedPrivateClassMembers: this is intentional (?)
|
|
private texture;
|
|
|
|
constructor(textureManager, x, y, texture) {
|
|
super(textureManager, x, y);
|
|
this.texture = texture;
|
|
}
|
|
}
|