Started work on reactor.
This commit is contained in:
parent
19d269b1de
commit
100293fb8e
4 changed files with 94 additions and 0 deletions
|
@ -0,0 +1,36 @@
|
|||
package techreborn.tiles.fusionReactor;
|
||||
|
||||
import net.minecraftforge.common.util.ForgeDirection;
|
||||
import techreborn.powerSystem.TilePowerAcceptor;
|
||||
|
||||
|
||||
public class TileEntityFustionController extends TilePowerAcceptor {
|
||||
public TileEntityFustionController() {
|
||||
super(4);
|
||||
}
|
||||
|
||||
@Override
|
||||
public double getMaxPower() {
|
||||
return 100000000;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean canAcceptEnergy(ForgeDirection direction) {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean canProvideEnergy(ForgeDirection direction) {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public double getMaxOutput() {
|
||||
return 1000000;
|
||||
}
|
||||
|
||||
@Override
|
||||
public double getMaxInput() {
|
||||
return 8192;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue