Advertisement
Marikc0

Untitled

Dec 14th, 2013
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.63 KB | None | 0 0
  1. package marikc0.optionals;
  2.  
  3. import net.minecraft.block.Block;
  4. import net.minecraft.block.BlockCrops;
  5. import marikc0.optionals.crops.*;
  6.  
  7. public class Crops {
  8.    
  9.     public static Block CropRice;
  10.     public static Block CropDiamonds;
  11.     public static Block cropUU;
  12.    
  13.     public static final int MIN_LIGHT_RICE = 7;
  14.     public static final int MIN_LIGHT_DIAMOND = 7;
  15.     public static final int MIN_LIGHTUU = 7;
  16.    
  17.     public static void init() {
  18.        
  19.         CropRice = new CropRice(ConfigHandler.ID_CropRice);
  20.         CropDiamonds = new CropDiamonds(ConfigHandler.ID_CropDiamond);
  21.        
  22.     }
  23.    
  24.  
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement