| 854 | } |
| 855 | |
| 856 | Point3F AIPlayer::getPathDestination() const |
| 857 | { |
| 858 | if(!mPathData.path.isNull()) |
| 859 | return mPathData.path->mTo; |
| 860 | return Point3F(0, 0, 0); |
| 861 | } |
| 862 | |
| 863 | DefineEngineMethod(AIPlayer, getPathDestination, Point3F, (),, |
| 864 | "@brief Get the AIPlayer's current pathfinding destination.\n\n" |
no test coverage detected