mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-03-29 22:20:33 +00:00
Make PathFinder::getPathCell inline
This commit is contained in:
parent
2ad3543088
commit
3565d92e11
@ -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…
x
Reference in New Issue
Block a user