From 2ef93dc6252efa750ad41086d1a9b934413fe98c Mon Sep 17 00:00:00 2001 From: NightKev <34855794+DayKev@users.noreply.github.com> Date: Tue, 17 Jun 2025 18:51:45 -0700 Subject: [PATCH] Fix `mockImage.ts` --- test/testUtils/mocks/mocksContainer/mockImage.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/testUtils/mocks/mocksContainer/mockImage.ts b/test/testUtils/mocks/mocksContainer/mockImage.ts index b128346ea7b..f8990985e54 100644 --- a/test/testUtils/mocks/mocksContainer/mockImage.ts +++ b/test/testUtils/mocks/mocksContainer/mockImage.ts @@ -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;