Advertisement
ButterAleks

FuildLiquid

Jan 21st, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. package com.ButterAleks.RandomIdeas.fluids;
  2.  
  3. import net.minecraft.util.ResourceLocation;
  4. import net.minecraftforge.fluids.Fluid;
  5.  
  6. public class FluidLiquid extends Fluid
  7. {
  8. public FluidLiquid(String name, ResourceLocation still, ResourceLocation flow)
  9. {
  10. super(name, still, flow);
  11. this.setUnlocalizedName(name);
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement