17#include "CoreMinimal.h"
18#include "UObject/NoExportTypes.h"
19#include "PPF_Platform.h"
20#include "Pico_DataStore.generated.h"
22DECLARE_LOG_CATEGORY_EXTERN(DataStore, Log, All);
35 TMap<FString, FString> DataStoreMap;
39 TArray<FString> KeyArray;
42 void InitParams(ppfDataStore* InppfDataStoreHandle);
45 UFUNCTION(BlueprintPure, Category =
"Pico Platform|Misc|Data Store")
46 int32 Contains(FString Key);
49 UFUNCTION(BlueprintPure, Category = "Pico Platform|Misc|Data Store")
50 FString GetKey(int32 Index);
53 UFUNCTION(BlueprintPure, Category = "Pico Platform|Misc|Data Store")
57 UFUNCTION(BlueprintPure, Category = "Pico Platform|Misc|Data Store")
58 FString GetValue(FString Key);
UPico_DataStore class.
Definition: Pico_DataStore.h:30