Newer
Older
ultramine_bukkit / src / main / java / net / minecraftforge / cauldron / api / CauldronApi.java
@vlad20012 vlad20012 on 24 Feb 2017 471 bytes initial
package net.minecraftforge.cauldron.api;

import net.minecraftforge.cauldron.api.inventory.BukkitOreDictionary;

/**
 * Represents the Bukkit plugin interface to Forge features.
 */
public interface CauldronApi
{
	/**
	 * Get the ore dictionary interface.
	 *
	 * @return ore dictionary interface
	 */
	public BukkitOreDictionary getOreDictionary();

	/**
	 * Get the fishing interface.
	 *
	 * @return the fishing interface
	 */
	public Fishing getFishingInterface();
}