32 lines
885 B
Lua
32 lines
885 B
Lua
|
---@class UGCLayout_BP_C:UAEUserWidget
|
||
|
---@field CanvasPanel_EnemyAlive UCanvasPanel
|
||
|
---@field CanvasPanel_SelfAlive UCanvasPanel
|
||
|
---@field NewButton_0 UNewButton
|
||
|
---@field TextBlock_HP UTextBlock
|
||
|
---@field TextBlock_LeftPlayerCount UTextBlock
|
||
|
---@field TextBlock_LeftTeamScore UTextBlock
|
||
|
---@field TextBlock_MaxHP UTextBlock
|
||
|
---@field TextBlock_RightPlayerCount UTextBlock
|
||
|
---@field TextBlock_RightTeamScore UTextBlock
|
||
|
---@field TextBlock_Round UTextBlock
|
||
|
---@field WidgetSwitcher_AliveState UWidgetSwitcher
|
||
|
---@field WidgetSwitcher_EnemyTextTip UWidgetSwitcher
|
||
|
---@field WidgetSwitcher_SelfTextTip 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;
|