diff --git a/Source/Engine/Platform/Defines.h b/Source/Engine/Platform/Defines.h index 22ec5b863..dadecf06b 100644 --- a/Source/Engine/Platform/Defines.h +++ b/Source/Engine/Platform/Defines.h @@ -22,6 +22,7 @@ API_ENUM() enum class PlatformType /// /// Running Windows Store App (Universal Windows Platform). /// + API_ENUM(Attributes="EditorDisplay(null, \"UWP\")") UWP = 3, /// @@ -32,6 +33,7 @@ API_ENUM() enum class PlatformType /// /// Running on PlayStation 4. /// + API_ENUM(Attributes="EditorDisplay(null, \"PS4\")") PS4 = 5, /// @@ -52,6 +54,7 @@ API_ENUM() enum class PlatformType /// /// Running on PlayStation 5. /// + API_ENUM(Attributes="EditorDisplay(null, \"PS5\")") PS5 = 9, /// @@ -62,6 +65,7 @@ API_ENUM() enum class PlatformType /// /// Running on iPhone. /// + API_ENUM(Attributes="EditorDisplay(null, \"iOS\")") iOS = 11, };