mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-17 15:25:22 +01:00
* [Dev] Enable Biome import sorting Additional changes: - Implement import aliases - Convert default exports to named exports - Remove relative imports * Apply changes * Misc fixes * Merge cleanup
8 lines
245 B
TypeScript
8 lines
245 B
TypeScript
import { MockContainer } from "#test/testUtils/mocks/mocksContainer/mockContainer";
|
|
|
|
export class MockPolygon extends MockContainer {
|
|
constructor(textureManager, x, y, _content, _fillColor, _fillAlpha) {
|
|
super(textureManager, x, y);
|
|
}
|
|
}
|