/
Belyash5
/
Flu
Обзор
Документация
Войти
/
Belyash5
/
Flu
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/main/java/com/hbm/inventory/gui/GUITurretSentry.java
20 строк
583 B
Bob
the new, the old, the mold
15 янв 2023, 22:23
15 янв 2023, 22:23
7f64b41
Код
Авторство
О чём код?
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 GUITurretSentry extends GUITurretBase { private static ResourceLocation texture = new ResourceLocation(RefStrings.MODID + ":textures/gui/weapon/gui_turret_sentry.png"); public GUITurretSentry(InventoryPlayer invPlayer, TileEntityTurretBaseNT tedf) { super(invPlayer, tedf); } protected ResourceLocation getTexture() { return texture; } }