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
+2
View File
@@ -24,6 +24,8 @@ load.content = Content
load.system = System
load.mod = Mods
schematics = Schematics
stat.wave = Waves Defeated:[accent] {0}
stat.enemiesDestroyed = Enemies Destroyed:[accent] {0}
stat.built = Buildings Built:[accent] {0}
@@ -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();
}
}