From c11ffdaa0ed6d6a07ed2bf271479fd554997a7de Mon Sep 17 00:00:00 2001 From: max_the <96658744+max8447@users.noreply.github.com> Date: Sun, 14 Jan 2024 22:59:01 +0100 Subject: [PATCH] Update FortPlayerController.h --- Project Reboot 3.0/FortPlayerController.h | 51 ++++++++++++++++++++++- 1 file changed, 50 insertions(+), 1 deletion(-) diff --git a/Project Reboot 3.0/FortPlayerController.h b/Project Reboot 3.0/FortPlayerController.h index 9458e0c..bd7599c 100644 --- a/Project Reboot 3.0/FortPlayerController.h +++ b/Project Reboot 3.0/FortPlayerController.h @@ -40,6 +40,55 @@ struct FFortAthenaLoadout } }; +enum class EFortWeaponUpgradeCosts : uint8_t +{ + NotSet = 0, + WoodUncommon = 1, + WoodRare = 2, + WoodVeryRare = 3, + WoodSuperRare = 4, + MetalUncommon = 5, + MetalRare = 6, + MetalVeryRare = 7, + MetalSuperRare = 8, + BrickUncommon = 9, + BrickRare = 10, + BrickVeryRare = 11, + BrickSuperRare = 12, + HorizontalWoodCommon = 13, + HorizontalWoodUncommon = 14, + HorizontalWoodRare = 15, + HorizontalWoodVeryRare = 16, + HorizontalWoodSuperRare = 17, + HorizontalMetalCommon = 18, + HorizontalMetalUncommon = 19, + HorizontalMetalRare = 20, + HorizontalMetalVeryRare = 21, + HorizontalMetalSuperRare = 22, + HorizontalBrickCommon = 23, + HorizontalBrickUncommon = 24, + HorizontalBrickRare = 25, + HorizontalBrickVeryRare = 26, + HorizontalBrickSuperRare = 27, + EFortWeaponUpgradeCosts_MAX = 28, +}; + +enum class EFortWeaponUpgradeDirection : uint8 +{ + NotSet = 0, + Vertical = 1, + Horizontal = 2, + EFortWeaponUpgradeDirection_MAX = 3, +}; + +enum class EInteractionBeingAttempted : uint8 +{ + FirstInteraction = 0, + SecondInteraction = 1, + AllInteraction = 2, + EInteractionBeingAttempted_MAX = 3, +}; + class AFortPlayerController : public APlayerController { public: @@ -169,4 +218,4 @@ public: static auto Class = FindObject("/Script/FortniteGame.FortPlayerController"); return Class; } -}; \ No newline at end of file +};