mirror of
https://github.com/tobspr/shapez.io.git
synced 2025-12-15 11:11:51 +00:00
12 lines
236 B
JavaScript
12 lines
236 B
JavaScript
|
|
import { Component } from "../component";
|
||
|
|
|
||
|
|
export class WireTunnelComponent extends Component {
|
||
|
|
static getId() {
|
||
|
|
return "WireTunnel";
|
||
|
|
}
|
||
|
|
|
||
|
|
duplicateWithoutContents() {
|
||
|
|
return new WireTunnelComponent();
|
||
|
|
}
|
||
|
|
}
|