Guest User

Untitled

a guest
Nov 19th, 2016
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.46 KB | None | 0 0
  1. package com.villfuk02.essence.fluids;
  2.  
  3. import net.minecraft.util.ResourceLocation;
  4. import net.minecraftforge.fluids.Fluid;
  5.  
  6. public class FluidEssenceGray extends Fluid {
  7.      
  8.     public FluidEssenceGray(String name, String resourceLocation1, String resourceLocation2)         {
  9.         super(name, new ResourceLocation(resourceLocation1), new ResourceLocation(resourceLocation2));
  10.     }
  11.  
  12.     public int getColor() {
  13.         return 0x848484;
  14.        
  15.     }
  16. }
Add Comment
Please, Sign In to add comment