/
Belyash5
/
Flu
Обзор
Документация
Войти
/
Belyash5
/
Flu
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/main/java/com/hbm/items/IKeybindReceiver.java
12 строк
394 B
Bob
the almighty state machine
08 сен 2024, 18:45
08 сен 2024, 18:45
5d1d96e
Код
Авторство
О чём код?
package com.hbm.items; import com.hbm.handler.HbmKeybinds.EnumKeybind; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.ItemStack; public interface IKeybindReceiver { public boolean canHandleKeybind(EntityPlayer player, ItemStack stack, EnumKeybind keybind); public void handleKeybind(EntityPlayer player, ItemStack stack, EnumKeybind keybind, boolean state); }