예제 #1
0
파일: Blob.cs 프로젝트: tarnas14/AgarIo
        internal virtual void OnRemove()
        {
            if (!_isCreated)
            {
                return;
            }

            _physics.DestroyBody(Body);
            StateTracker.RemoveBlob(this);
            _isCreated = false;
        }