/
Belyash5
/
Flu
Обзор
Документация
Войти
/
Belyash5
/
Flu
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/main/java/api/hbm/block/IMiningDrill.java
22 строки
470 B
Boblet
more API stuff, ore cluster functionality with auto miners
25 авг 2021, 10:36
25 авг 2021, 10:36
35e6d6b
Код
Авторство
О чём код?
package api.hbm.block; public interface IMiningDrill { /** * What era the drill belongs to, usually for IDrillInteraction to adjust outputs * @return */ public DrillType getDrillTier(); /** * An arbitrary "rating" of the drill. Hand powered pre-industrial drills would be <10, the auto mining drill is 50 and the laser miner is 100. * @return */ public int getDrillRating(); public static enum DrillType { PRIMITIVE, INDUSTRIAL, HITECH } }