mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
24 lines
737 B
Java
24 lines
737 B
Java
package com.hbm.particle;
|
|
|
|
import com.hbm.lib.RefStrings;
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
import net.minecraft.client.renderer.texture.TextureManager;
|
|
import net.minecraft.util.ResourceLocation;
|
|
import net.minecraft.world.World;
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
public class ParticleMukeCloudBF extends ParticleMukeCloud {
|
|
|
|
private static final ResourceLocation texture = new ResourceLocation(RefStrings.MODID + ":textures/particle/explosion_bf.png");
|
|
|
|
public ParticleMukeCloudBF(TextureManager texman, World world, double x, double y, double z, double mx, double my, double mz) {
|
|
super(texman, world, x, y, z, mx, my, mz);
|
|
}
|
|
|
|
protected ResourceLocation getTexture() {
|
|
return texture;
|
|
}
|
|
}
|