mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-03-20 08:46:43 +00:00
8 lines
249 B
TypeScript
8 lines
249 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);
|
|
}
|
|
}
|