2022-04-15 22:38:43 -07:00
|
|
|
package plugin;
|
|
|
|
|
|
|
|
import org.bukkit.plugin.java.JavaPlugin;
|
|
|
|
|
|
|
|
public class EaglerSamplesPlugin extends JavaPlugin {
|
|
|
|
|
|
|
|
public void onEnable() {
|
|
|
|
getCommand("samplemap").setExecutor(new CommandSampleMap(this));
|
2022-04-20 05:13:40 -07:00
|
|
|
getCommand("videomap").setExecutor(new CommandVideoMap());
|
2022-04-15 22:38:43 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public void onDisable() {
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|