5#include "CoreMinimal.h"
6#include "UObject/NoExportTypes.h"
7#include "PPF_Platform.h"
8#include "Pico_DataStore.generated.h"
10DECLARE_LOG_CATEGORY_EXTERN(DataStore, Log, All);
23 TMap<FString, FString> DataStoreMap;
27 TArray<FString> KeyArray;
30 void InitParams(ppfDataStore* InppfDataStoreHandle);
33 UFUNCTION(BlueprintPure, Category =
"Pico Platform|Misc|Data Store")
34 int32 Contains(FString Key);
37 UFUNCTION(BlueprintPure, Category = "Pico Platform|Misc|Data Store")
38 FString GetKey(int32 Index);
41 UFUNCTION(BlueprintPure, Category = "Pico Platform|Misc|Data Store")
45 UFUNCTION(BlueprintPure, Category = "Pico Platform|Misc|Data Store")
46 FString GetValue(FString Key);
UPico_DataStore class.
Definition: Pico_DataStore.h:18