Optimize CaptureSetting, GoalTask, etc.

This commit is contained in:
martinluckyrobots 2025-04-02 11:28:05 +08:00
parent 8e1c017515
commit 7b9b0b6057
52 changed files with 26 additions and 0 deletions

Binary file not shown.

View File

@ -0,0 +1,4 @@
// Fill out your copyright notice in the Description page of Project Settings.
#include "SG_CaptureSetting.h"

View File

@ -0,0 +1,22 @@
// 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;
};