summaryrefslogtreecommitdiff
path: root/src/main/java/net/tylermurphy/Minecraft/Command/ICommand.java
blob: c3b85d3c5a7c4c46c828efc6021b849a8e282205 (plain)
1
2
3
4
5
6
7
8
9
10
11
package net.tylermurphy.Minecraft.Command;

import java.util.List;

public interface ICommand {

	public void invoke(List<String> args);
	
	public String getInvoke();
	
}