revised api file loading
This commit is contained in:
16
api/lua/wxwidgets.lua
Normal file
16
api/lua/wxwidgets.lua
Normal file
@@ -0,0 +1,16 @@
|
||||
local api = {}
|
||||
for key in pairs(wx) do
|
||||
api[key] = {
|
||||
type = (type(wx[key]) == "function" and "function" or "value"),
|
||||
description = "",
|
||||
returns = "",
|
||||
}
|
||||
end
|
||||
|
||||
return {
|
||||
wx = {
|
||||
type = "lib",
|
||||
description = "WX lib",
|
||||
childs = api
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user