ESO Lua File v100015

ingame/help/keyboard/helpscreentemplate_keyboard.lua

[◄ back to folders ]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
ZO_HelpScreenTemplate_Keyboard = ZO_Object:Subclass()
function ZO_HelpScreenTemplate_Keyboard:New(...)
    local object = ZO_Object.New(self)
    object:Initialize(...)
    return object
end
function ZO_HelpScreenTemplate_Keyboard:Initialize(control, data)
     self.control = control
     control.owner = self
     if data then 
          HELP_CUSTOMER_SUPPORT_KEYBOARD:AddCategory(data)
     end
end