1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2025-06-13 13:04:03 +00:00
tobspr_shapez.io/src/js/game/modes/puzzle_play.js

13 lines
236 B
JavaScript
Raw Normal View History

import { GameMode } from "../game_mode";
export class PuzzlePlayGameMode extends GameMode {
static getId() {
return "PuzzlePlay";
}
/** param {GameRoot} root */
constructor(root) {
super(root);
}
}