14 lines
317 B
Lua
14 lines
317 B
Lua
local plugin = {}
|
|
|
|
function plugin.run()
|
|
--berry.config.defineSetting("my plugin", "test setting", "description", "boolean", "1")
|
|
|
|
button = berry.ui.button("Click me!", "success")
|
|
berry.ui.mount(button)
|
|
|
|
berry.ui.onMessage(button, "Pressed", function()
|
|
print("hi")
|
|
end)
|
|
end
|
|
|
|
return plugin |