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/components/unremovable.js

16 lines
290 B
JavaScript
Raw Normal View History

2020-05-09 14:45:23 +00:00
import { Component } from "../component";
export class UnremovableComponent extends Component {
static getId() {
return "Unremovable";
}
static getSchema() {
return {};
}
2020-05-27 12:30:59 +00:00
duplicateWithoutContents() {
return new UnremovableComponent();
}
2020-05-09 14:45:23 +00:00
}