mirror of
https://github.com/tobspr/shapez.io.git
synced 2025-06-13 13:04:03 +00:00
12 lines
227 B
JavaScript
12 lines
227 B
JavaScript
import { Component } from "../component";
|
|
|
|
export class DisplayComponent extends Component {
|
|
static getId() {
|
|
return "Display";
|
|
}
|
|
|
|
duplicateWithoutContents() {
|
|
return new DisplayComponent();
|
|
}
|
|
}
|