mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
21 lines
589 B
Java
21 lines
589 B
Java
package com.hbm.inventory.gui;
|
|
|
|
import com.hbm.lib.RefStrings;
|
|
import com.hbm.tileentity.turret.TileEntityTurretBaseNT;
|
|
|
|
import net.minecraft.entity.player.InventoryPlayer;
|
|
import net.minecraft.util.ResourceLocation;
|
|
|
|
public class GUITurretFriendly extends GUITurretBase {
|
|
|
|
private static ResourceLocation texture = new ResourceLocation(RefStrings.MODID + ":textures/gui/weapon/gui_turret_friendly.png");
|
|
|
|
public GUITurretFriendly(InventoryPlayer invPlayer, TileEntityTurretBaseNT tedf) {
|
|
super(invPlayer, tedf);
|
|
}
|
|
|
|
protected ResourceLocation getTexture() {
|
|
return texture;
|
|
}
|
|
}
|