pokerogue/test/test-utils/mocks/mocks-container/mock-image.ts

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;
}
}