---@class WB_AttributeItem_C:UUserWidget ---@field TextBlock_Name UTextBlock ---@field TextBlock_Value UTextBlock --Edit Below-- ---@type WB_AttributeItem_C local WB_AttributeItem = { bInitDoOnce = false; }; --[==[ Construct function WB_AttributeItem:Construct() end -- Construct ]==] function WB_AttributeItem:SetText(InText) self.TextBlock_Name:SetText(InText); self.TextBlock_Value:SetText(0); end function WB_AttributeItem:SetValue(InValue) self.TextBlock_Value:SetText(InValue); end -- function WB_AttributeItem:Tick(MyGeometry, InDeltaTime) -- end -- function WB_AttributeItem:Destruct() -- end return WB_AttributeItem;