blob: b06c3d8d11dd1c6b08b2d2b126715778afaeab24 [file] [log] [blame] [raw]
package appeng.api.me.util;
import appeng.api.WorldCoord;
import net.minecraft.world.World;
/**
* Defines the result of performing a transition from the world into a storage cell, if its possible, and what the energy usage is.
*
*/
public class TransitionResult {
public TransitionResult( boolean _success, double power )
{
success = _success;
energyUsage = power;
}
public final boolean success;
public final double energyUsage;
}