mirror of
https://github.com/tobspr/shapez.io.git
synced 2025-12-17 04:01:51 +00:00
19 lines
493 B
JavaScript
19 lines
493 B
JavaScript
|
|
import { MetaBuilding } from "../game/meta_building";
|
||
|
|
|
||
|
|
export class ModMetaBuilding extends MetaBuilding {
|
||
|
|
/**
|
||
|
|
* @returns {({
|
||
|
|
* variant: string;
|
||
|
|
* rotationVariant?: number;
|
||
|
|
* name: string;
|
||
|
|
* description: string;
|
||
|
|
* blueprintImageBase64?: string;
|
||
|
|
* regularImageBase64?: string;
|
||
|
|
* tutorialImageBase64?: string;
|
||
|
|
* }[])}
|
||
|
|
*/
|
||
|
|
static getAllVariantCombinations() {
|
||
|
|
throw new Error("Implement getAllVariantCombinations");
|
||
|
|
}
|
||
|
|
}
|