mirror of
https://github.com/tobspr/shapez.io.git
synced 2025-06-13 13:04:03 +00:00
- [WIP] Add ConstantProducer building that combines ConstantSignal and ItemProducer functionality. Currently using temp assets. - Add pre-placement check to the zone - Use Rectangles for zone and boundary - Simplify zone drawing - Account for exclusion in savegame data - [WIP] Add puzzle play and edit buttons in puzzle mode menu
18 lines
386 B
JavaScript
18 lines
386 B
JavaScript
/* typehints:start */
|
|
import { GameRoot } from "../root";
|
|
/* typehints:end */
|
|
|
|
import { PuzzleGameMode } from "./puzzle";
|
|
import { enumGameModeIds } from "../game_mode";
|
|
|
|
export class PuzzlePlayGameMode extends PuzzleGameMode {
|
|
static getId() {
|
|
return enumGameModeIds.puzzlePlay;
|
|
}
|
|
|
|
/** @param {GameRoot} root */
|
|
constructor(root) {
|
|
super(root);
|
|
}
|
|
}
|