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,9 @@
package com.nemez.cmdmgr.component;
public interface ICommandComponent {
public Object get(String input);
public boolean valid(String input);
public String argName();
public String getComponentInfo();
}