0

First Commit

This commit is contained in:
BuildTools
2016-08-06 12:00:33 +02:00
parent e63adbdb82
commit 24ec6d2a32
21 changed files with 1185 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package com.nemez.cmdmgr.component;
public abstract class ArgumentComponent implements ICommandComponent {
public String argName;
@Override
public String argName() {
return argName;
}
}