UGCProjects/GZJ/Script/UI/ChildWidgets/WBP_OperationIcon.lua
2025-01-08 22:46:12 +08:00

22 lines
559 B
Lua

---@class WBP_OperationIcon_C:UUserWidget
---@field Image_Icon UImage
---@field TextBlock_Operate UTextBlock
---@field ButtonText FText
---@field StoneIcon FSlateBrush
--Edit Below--
local WBP_OperationIcon = {};
function WBP_OperationIcon:Construct()
WBP_OperationIcon.SuperClass.Construct(self)
self:SetStoneText(self.ButtonText)
end
function WBP_OperationIcon:Destruct()
WBP_OperationIcon.SuperClass.Destruct(self)
end
function WBP_OperationIcon:SetStoneText(InText)
self.TextBlock_Operate:SetText(InText)
end
return WBP_OperationIcon;