Back to Home

ESO Lua File v101041

ingame/map/keyboard/worldmapkeepsummary_keyboard.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
22
23
24
25
26
27
28
29
30
31
--Keep Summary Window
local MapKeepSummary = ZO_MapKeepSummary_Shared:Subclass()
function MapKeepSummary:New(...)
    local object = ZO_MapKeepSummary_Shared.New(self, ...)
    return object
end
function MapKeepSummary:GetKeepUpgradeObject()
    return WORLD_MAP_KEEP_INFO:GetKeepUpgradeObject()
end
function MapKeepSummary:Initialize(control)
    self.rowLayout = "ZO_WorldMapKeepSummaryRow"
    ZO_MapKeepSummary_Shared.Initialize(self, control)
end
--Global XML
    ZO_Tooltips_ShowTextTooltip(self, TOP, zo_strformat(SI_MAP_KEEP_INFO_ALLIANCE_TOOLTIP_FORMAT, GetAllianceName(self.alliance)))
end
end
    WORLD_MAP_KEEP_SUMMARY = MapKeepSummary:New(self)
    WORLD_MAP_KEEP_INFO:SetFragment("SUMMARY_FRAGMENT", WORLD_MAP_KEEP_SUMMARY:GetFragment())
end