Build stuff into nodes! They may not do anything, but it's node-tastic!

This commit is contained in:
Nathan Adams
2014-09-17 15:30:49 +02:00
parent 934ba3336f
commit 4f20d02a97
11 changed files with 161 additions and 1 deletions
@@ -1,6 +1,7 @@
package net.minecraft.commands.builder;
import com.google.common.collect.Lists;
import net.minecraft.commands.tree.CommandNode;
import java.util.List;
@@ -15,4 +16,6 @@ public abstract class ArgumentBuilder {
public List<ArgumentBuilder> getArguments() {
return arguments;
}
public abstract CommandNode build();
}