mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
24 lines
482 B
Java
24 lines
482 B
Java
package api.hbm.block;
|
|
|
|
@Deprecated
|
|
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
|
|
}
|
|
}
|