diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/hippoLimits.h | 66 |
1 files changed, 33 insertions, 33 deletions
diff --git a/linden/indra/newview/hippoLimits.h b/linden/indra/newview/hippoLimits.h index 333a979..900480b 100644 --- a/linden/indra/newview/hippoLimits.h +++ b/linden/indra/newview/hippoLimits.h | |||
@@ -1,33 +1,33 @@ | |||
1 | #ifndef __HIPPO_LIMITS_H__ | 1 | #ifndef __HIPPO_LIMITS_H__ |
2 | #define __HIPPO_LIMITS_H__ | 2 | #define __HIPPO_LIMITS_H__ |
3 | 3 | ||
4 | 4 | ||
5 | class HippoLimits | 5 | class HippoLimits |
6 | { | 6 | { |
7 | public: | 7 | public: |
8 | HippoLimits(); | 8 | HippoLimits(); |
9 | 9 | ||
10 | int getMaxAgentGroups() const { return mMaxAgentGroups; } | 10 | int getMaxAgentGroups() const { return mMaxAgentGroups; } |
11 | float getMaxHeight() const { return mMaxHeight; } | 11 | float getMaxHeight() const { return mMaxHeight; } |
12 | float getMinHoleSize() const { return mMinHoleSize; } | 12 | float getMinHoleSize() const { return mMinHoleSize; } |
13 | float getMaxHollow() const { return mMaxHollow; } | 13 | float getMaxHollow() const { return mMaxHollow; } |
14 | float getMaxPrimScale() const { return mMaxPrimScale; } | 14 | float getMaxPrimScale() const { return mMaxPrimScale; } |
15 | 15 | ||
16 | void setLimits(); | 16 | void setLimits(); |
17 | 17 | ||
18 | private: | 18 | private: |
19 | int mMaxAgentGroups; | 19 | int mMaxAgentGroups; |
20 | float mMaxHeight; | 20 | float mMaxHeight; |
21 | float mMinHoleSize; | 21 | float mMinHoleSize; |
22 | float mMaxHollow; | 22 | float mMaxHollow; |
23 | float mMaxPrimScale; | 23 | float mMaxPrimScale; |
24 | 24 | ||
25 | void setOpenSimLimits(); | 25 | void setOpenSimLimits(); |
26 | void setSecondLifeLimits(); | 26 | void setSecondLifeLimits(); |
27 | }; | 27 | }; |
28 | 28 | ||
29 | 29 | ||
30 | extern HippoLimits *gHippoLimits; | 30 | extern HippoLimits *gHippoLimits; |
31 | 31 | ||
32 | 32 | ||
33 | #endif | 33 | #endif |