Advertisement
Guest User

Untitled

a guest
Aug 2nd, 2016
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. package finiteskies.fsmod.fluids;
  2. import finiteskies.fsmod.Reference;
  3. import net.minecraft.util.ResourceLocation;
  4. import net.minecraftforge.fluids.Fluid;
  5. public class FluidMilk extends Fluid {
  6.  
  7. public FluidMilk(String name, String resourceLocation1, String resourceLocation2) {
  8. super(name, new ResourceLocation(resourceLocation1), new ResourceLocation(resourceLocation2));
  9. }
  10.  
  11. public int getColor() {
  12. return 0xFFFFED;
  13.  
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement