Guest User

Untitled

a guest
Oct 20th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.44 KB | None | 0 0
  1. public final class ModLoader {
  2.  
  3.    private static final List<TextureFX> animList = new LinkedList();
  4.    private static final Map<Integer, BaseMod> blockModels = new HashMap();
  5.    private static final Map<Integer, Boolean> blockSpecialInv = new HashMap();
  6.    private static final File cfgdir = new File(Minecraft.getMinecraftDir(), "/config/");
  7.    private static final File cfgfile = new File(cfgdir, "ModLoader.cfg");
  8.    public static Level cfgLoggingLevel = Level.FINER;
  9.    private static Map<String, Class<? extends Entity>> classMap = null;
  10.    private static long clock = 0L;
  11.    public static final boolean DEBUG = false;
  12.    private static Field field_animList = null;
  13.    private static Field field_armorList = null;
  14.    private static Field field_blockList = null;
  15.    private static Field field_modifiers = null;
  16.    private static Field field_TileEntityRenderers = null;
  17.    private static boolean hasInit = false;
  18.    private static int highestEntityId = 3000;
  19.    private static final Map<BaseMod, Boolean> inGameHooks = new HashMap();
  20.    private static final Map<BaseMod, Boolean> inGUIHooks = new HashMap();
  21.    private static Minecraft instance = null;
  22.    private static int itemSpriteIndex = 0;
  23.    private static int itemSpritesLeft = 0;
  24.    private static final Map<BaseMod, Map<KeyBinding, boolean[]>> keyList = new HashMap();
  25.    private static final File logfile = new File(Minecraft.getMinecraftDir(), "ModLoader.txt");
  26.    private static final Logger logger = Logger.getLogger("ModLoader");
  27.    private static FileHandler logHandler = null;
  28.    private static Method method_RegisterEntityID = null;
  29.    private static Method method_RegisterTileEntity = null;
  30.    private static final File modDir = new File(Minecraft.getMinecraftDir(), "/mods/");
  31.    private static final LinkedList<BaseMod> modList = new LinkedList();
  32.    private static int nextBlockModelID = 1000;
  33.    private static final Map<Integer, Map<String, Integer>> overrides = new HashMap();
  34.    public static final Properties props = new Properties();
  35.    private static BiomeGenBase[] standardBiomes;
  36.    private static int terrainSpriteIndex = 0;
  37.    private static int terrainSpritesLeft = 0;
  38.    private static String texPack = null;
  39.    private static boolean texturesAdded = false;
  40.    private static final boolean[] usedItemSprites = new boolean[256];
  41.    private static final boolean[] usedTerrainSprites = new boolean[256];
  42.    public static final String VERSION = "ModLoader Beta 1.7.3";
Add Comment
Please, Sign In to add comment