Created
November 28, 2013 16:03
-
-
Save Jezza/7694171 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static final int Bar[] = {4, 7, 1, 6, 2, 2, 1, 3, 4, 3}; | |
public static final float Sat[] = {0.5F, 1.2F, 0.5F, 1.2F, 0.3F, 0.5F, 0.4F, 0.6F, 0.8F, 0.7F}; | |
public static final boolean dogFood[] = {false, true, false, false, false, false, false, false, false, false}; | |
for(int i=0;i<10;i++) | |
{ | |
allFood = new AllFood(allFoodID + i, Bar[i], Sat[i], dogFood[i]).setUnlocalizedName("food"); | |
} | |
furnaceUpgrades = new ItemUpgrade(furnaceUpgradesID).setUnlocalizedName("upgrades"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment