mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
21 lines
490 B
Java
21 lines
490 B
Java
package com.hbm.tileentity.machine.rbmk;
|
|
|
|
import com.hbm.handler.rbmkmk2.RBMKHandler;
|
|
|
|
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(RBMKHandler.NeutronStream stream);
|
|
}
|