Files
Endfield-Data/LuaScripts/UI/Panels/RemoteCommBG/RemoteCommBGCtrl.lua
2025-12-02 20:37:18 +07:00

30 lines
342 B
Lua

local uiCtrl = require_ex('UI/Panels/Base/UICtrl')
local PANEL_ID = PanelId.RemoteCommBG
RemoteCommBGCtrl = HL.Class('RemoteCommBGCtrl', uiCtrl.UICtrl)
RemoteCommBGCtrl.s_messages = HL.StaticField(HL.Table) << {
}
RemoteCommBGCtrl.OnCreate = HL.Override(HL.Any) << function(self, arg)
end
HL.Commit(RemoteCommBGCtrl)