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);
27class ONLINESUBSYSTEMPICO_API UPico_DataStore :
public UObject
33 TMap<FString, FString> DataStoreMap;
37 TArray<FString> KeyArray;
40 void InitParams(ppfDataStore* InppfDataStoreHandle);
42 UFUNCTION(BlueprintPure, Category = "Pico Platform|Misc|Data Store")
43 int32 Contains(FString Key);
45 UFUNCTION(BlueprintPure, Category = "Pico Platform|Misc|Data Store")
46 FString GetKey(int32 Index);
48 UFUNCTION(BlueprintPure, Category = "Pico Platform|Misc|Data Store")
51 UFUNCTION(BlueprintPure, Category = "Pico Platform|Misc|Data Store")
52 FString GetValue(FString Key);