diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2024-03-14 11:24:51 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2024-03-14 11:24:51 -0400 |
commit | bac113e30d987d7884c58490e6ea39a1bbd87d05 (patch) | |
tree | 0620f4bab572b1cd38ba8e8db03130b1e65ec1f7 /indra/newview/scripts/lua/LLFloaterAbout.lua | |
parent | e9231a987d64d2ad7e19dee30645409cab0b48e5 (diff) |
Add preliminary Lua viewer API modules, with test scripts.
Diffstat (limited to 'indra/newview/scripts/lua/LLFloaterAbout.lua')
-rw-r--r-- | indra/newview/scripts/lua/LLFloaterAbout.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/indra/newview/scripts/lua/LLFloaterAbout.lua b/indra/newview/scripts/lua/LLFloaterAbout.lua new file mode 100644 index 0000000000..44afee2e5c --- /dev/null +++ b/indra/newview/scripts/lua/LLFloaterAbout.lua @@ -0,0 +1,11 @@ +-- Engage the LLFloaterAbout LLEventAPI + +leap = require 'leap' + +local LLFloaterAbout = {} + +function LLFloaterAbout.getInfo() + return leap.request('LLFloaterAbout', {op='getInfo'}) +end + +return LLFloaterAbout |