parent
422b1439e5
commit
26b49e2e9d
Binary file not shown.
@ -0,0 +1,10 @@
|
|||||||
|
// Fill out your copyright notice in the Description page of Project Settings.
|
||||||
|
|
||||||
|
|
||||||
|
#include "SelectedTrooperSaveGame.h"
|
||||||
|
|
||||||
|
USelectedTrooperSaveGame::USelectedTrooperSaveGame(): Super()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -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 "SelectedTrooperSaveGame.generated.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
UCLASS()
|
||||||
|
class TURNBASEDTUTORIAL_API USelectedTrooperSaveGame : public USaveGame
|
||||||
|
{
|
||||||
|
GENERATED_BODY()
|
||||||
|
|
||||||
|
public:
|
||||||
|
UPROPERTY(EditAnywhere, Category=Basic)
|
||||||
|
TArray<uint8> SelectedTroopers;
|
||||||
|
|
||||||
|
USelectedTrooperSaveGame();
|
||||||
|
};
|
Loading…
Reference in new issue