コード例 #1
0
ファイル: Agent.cs プロジェクト: agentcox/NodeHackEX-xna
        public virtual void SetCurrentState(HackGameAgent_State state)
        {
            HackGameAgent_State oldState = currentState;
            currentState = state;

            EnteringNewState(oldState, state);
        }
コード例 #2
0
ファイル: Agent.cs プロジェクト: agentcox/NodeHackEX-xna
 public abstract void EnteringNewState(HackGameAgent_State oldState, HackGameAgent_State newState);