martinluckyrobots 7b9b0b6057 Optimize CaptureSetting, GoalTask, etc.
2025-04-02 11:28:05 +08:00

23 lines
418 B
C++

// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "GameFramework/SaveGame.h"
#include "SharedDef.h"
#include "SG_CaptureSetting.generated.h"
/**
*
*/
UCLASS()
class LUCKYROBOTS_API USG_CaptureSetting : public USaveGame
{
GENERATED_BODY()
public:
UPROPERTY(EditAnywhere, BlueprintReadWrite)
FCaptureSettingsData CaptureSetting;
};