Working loading, Saving and default config functions

This commit is contained in:
Jordon Brooks 2024-05-15 16:20:05 +01:00
parent 996dd0a232
commit 5c9a3256d6
Signed by: jordon
GPG key ID: DBD9758CD53E786A
6 changed files with 335 additions and 97 deletions

View file

@ -0,0 +1,18 @@
// Copyright (C) 2024 Jordon Brooks
#pragma once
#include "CoreMinimal.h"
#include "Profile.generated.h"
/*
* Enum representing different operating system platforms.
*/
UENUM(BlueprintType)
enum class EProfile : uint8
{
NONE UMETA(DisplayName = "NONE"),
BATTERY UMETA(DisplayName = "BATTERY"),
CHARGING UMETA(DisplayName = "CHARGING"),
DOCKED UMETA(DisplayName = "DOCKED"),
};