22 lines
559 B
Lua
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; |