2016-01-29 17:38:31 +01:00
|
|
|
package de.ellpeck.actuallyadditions.mod.fluids;
|
2015-05-20 22:39:43 +02:00
|
|
|
|
2018-05-10 11:38:58 +02:00
|
|
|
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
|
2016-01-07 23:42:42 +01:00
|
|
|
import net.minecraft.util.ResourceLocation;
|
2015-05-20 22:39:43 +02:00
|
|
|
import net.minecraftforge.fluids.Fluid;
|
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
public class FluidAA extends Fluid {
|
2015-05-20 22:39:43 +02:00
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
public FluidAA(String fluidName, String textureName) {
|
|
|
|
super(fluidName, new ResourceLocation(ActuallyAdditions.MODID, "blocks/" + textureName + "_still"), new ResourceLocation(ActuallyAdditions.MODID, "blocks/" + textureName + "_flowing"));
|
2015-05-20 22:39:43 +02:00
|
|
|
}
|
2015-11-19 16:39:09 +01:00
|
|
|
|
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public String getUnlocalizedName() {
|
|
|
|
return "fluid." + ActuallyAdditions.MODID + "." + this.unlocalizedName;
|
2015-11-19 16:39:09 +01:00
|
|
|
}
|
2015-05-20 22:39:43 +02:00
|
|
|
}
|