/* CVS: $Id: Energy.java,v 1.15 2001/03/17 23:34:27 gvijf Exp $ */

package evolution.resources;

import evolution.*;

/**
 * The available energy for world.
 */
public class Energy extends Resource {

    public Energy() {
        super(0, 0, Double.MAX_VALUE, Resource.LINEAR);
    }

}
