コード例 #1
0
ファイル: CStateMachine.cs プロジェクト: yimogod/DarkRoom
        public void Update()
        {
            if (m_globalState != null)
            {
                m_globalState.Execute(this);
            }

            if (m_currState != null)
            {
                m_currState.Execute(this);
            }
        }