コード例 #1
0
ファイル: InterestArea.cs プロジェクト: geosohal/Mmo
        public void Detach()
        {
            if (this.AttachedItem != null)
            {
                this.AttachedItem.Moved -= this.OnItemMoved;
                this.AttachedItem.SetInterestAreaAttached(false);
                this.AttachedItem = null;
            }

            Operations.DetachInterestArea(this.game);
        }