diff options
author | Todd Stinson <stinson@lindenlab.com> | 2012-03-08 12:34:11 -0800 |
---|---|---|
committer | Todd Stinson <stinson@lindenlab.com> | 2012-03-08 12:34:11 -0800 |
commit | f578181af9cbe3277374578c27487e2e72956079 (patch) | |
tree | ab7c041c277d708f805dc3bf9e80418616c19277 /indra/newview/llpathfindingmanager.h | |
parent | dcf7ed021b11b2ec990625389aa185081eeab915 (diff) |
PATH-304: Adding functionality to handle the reloading of out-of-date navmeshes.
Diffstat (limited to 'indra/newview/llpathfindingmanager.h')
-rw-r--r-- | indra/newview/llpathfindingmanager.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/newview/llpathfindingmanager.h b/indra/newview/llpathfindingmanager.h index eb8704e308..3e85cb1291 100644 --- a/indra/newview/llpathfindingmanager.h +++ b/indra/newview/llpathfindingmanager.h @@ -80,6 +80,7 @@ public: LLPathfindingNavMesh::navmesh_slot_t registerNavMeshListenerForRegion(LLViewerRegion *pRegion, LLPathfindingNavMesh::navmesh_callback_t pNavMeshCallback);
void requestGetNavMeshForRegion(LLViewerRegion *pRegion);
+ void handleNavMeshUpdate(const LLUUID &pRegionUUID, U32 pNavMeshVersion);
agent_state_slot_t registerAgentStateListener(agent_state_callback_t pAgentStateCallback);
EAgentState getAgentState();
@@ -92,6 +93,7 @@ public: protected:
private:
+ LLPathfindingNavMeshPtr getNavMeshForRegion(const LLUUID &pRegionUUID);
LLPathfindingNavMeshPtr getNavMeshForRegion(LLViewerRegion *pRegion);
static bool isValidAgentState(EAgentState pAgentState);
|