| 41 | } |
| 42 | |
| 43 | region *region::getNeighbor(u8 index) const |
| 44 | { |
| 45 | if ( index <= this->neighborCount ) |
| 46 | return getRegionFromId(this->neighbors[index]); |
| 47 | return NULL; |
| 48 | } |
| 49 | |
| 50 | Position region::getCenter() const |
| 51 | { |
no outgoing calls
no test coverage detected