mirror of
https://github.com/Zrips/Jobs.git
synced 2024-11-26 04:25:15 +01:00
10 lines
230 B
Java
10 lines
230 B
Java
package com.gamingmesh.jobs.commands;
|
|
|
|
import org.bukkit.command.CommandSender;
|
|
|
|
import com.gamingmesh.jobs.JobsPlugin;
|
|
|
|
public interface Cmd {
|
|
public boolean perform(JobsPlugin plugin, CommandSender sender, String[] args);
|
|
}
|