This commit is contained in:
Jesse Boyd 2018-08-12 22:50:56 +10:00
parent 055a08b741
commit 1b55aa0b0c
No known key found for this signature in database
GPG Key ID: 59F1DE6293AF6E1F
1 changed files with 4 additions and 2 deletions

View File

@ -1,10 +1,12 @@
package com.sk89q.worldedit.util.command;
import com.plotsquared.general.commands.Command;
import com.sk89q.minecraft.util.commands.CommandException;
import com.sk89q.minecraft.util.commands.CommandLocals;
import com.sk89q.worldedit.WorldEditException;
public interface CallableProcessor<T> {
public Object process(CommandLocals locals, T value) throws Command.CommandException, WorldEditException;
public Object process(CommandLocals locals, T value) throws CommandException, WorldEditException;
}