52 lines
1.6 KiB
Lua
52 lines
1.6 KiB
Lua
|
---@class UGCLayout_BP_C:UAEUserWidget
|
||
|
---@field Border_LeftSideTeam UBorder
|
||
|
---@field Border_RightSideTeam UBorder
|
||
|
---@field CanvasPanel_7 UCanvasPanel
|
||
|
---@field CanvasPanel_LeftSidechampion UCanvasPanel
|
||
|
---@field CanvasPanel_RightSidechampion UCanvasPanel
|
||
|
---@field CanvasPanel_ScoreBoard UCanvasPanel
|
||
|
---@field HorizontalBox_9 UHorizontalBox
|
||
|
---@field HorizontalBox_10 UHorizontalBox
|
||
|
---@field HorizontalBox_EnemyKill UHorizontalBox
|
||
|
---@field HorizontalBox_Kill UHorizontalBox
|
||
|
---@field Image_CD UImage
|
||
|
---@field Image_LeftHead UImage
|
||
|
---@field Image_LeftSide_ScoreBG UImage
|
||
|
---@field Image_LeftSide_ScoreBG2 UImage
|
||
|
---@field Image_LeftSide_SlotBG UImage
|
||
|
---@field Image_LeftSideKillBar UImage
|
||
|
---@field Image_RightHead UImage
|
||
|
---@field Image_RightSide_ScoreBG UImage
|
||
|
---@field Image_RightSide_ScoreBG2 UImage
|
||
|
---@field Image_RightSide_SlotBG UImage
|
||
|
---@field Image_RightSideKillBar UImage
|
||
|
---@field TextBlock_9 UTextBlock
|
||
|
---@field TextBlock_10 UTextBlock
|
||
|
---@field TextBlock_11 UTextBlock
|
||
|
---@field TextBlock_12 UTextBlock
|
||
|
---@field TextBlock_14 UTextBlock
|
||
|
---@field TextBlock_15 UTextBlock
|
||
|
---@field TextBlock_Left UTextBlock
|
||
|
---@field TextBlock_LeftSide_Total_Num UTextBlock
|
||
|
---@field TextBlock_Right UTextBlock
|
||
|
---@field TextBlock_RightSide_Total_Num UTextBlock
|
||
|
---@field WidgetSwitcher_LeftSide_ScoreBG UWidgetSwitcher
|
||
|
---@field WidgetSwitcher_RightSide_ScoreBG UWidgetSwitcher
|
||
|
--Edit Below--
|
||
|
local UGCLayout_BP = { bInitDoOnce = false }
|
||
|
|
||
|
--[==[ Construct
|
||
|
function UGCLayout_BP:Construct()
|
||
|
|
||
|
end
|
||
|
-- Construct ]==]
|
||
|
|
||
|
-- function UGCLayout_BP:Tick(MyGeometry, InDeltaTime)
|
||
|
|
||
|
-- end
|
||
|
|
||
|
-- function UGCLayout_BP:Destruct()
|
||
|
|
||
|
-- end
|
||
|
|
||
|
return UGCLayout_BP
|