BloodMagic/BM_src/forestry/api/arboriculture/ITreekeepingMode.java
2014-01-25 20:36:28 -05:00

18 lines
346 B
Java

package forestry.api.arboriculture;
import java.util.ArrayList;
public interface ITreekeepingMode extends ITreeModifier {
/**
* @return Localized name of this treekeeping mode.
*/
String getName();
/**
* @return Localized list of strings outlining the behaviour of this treekeeping mode.
*/
ArrayList<String> getDescription();
}