Example #1
0
	public void MoveTile(CommandSlot from, CommandSlot to){
//		Debug.Log("moving tile from slot " + from + " to " + to);
		CommandTile movingTile = from.tile;
		from.RemoveTile();
		to.SetTile(movingTile);
	}