diff options
author | Mnikolenko Productengine <mnikolenko@productengine.com> | 2024-06-25 14:51:53 +0300 |
---|---|---|
committer | Mnikolenko Productengine <mnikolenko@productengine.com> | 2024-06-25 14:51:53 +0300 |
commit | eb6d24e531aa5faa251b7aaf8b13c62f06708696 (patch) | |
tree | 2b6cbd003520a44b46c9c82348fec63d3fe5f768 /indra/newview/llappearancelistener.h | |
parent | 61fad5fd04f90542b2842dec86a6f74a4f801de7 (diff) |
Add wear/detach actions to Appearance listener; update example script
Diffstat (limited to 'indra/newview/llappearancelistener.h')
-rw-r--r-- | indra/newview/llappearancelistener.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/newview/llappearancelistener.h b/indra/newview/llappearancelistener.h index 8448b2ede9..00553c072f 100644 --- a/indra/newview/llappearancelistener.h +++ b/indra/newview/llappearancelistener.h @@ -37,7 +37,10 @@ public: private: void wearOutfit(LLSD const &data); void wearOutfitByName(LLSD const &data); + void wearItem(LLSD const &data); + void detachItem(LLSD const &data); void getOutfitsList(LLSD const &data); + void getOutfitItems(LLSD const &data); }; #endif // LL_LLAPPEARANCELISTENER_H |