Exemple #1
0
        public static void Begin()
        {
            if (m_Command != null && m_Command.HasCompleted)
            {
                m_Command = null;
            }

            if (m_Timer != null || m_Command != null)
            {
                return;
            }

            m_Timer = new MyRunUO();
            m_Timer.Start();
        }
Exemple #2
0
		public static void Begin()
		{
			if ( m_Command != null && m_Command.HasCompleted )
				m_Command = null;

			if ( m_Timer != null || m_Command != null )
				return;

			m_Timer = new MyRunUO();
			m_Timer.Start();
		}