pokerogue/test/testUtils/mocks/mocksContainer/mockImage.ts
2025-06-19 17:44:52 -07:00

12 lines
350 B
TypeScript

import MockContainer from "#test/testUtils/mocks/mocksContainer/mockContainer";
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;
}
}