mirror of
https://github.com/tobspr/shapez.io.git
synced 2025-12-16 11:41:50 +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();
|
|
}
|
|
}
|