diff options
Diffstat (limited to 'linden/indra/newview/llviewerpartsource.h')
-rw-r--r-- | linden/indra/newview/llviewerpartsource.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/linden/indra/newview/llviewerpartsource.h b/linden/indra/newview/llviewerpartsource.h index 9d22e72..32e1475 100644 --- a/linden/indra/newview/llviewerpartsource.h +++ b/linden/indra/newview/llviewerpartsource.h | |||
@@ -61,9 +61,10 @@ public: | |||
61 | virtual void update(const F32 dt); // Return FALSE if this source is dead... | 61 | virtual void update(const F32 dt); // Return FALSE if this source is dead... |
62 | 62 | ||
63 | virtual void setDead(); | 63 | virtual void setDead(); |
64 | BOOL isDead() const { return mIsDead; } | 64 | BOOL isDead() const { return mIsDead; } |
65 | 65 | void setSuspended( BOOL state ) { mIsSuspended = state; } | |
66 | U32 getType() const { return mType; } | 66 | BOOL isSuspended() const { return mIsSuspended; } |
67 | U32 getType() const { return mType; } | ||
67 | static void updatePart(LLViewerPart &part, const F32 dt); | 68 | static void updatePart(LLViewerPart &part, const F32 dt); |
68 | void setOwnerUUID(const LLUUID& owner_id) { mOwnerUUID = owner_id; } | 69 | void setOwnerUUID(const LLUUID& owner_id) { mOwnerUUID = owner_id; } |
69 | LLUUID getOwnerUUID() const { return mOwnerUUID; } | 70 | LLUUID getOwnerUUID() const { return mOwnerUUID; } |
@@ -77,6 +78,7 @@ public: | |||
77 | protected: | 78 | protected: |
78 | U32 mType; | 79 | U32 mType; |
79 | BOOL mIsDead; | 80 | BOOL mIsDead; |
81 | BOOL mIsSuspended; | ||
80 | F32 mLastUpdateTime; | 82 | F32 mLastUpdateTime; |
81 | F32 mLastPartTime; | 83 | F32 mLastPartTime; |
82 | LLUUID mOwnerUUID; | 84 | LLUUID mOwnerUUID; |