added extension skeleton
This commit is contained in:
parent
2ff660b534
commit
c50edf4f68
1 changed files with 24 additions and 0 deletions
24
src/ext/skeleton/main.lua
Normal file
24
src/ext/skeleton/main.lua
Normal file
|
|
@ -0,0 +1,24 @@
|
||||||
|
local api = ...
|
||||||
|
|
||||||
|
return {
|
||||||
|
name = "skeleton",
|
||||||
|
enabled = true,
|
||||||
|
|
||||||
|
init = function() end,
|
||||||
|
|
||||||
|
update = function()
|
||||||
|
local iui = api.iui
|
||||||
|
local backend = api.backend
|
||||||
|
local mainWindow = api.mainWindow
|
||||||
|
end,
|
||||||
|
|
||||||
|
load = function() end,
|
||||||
|
|
||||||
|
draw = function(pass)
|
||||||
|
if api.iui.idiom == "vr" then
|
||||||
|
|
||||||
|
else
|
||||||
|
|
||||||
|
end
|
||||||
|
end
|
||||||
|
}
|
||||||
Loading…
Add table
Reference in a new issue