Advertisement
WitherDoggie

WoodType.java

May 19th, 2016
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.35 KB | None | 0 0
  1. package com.wither.withermod.utils;
  2.  
  3. public final class WoodType {
  4.  
  5.     public static final String[] WOOD_TYPE_IDS =  new String[] {
  6.             "oak",
  7.             "spruce",
  8.             "birch",
  9.             "jungle",
  10.             "acacia",
  11.             "big_oak"
  12.       };
  13.    
  14.     public static final int WOOD_TYPE_COUNT = WOOD_TYPE_IDS.length;
  15.  
  16.     private WoodType() {
  17.        
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement