1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2026-03-02 03:39:21 +00:00

Add display

This commit is contained in:
tobspr
2020-08-14 14:55:37 +02:00
parent 349657bafc
commit 390c4ce1a5
29 changed files with 801 additions and 399 deletions

View File

@@ -0,0 +1,11 @@
import { Component } from "../component";
export class DisplayComponent extends Component {
static getId() {
return "Display";
}
duplicateWithoutContents() {
return new DisplayComponent();
}
}