Rename plugin to HarmonyLinkUE
This commit is contained in:
parent
8ba9caeb27
commit
9a5194dc3a
26 changed files with 190 additions and 107 deletions
19
Source/HarmonyLinkUE/Public/Enums/DeviceEnum.h
Normal file
19
Source/HarmonyLinkUE/Public/Enums/DeviceEnum.h
Normal file
|
@ -0,0 +1,19 @@
|
|||
// Copyright (C) 2024 Jordon Brooks
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "CoreMinimal.h"
|
||||
#include "DeviceEnum.generated.h"
|
||||
|
||||
/*
|
||||
* Enum representing different operating system platforms.
|
||||
*/
|
||||
UENUM(BlueprintType)
|
||||
enum class EDevice : uint8
|
||||
{
|
||||
DESKTOP UMETA(DisplayName = "Desktop"),
|
||||
LAPTOP UMETA(DisplayName = "Laptop"),
|
||||
HANDHELD UMETA(DisplayName = "Handheld"),
|
||||
|
||||
STEAM_DECK UMETA(DisplayName = "Steam Deck")
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue