mirror of
https://github.com/OTCv8/otclientv8.git
synced 2025-05-01 19:49:20 +02:00
20 lines
317 B
Lua
20 lines
317 B
Lua
local context = G.botContext
|
|
local Panels = context.Panels
|
|
|
|
Panels.Attacking = function(parent)
|
|
context.setupUI([[
|
|
Panel
|
|
id: attacking
|
|
height: 150
|
|
|
|
BotLabel
|
|
anchors.top: parent.top
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
text: Attacking
|
|
|
|
]], parent)
|
|
|
|
end
|
|
|