7#include "CoreMinimal.h"
8#include "UObject/NoExportTypes.h"
9#include "PPF_Platform.h"
10#include "Pico_DataStore.generated.h"
12DECLARE_LOG_CATEGORY_EXTERN(DataStore, Log, All);
17class ONLINESUBSYSTEMPICO_API UPico_DataStore :
public UObject
23 TMap<FString, FString> DataStoreMap;
27 TArray<FString> KeyArray;
30 void InitParams(ppfDataStore* InppfDataStoreHandle);
32 UFUNCTION(BlueprintPure, Category = "Pico Platform|Misc|Data Store")
33 int32 Contains(FString Key);
35 UFUNCTION(BlueprintPure, Category = "Pico Platform|Misc|Data Store")
36 FString GetKey(int32 Index);
38 UFUNCTION(BlueprintPure, Category = "Pico Platform|Misc|Data Store")
41 UFUNCTION(BlueprintPure, Category = "Pico Platform|Misc|Data Store")
42 FString GetValue(FString Key);