Initial commit

This commit is contained in:
2022-09-17 10:49:36 +02:00
parent 1e8420a83e
commit 59a6e1c423
368 changed files with 26176 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package eu.mhsl.minenet.minigames.lang;
public class DummyLang extends Lang {
public DummyLang() {
super("dummy");
}
@Override
public String getEntry(String key) {
return "translation:" + key;
}
}