Fix mockImage.ts

This commit is contained in:
NightKev 2025-06-17 18:51:45 -07:00
parent d5f52760f1
commit 34b6f71356

View File

@ -1,6 +1,9 @@
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;