Exemplo n.º 1
0
        /// <summary>
        /// Enlève l'écran sen prendre en compte son animation
        /// </summary>
        /// <param name="screenObject"></param>
        public void ForceRemove(ScreenObject screenObject)
        {
            if (!displayedScreens.Contains(screenObject) || !screenObject.IsAppear)
            {
                return;
            }

            displayedScreens.Remove(screenObject);
            screenObject.ForceDisappear();
        }