0

Added "multiword" strings

This commit is contained in:
NEMESIS13cz
2016-10-16 10:26:15 +02:00
parent 1c0b0eac57
commit 80d27b488b
25 changed files with 1744 additions and 1652 deletions

View File

@@ -1,18 +1,18 @@
package com.nemez.cmdmgr.util;
public class HelpPageCommand {
public String permission;
public String usage;
public String description;
public String method;
public Type type;
public HelpPageCommand(String perm, String usage, String description, String method, Type type) {
this.permission = perm;
this.usage = usage;
this.description = description;
this.method = method;
this.type = type;
}
}
package com.nemez.cmdmgr.util;
public class HelpPageCommand {
public String permission;
public String usage;
public String description;
public String method;
public Type type;
public HelpPageCommand(String perm, String usage, String description, String method, Type type) {
this.permission = perm;
this.usage = usage;
this.description = description;
this.method = method;
this.type = type;
}
}