Exemple #1
0
    public void Start()
    {
        m_Current = m_CommandList.First;

        if (m_Current != null)
        {
            m_Running = true;
            m_CommandInvoker.iInvoke(m_Current.Value, this);
        }
        else
        {
            m_Running = false;
            m_CommandListener.iFinished();
        }
    }
Exemple #2
0
 public void iFinished()
 {
     m_RedirectionTarget.iFinished();
 }