Back to Home

ESO Lua File v101041

ingame/battleground/gamepad/battlegroundmedalinfo_gamepad.lua

[◄ back to folders ]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---------------------
-- Match Info Panel --
----------------------
ZO_BATTLEGROUND_MATCH_INFO_MEDAL_ANCHOR_PADDING_Y_GAMEPAD = 20
ZO_BattlegroundMatchInfo_Gamepad = ZO_BattlegroundMatchInfo_Shared:Subclass()
function ZO_BattlegroundMatchInfo_Gamepad:New(...)
    return ZO_BattlegroundMatchInfo_Shared.New(self, ...)
end
function ZO_BattlegroundMatchInfo_Gamepad:Initialize(...)
    ZO_BattlegroundMatchInfo_Shared.Initialize(self, ...)
    BATTLEGROUND_MATCH_INFO_GAMEPAD_FRAGMENT = self:GetFragment()
    SYSTEMS:RegisterGamepadObject("matchInfo", self)
end
    BATTLEGROUND_MATCH_INFO_GAMEPAD = ZO_BattlegroundMatchInfo_Gamepad:New(...)
end