mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
19 lines
436 B
Java
19 lines
436 B
Java
package com.hbm.tileentity.machine.rbmk;
|
|
|
|
public interface IRBMKFluxReceiver {
|
|
|
|
public enum NType {
|
|
FAST("trait.rbmk.neutron.fast"),
|
|
SLOW("trait.rbmk.neutron.slow"),
|
|
ANY("trait.rbmk.neutron.any"); //not to be used for reactor flux calculation, only for the fuel designation
|
|
|
|
public String unlocalized;
|
|
|
|
private NType(String loc) {
|
|
this.unlocalized = loc;
|
|
}
|
|
}
|
|
|
|
public void receiveFlux(NType type, double flux);
|
|
}
|