gets "flags" variable, which is really the patrolling desirability value
| 78 | void setType(int type); |
| 79 | /// gets "flags" variable, which is really the patrolling desirability value |
| 80 | int getFlags() { return _flags; } |
| 81 | /// compares the _flags variables of the nodes (for the purpose of patrol decisions!) |
| 82 | bool operator<(Node &b) { return _flags < b.getFlags(); }; |
| 83 | bool isAllocated() const; |
no outgoing calls
no test coverage detected