コード例 #1
0
        public void RemoveConstruct(Construct construct)
        {
            int index = Constructs.IndexOf(construct);

            if (index >= 0)
            {
                Constructs.RemoveAt(index);
                ConstructDestroyed(construct);
            }
        }