mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-03-09 19:41:37 +00:00
* move test folder * Update vitest files * rename test/utils to test/testUtils * Remove stray utils/gameManager Got put back from a rebase
12 lines
271 B
TypeScript
12 lines
271 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;
|
|
}
|
|
}
|