mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-03-19 08:16:23 +00:00
11 lines
270 B
TypeScript
11 lines
270 B
TypeScript
import MockContainer from "#test/testUtils/mocks/mocksContainer/mockContainer";
|
|
|
|
export default class MockImage extends MockContainer {
|
|
private texture;
|
|
|
|
constructor(textureManager, x, y, texture) {
|
|
super(textureManager, x, y);
|
|
this.texture = texture;
|
|
}
|
|
}
|