grundlegente Umstellung + Earthdawn Implemntation

This commit is contained in:
Ocame
2025-07-06 16:22:48 +02:00
parent 10c8c9900f
commit e2b9694e09
48 changed files with 1488 additions and 638 deletions

View File

@ -0,0 +1,28 @@
package de.ocame.wuerfelbot.Shadowrun;
public class help {
private final StringBuilder hilfstext;
private final String sprache;
public help(String sprache) {
this.sprache = sprache;
hilfstext = new StringBuilder();
}
public void add(String befehl, String hilftext) {
if(this.hilfstext.length() > 0)
this.hilfstext.append("\n\n");
this.add("**" + befehl + "** " + hilftext);
}
public void add(String hilftext) {
this.hilfstext.append(hilftext);
}
public void send() {
StringBuilder ausgabe = new StringBuilder();
}
}