Rename plugin to HarmonyLinkUE
This commit is contained in:
parent
8ba9caeb27
commit
9a5194dc3a
26 changed files with 190 additions and 107 deletions
18
Source/HarmonyLinkSettings/Public/Enums/Profile.h
Normal file
18
Source/HarmonyLinkSettings/Public/Enums/Profile.h
Normal 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 = 0 UMETA(DisplayName = "NONE"),
|
||||
BATTERY UMETA(DisplayName = "BATTERY"),
|
||||
CHARGING UMETA(DisplayName = "CHARGING"),
|
||||
DOCKED UMETA(DisplayName = "DOCKED"),
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue