23 lines
506 B
Lua
23 lines
506 B
Lua
|
---@class WBP_UnpackingInfo_C:UUserWidget
|
||
|
---@field TextBlock_Info UTextBlock
|
||
|
---@field WBP_WidgetHeader UWBP_WidgetHeader_C
|
||
|
--Edit Below--
|
||
|
local WBP_UnpackingInfo = { bInitDoOnce = false; };
|
||
|
|
||
|
function WBP_UnpackingInfo:Construct()
|
||
|
self.WBP_WidgetHeader:Construct()
|
||
|
end
|
||
|
|
||
|
-- function WBP_UnpackingInfo:Tick(MyGeometry, InDeltaTime)
|
||
|
|
||
|
-- end
|
||
|
|
||
|
-- function WBP_UnpackingInfo:Destruct()
|
||
|
|
||
|
-- end
|
||
|
|
||
|
function WBP_UnpackingInfo:SetInfoText(InText)
|
||
|
self.TextBlock_Info:SetText(InText)
|
||
|
end
|
||
|
|
||
|
return WBP_UnpackingInfo;
|