Ejemplo n.º 1
0
 internal void VerifyGroupMembership(_GAME_3BViewModel bubble)
 {
     _bubbleGroup.Deactivate();
     if (bubble != null)
     {
         _bubbleGroup.FindBubbleGroup(bubble).Activate();
     }
 }
Ejemplo n.º 2
0
        internal void RemoveBubble(_GAME_3BViewModel bubble)
        {
            if (bubble == null)
            {
                throw new ArgumentNullException("bubble");
            }

            _bubblesInternal.Remove(bubble);
        }
Ejemplo n.º 3
0
 bool IsInBubbleGroup(_GAME_3BViewModel bubble)
 {
     return(new _3BGroup(this.Bubbles).FindBubbleGroup(bubble).HasBubbles);
 }