diff options
author | Todd Stinson <stinson@lindenlab.com> | 2011-12-19 17:01:23 -0800 |
---|---|---|
committer | Todd Stinson <stinson@lindenlab.com> | 2011-12-19 17:01:23 -0800 |
commit | 6a078814cdd55105304fec41712dbd635e18d900 (patch) | |
tree | 92aa07aa21d343b6e18e18b5e58d5f5b8032b32c /indra/newview/llfloaterpathfindingconsole.h | |
parent | 9897c4de69c57ddeae6b94a857e532c0552865cf (diff) |
Stubbing out functionality for catching the character type switch states.
Diffstat (limited to 'indra/newview/llfloaterpathfindingconsole.h')
-rw-r--r-- | indra/newview/llfloaterpathfindingconsole.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/indra/newview/llfloaterpathfindingconsole.h b/indra/newview/llfloaterpathfindingconsole.h index e21d69c1eb..a0a1500d94 100644 --- a/indra/newview/llfloaterpathfindingconsole.h +++ b/indra/newview/llfloaterpathfindingconsole.h @@ -54,6 +54,14 @@ class LLFloaterPathfindingConsole kPathSelectEndPoint = 2
} EPathSelectionState;
+ typedef enum
+ {
+ kCharacterTypeA = 0,
+ kCharacterTypeB = 1,
+ kCharacterTypeC = 2,
+ kCharacterTypeD = 3
+ } ECharacterType;
+
public:
virtual BOOL postBuild();
@@ -74,11 +82,13 @@ private: void onRegionOverlayDisplaySwitch();
void onPathSelectionSwitch();
void onCharacterWidthSet();
+ void onCharacterTypeSwitch();
void onViewEditLinksetClicked();
ERegionOverlayDisplay getRegionOverlayDisplay() const;
EPathSelectionState getPathSelectionState() const;
F32 getCharacterWidth() const;
+ ECharacterType getCharacterType() const;
LLCheckBoxCtrl *mShowNavmeshCheckBox;
LLCheckBoxCtrl *mShowExcludeVolumesCheckBox;
@@ -87,6 +97,7 @@ private: LLRadioGroup *mRegionOverlayDisplayRadioGroup;
LLRadioGroup *mPathSelectionRadioGroup;
LLSliderCtrl *mCharacterWidthSlider;
+ LLRadioGroup *mCharacterTypeRadioGroup;
LLNavMeshDownloadObserver mNavmeshDownloadObserver;
};
|