1
0
mirror of https://github.com/Zrips/Jobs.git synced 2025-01-08 09:17:48 +01:00
Jobs/com/gamingmesh/jobs/commands/Cmd.java

10 lines
230 B
Java
Raw Normal View History

2016-03-30 15:42:36 +02:00
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);
}