| 483 | } |
| 484 | |
| 485 | MicroPather::MicroPather( Graph* _graph, unsigned allocate, unsigned typicalAdjacent, bool cache ) |
| 486 | : pathNodePool( allocate, typicalAdjacent ), |
| 487 | graph( _graph ), |
| 488 | frame( 0 ) |
| 489 | { |
| 490 | MPASSERT( allocate ); |
| 491 | MPASSERT( typicalAdjacent ); |
| 492 | } |
| 493 | |
| 494 | |
| 495 | MicroPather::~MicroPather() |
nothing calls this directly
no outgoing calls
no test coverage detected