예제 #1
0
        public void Take(PhotoHalfPairTile tile)
        {
            if (First == null)
            {
                First = tile;
                return;
            }

            if (First != null && Second == null)
            {
                Second = tile;
                return;
            }
        }
예제 #2
0
 public BusyBehavior()
 {
     First  = null;
     Second = null;
 }