mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-03-10 03:48:27 +00:00
10 lines
248 B
TypeScript
10 lines
248 B
TypeScript
|
import MockContainer from "#app/test/utils/mocks/mocksContainer/mockContainer";
|
||
|
|
||
|
|
||
|
export default class MockPolygon extends MockContainer {
|
||
|
constructor(textureManager, x, y, content, fillColor, fillAlpha) {
|
||
|
super(textureManager, x, y);
|
||
|
}
|
||
|
}
|
||
|
|