示例#1
0
        /// <summary>Terminates all.</summary>
        internal void TerminateAll()
        {
            for (int index = 0; index < this.Systems.Count; ++index)
            {
                EntitySystem entitySystem = this.Systems.Get(index);
                entitySystem.UnloadContent();
            }

            this.Systems.Clear();
        }