29 lines
624 B
Java
29 lines
624 B
Java
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();
|
|
|
|
}
|
|
}
|