mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-06-21 17:12:44 +02:00
9 lines
242 B
TypeScript
9 lines
242 B
TypeScript
import MockContainer from "#test/testUtils/mocks/mocksContainer/mockContainer";
|
|
|
|
export class MockImage extends MockContainer {
|
|
constructor(textureManager, x, y, texture) {
|
|
super(textureManager, x, y);
|
|
this.texture = texture;
|
|
}
|
|
}
|