Beispiel #1
0
        /// <summary>
        /// Opens this instance.
        /// </summary>
        public void Toggle()
        {
            if (this.Reached)
            {
                this.Visited = true;
            }

            if (this.IsOpen)
            {
                TimelineController.Close();
            }
            else
            {
                TimelineController.Open(this);
            }
        }