Example #1
0
        private bool InternalDestroyFsm(string fullName)
        {
            FsmBase fsm = null;

            if (m_Fsms.TryGetValue(fullName, out fsm))
            {
                fsm.Shutdown();
                return(m_Fsms.Remove(fullName));
            }

            return(false);
        }