LootLocker Unreal SDK 10.4.0
Game backend SDK for Unreal Engine
Loading...
Searching...
No Matches
LootLockerSessionOptionals.h
Go to the documentation of this file.
1#pragma once
2
3#include "CoreMinimal.h"
4#include "LootLockerSessionOptionals.generated.h"
5
10USTRUCT(BlueprintType)
12{
13 GENERATED_BODY()
14 UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "LootLocker")
18 FString Timezone = "";
22 UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "LootLocker")
23 FString Player_name = "";
24
25 bool IsSet() const
26 {
27 return !Timezone.IsEmpty() || !Player_name.IsEmpty();
28 }
29};
Optional parameters that can be sent when starting a session.
Definition LootLockerSessionOptionals.h:12