Files
LuckyWorld/Source/LuckyWorldV2/Public/Object/ListviewObject.h
martinluckyrobots 144b3e3bce optimization some umg
2025-04-14 19:36:02 +08:00

25 lines
475 B
C++

// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "UObject/NoExportTypes.h"
#include "SharedDef.h"
#include "ListviewObject.generated.h"
/**
*
*/
UCLASS(Blueprintable)
class LUCKYWORLDV2_API UListviewObject : public UObject
{
GENERATED_BODY()
public:
UPROPERTY(EditAnywhere, BlueprintReadWrite)
FGoalsTaskData GoalsTaskData;
UPROPERTY(EditAnywhere, BlueprintReadWrite)
int32 Index;
};