summaryrefslogtreecommitdiff
path: root/indra/newview/scripts/lua/UI.lua
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/scripts/lua/UI.lua')
-rw-r--r--indra/newview/scripts/lua/UI.lua16
1 files changed, 0 insertions, 16 deletions
diff --git a/indra/newview/scripts/lua/UI.lua b/indra/newview/scripts/lua/UI.lua
deleted file mode 100644
index 24f822bbd9..0000000000
--- a/indra/newview/scripts/lua/UI.lua
+++ /dev/null
@@ -1,16 +0,0 @@
--- Engage the UI LLEventAPI
-
-leap = require 'leap'
-
-local UI = {}
-
-function UI.call(func, parameter)
- -- 'call' is fire-and-forget
- leap.request('UI', {op='call', ['function']=func, parameter=parameter})
-end
-
-function UI.getValue(path)
- return leap.request('UI', {op='getValue', path=path})['value']
-end
-
-return UI