mirror of
https://github.com/PHIDIAS0303/ExpCluster.git
synced 2025-12-27 19:45:22 +09:00
17 lines
317 B
Lua
17 lines
317 B
Lua
|
|
local ExpGui = require("modules/exp_gui")
|
|
|
|
local frame = ExpGui.element("test")
|
|
:draw{
|
|
type = "frame",
|
|
caption = "Hello, World",
|
|
}
|
|
|
|
ExpGui.add_left_element(frame, true)
|
|
|
|
ExpGui.create_toolbar_button{
|
|
name = "test-button",
|
|
left_element = frame,
|
|
caption = "Test",
|
|
}
|