0

Converted to a gradle project

This commit is contained in:
psrcek
2016-11-19 18:35:46 +01:00
parent cbe402fc73
commit 436da98907
34 changed files with 282 additions and 0 deletions

View File

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