コード例 #1
0
ファイル: CharacterBase.cs プロジェクト: sdasd30/TSSG
    // --- ACTIONS


    private bool progressAction()
    {
        if (m_currentAction == default(ActionInfo))
        {
            return(false);
        }
        m_currentAction.Progress();
        if (m_currentAction == null)
        {
            return(false);
        }
        OnActionProgressed(m_currentAction.CurrentState());
        return(true);
    }