Ejemplo n.º 1
0
        /// <summary>
        /// Gets the singleton simulator instance
        /// </summary>
        /// <returns>Singleton instance</returns>
        public static Simulator GetSimulator()
        {
            if (m_singleton == null)
            {
                m_singleton = new Simulator();
            }

            return m_singleton;
        }