summaryrefslogtreecommitdiff
path: root/dicore3/command/src/main/java/io/dico/dicore/command/ICommandReceiver.java
blob: 88b0d50d176a212f8d112664c7d50f59ee5f7156 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package io.dico.dicore.command;

import org.bukkit.plugin.Plugin;

import java.lang.reflect.Method;

public interface ICommandReceiver {

    interface Factory {

        ICommandReceiver getReceiver(ExecutionContext context, Method target, String cmdName);

        Plugin getPlugin();

    }

}