This commit is contained in:
Anuken
2019-10-17 16:53:43 -04:00
parent a1826763f5
commit 1921bc87a2
3 changed files with 17 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
package io.anuke.mindustry.ui.dialogs;
public class SchematicsDialog extends FloatingDialog{
public SchematicsDialog(){
super("$schematics");
shown(this::setup);
}
void setup(){
cont.clear();
}
}