Compare commits

...

3 Commits

Author SHA1 Message Date
42a78f9c9a Merge pull request 'martin' (#9) from martin into main
Reviewed-on: #9
2025-04-02 04:04:20 +00:00
martinluckyrobots
1ee9f9f209 Merge branch 'main' of https://luckyrobots.com/luckyrobots/LuckyRobotsUnreal into martin2 2025-04-02 12:02:16 +08:00
martinluckyrobots
7b9b0b6057 Optimize CaptureSetting, GoalTask, etc. 2025-04-02 11:28:05 +08:00
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;
};