BiomesOPlenty/apis/forestry/api/core/GlobalManager.java

16 lines
525 B
Java
Raw Normal View History

2013-07-28 10:37:31 +00:00
package forestry.api.core;
import java.util.ArrayList;
/**
* Used mostly by hives to determine whether they can spawn at a certain position. Rather limited and hackish.
*/
2013-07-28 10:37:31 +00:00
public class GlobalManager {
public static ArrayList<Integer> dirtBlockIds = new ArrayList<Integer>();
public static ArrayList<Integer> sandBlockIds = new ArrayList<Integer>();
public static ArrayList<Integer> leafBlockIds = new ArrayList<Integer>();
public static ArrayList<Integer> snowBlockIds = new ArrayList<Integer>();
}