AIMA.Environment.CellWorld.CellWorldAction.isNoOp C# (CSharp) 메소드

isNoOp() 공개 메소드

public isNoOp ( ) : bool
리턴 bool
    public bool isNoOp()
    {
        if (this._action == ActionEnum.None )
        {
            return true;
        }
        return false;
    }