Exemplo n.º 1
0
 internal CubeDropper(Puzzle owner)
     : base(owner)
 {
     Type = TypeName;
     deletable = true;
     ItemFacing = new ItemFacing(Direction.NegZ, Direction.X);
     cubeConnectionReceiver = new SingleConnectionPointReceiver(this, "CONNECTION_BOX_DROPPER");
     ConnectionReceiver = new ConnectionLogicReceiver(this);
 }
Exemplo n.º 2
0
 private void SetItemFacing(ItemFacing facing)
 {
     activeItem.Facing = facing;
 }