mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-17 07:15: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
20 lines
590 B
TypeScript
20 lines
590 B
TypeScript
import { MockContainer } from "#test/testUtils/mocks/mocksContainer/mockContainer";
|
|
|
|
export class MockNineslice extends MockContainer {
|
|
private texture;
|
|
private leftWidth;
|
|
private rightWidth;
|
|
private topHeight;
|
|
private bottomHeight;
|
|
|
|
constructor(textureManager, x, y, texture, frame, _width, _height, leftWidth, rightWidth, topHeight, bottomHeight) {
|
|
super(textureManager, x, y);
|
|
this.texture = texture;
|
|
this.frame = frame;
|
|
this.leftWidth = leftWidth;
|
|
this.rightWidth = rightWidth;
|
|
this.topHeight = topHeight;
|
|
this.bottomHeight = bottomHeight;
|
|
}
|
|
}
|