Example usage for net.minecraftforge.energy EnergyStorage EnergyStorage

List of usage examples for net.minecraftforge.energy EnergyStorage EnergyStorage

Introduction

In this page you can find the example usage for net.minecraftforge.energy EnergyStorage EnergyStorage.

Prototype

public EnergyStorage(int capacity, int maxTransfer) 

Source Link

Usage

From source file:si.meansoft.traincraft.tile.TileEntityEnergy.java

public TileEntityEnergy(String name, int slotAmount, int capacity, int maxTransfer) {
    super(name, slotAmount);
    this.maxTransfer = maxTransfer;
    this.storage = new EnergyStorage(capacity, maxTransfer);
}