Esempio n. 1
0
        bool triadHitsAnyBlock()
        {
            foreach (GameObject obj in this.GameObjectList)
            {
                if (triad.Hits(obj))
                {
                    return(true);
                }
            }

            return(false);
        }