ActuallyAdditions/src/main/java/powercrystals/minefactoryreloaded/api/FertilizerType.java
2015-05-22 17:48:50 +02:00

30 lines
557 B
Java

package powercrystals.minefactoryreloaded.api;
/**
* Determines what kind of action a given fertilizer can perform. Your
* IFactoryFertilizable instances should check this before performing any action
* to maintain future compatibility.
*
* @author PowerCrystals
*/
public enum FertilizerType {
/**
* The fertilizer will fertilize nothing.
*/
None,
/**
* The fertilizer will fertilize grass.
*/
Grass,
/**
* The fertilizer will grow a plant.
*/
GrowPlant,
/**
* The fertilizer will grow magical crops.
*/
GrowMagicalCrop,
}