diff options
| author | Erik Kundiman <erik@megapahit.org> | 2025-06-30 22:33:00 +0800 |
|---|---|---|
| committer | Erik Kundiman <erik@megapahit.org> | 2025-06-30 22:33:00 +0800 |
| commit | 90117b89f6eef8785a1701ed79527f8175c55752 (patch) | |
| tree | 1912571f347756a9e47ae83052d406cf42f3ecf7 /indra/newview/llagent.h | |
| parent | 2ed42e44bd6bc78b93c0a38abc2c073a10263c9b (diff) | |
Minimal @getsitid=<channel_number> implementation
Diffstat (limited to 'indra/newview/llagent.h')
| -rw-r--r-- | indra/newview/llagent.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/newview/llagent.h b/indra/newview/llagent.h index ca8aaaee86..b475782946 100644 --- a/indra/newview/llagent.h +++ b/indra/newview/llagent.h @@ -450,9 +450,12 @@ public: void setAllowedToStand(bool allow) { mAllowedToStand = allow; } bool isAllowedToSit() const { return mAllowedToSit; } void setAllowedToSit(bool allow) { mAllowedToSit = allow; } + const LLUUID& getSitObjectID() const { return mSitObjectID; } + void setSitObjectID(const LLUUID& objectID) { mSitObjectID = objectID; } private: bool mAllowedToStand; bool mAllowedToSit; + LLUUID mSitObjectID; //-------------------------------------------------------------------- // Do Not Disturb |
