Test with stuff + Forestry potential support
This commit is contained in:
parent
5b05cf651b
commit
bd26e441cb
174 changed files with 5602 additions and 0 deletions
24
BM_src/forestry/api/genetics/AlleleManager.java
Normal file
24
BM_src/forestry/api/genetics/AlleleManager.java
Normal file
|
@ -0,0 +1,24 @@
|
|||
package forestry.api.genetics;
|
||||
|
||||
import java.util.HashMap;
|
||||
|
||||
import net.minecraft.item.ItemStack;
|
||||
|
||||
/**
|
||||
* Holds a static reference to the {@link IAlleleRegistry}.
|
||||
*/
|
||||
public class AlleleManager {
|
||||
/**
|
||||
* Main access point for all things related to genetics. See {@link IAlleleRegistry} for details.
|
||||
*/
|
||||
public static IAlleleRegistry alleleRegistry;
|
||||
/**
|
||||
* Translates plain leaf blocks into genetic data. Used by bees and butterflies to convert and pollinate foreign leaf blocks.
|
||||
*/
|
||||
public static HashMap<ItemStack, IIndividual> ersatzSpecimen = new HashMap<ItemStack, IIndividual>();
|
||||
/**
|
||||
* Translates plain saplings into genetic data. Used by the treealyzer and the farm to convert foreign saplings.
|
||||
*/
|
||||
public static HashMap<ItemStack, IIndividual> ersatzSaplings = new HashMap<ItemStack, IIndividual>();
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue