Make PathFinder::getPathCell inline

pull/1633/head
elsid 6 years ago
parent 2ad3543088
commit 3565d92e11
No known key found for this signature in database
GPG Key ID: B845CB9FEE18AB40

@ -299,9 +299,4 @@ namespace MWMechanics
}
}
}
const MWWorld::CellStore* PathFinder::getPathCell() const
{
return mCell;
}
}

@ -86,7 +86,10 @@ namespace MWMechanics
return mPath;
}
const MWWorld::CellStore* getPathCell() const;
const MWWorld::CellStore* getPathCell() const
{
return mCell;
}
/** Synchronize new path with old one to avoid visiting 1 waypoint 2 times
@note

Loading…
Cancel
Save