machines are now connected to the controller

This commit is contained in:
Raoul Van den Berge
2015-12-08 20:14:19 +01:00
parent 7e5bd57963
commit bd129418e7
8 changed files with 147 additions and 9 deletions

View File

@@ -2,8 +2,10 @@ package storagecraft;
import storagecraft.block.BlockCable;
import storagecraft.block.BlockController;
import storagecraft.block.BlockGrid;
public class SCBlocks {
public static final BlockController CONTROLLER = new BlockController();
public static final BlockCable CABLE = new BlockCable();
public static final BlockGrid GRID = new BlockGrid();
}