mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
22 lines
339 B
Java
22 lines
339 B
Java
package com.hbm.interfaces;
|
|
|
|
import net.minecraft.world.World;
|
|
|
|
public interface IReactor {
|
|
|
|
boolean isStructureValid(World world);
|
|
|
|
boolean isCoatingValid(World world);
|
|
|
|
boolean hasFuse();
|
|
|
|
int getWaterScaled(int i);
|
|
|
|
int getCoolantScaled(int i);
|
|
|
|
int getPowerScaled(int i);
|
|
|
|
int getHeatScaled(int i);
|
|
|
|
}
|