mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-03-09 03:18:24 +00:00
* move test folder * Update vitest files * rename test/utils to test/testUtils * Remove stray utils/gameManager Got put back from a rebase
10 lines
248 B
TypeScript
10 lines
248 B
TypeScript
import MockContainer from "#test/testUtils/mocks/mocksContainer/mockContainer";
|
|
|
|
|
|
export default class MockPolygon extends MockContainer {
|
|
constructor(textureManager, x, y, content, fillColor, fillAlpha) {
|
|
super(textureManager, x, y);
|
|
}
|
|
}
|
|
|