Reminder to change solar panels to use networks

This commit is contained in:
Robert 2013-12-25 16:37:02 -05:00
parent 508e2517ed
commit 9fefb7997c

View file

@ -0,0 +1,23 @@
package com.builtbroken.assemblyline.generators;
import com.builtbroken.assemblyline.machine.TileEntityGenerator;
/** TileEntity that acts as the connection node for the solar panel */
public class TileEntitySolarBox extends TileEntityGenerator
{
@Override
public boolean hasFuel()
{
// TODO Auto-generated method stub
return false;
}
@Override
public void consumeFuel()
{
// TODO Auto-generated method stub
}
}