mirror of
https://github.com/tobspr/shapez.io.git
synced 2025-12-17 12:11:51 +00:00
12 lines
293 B
JavaScript
12 lines
293 B
JavaScript
|
|
import { Component } from "../component";
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Marks an entity as replaceable, so that when other buildings are placed above him it
|
||
|
|
* simply gets deleted
|
||
|
|
*/
|
||
|
|
export class ReplaceableMapEntityComponent extends Component {
|
||
|
|
static getId() {
|
||
|
|
return "ReplaceableMapEntity";
|
||
|
|
}
|
||
|
|
}
|