├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── BeatShot.Target.cs ├── BeatShot ├── BSGameplayTags.cpp ├── BSGameplayTags.h ├── BeatShot.Build.cs ├── BeatShot.cpp ├── BeatShot.h ├── Private │ ├── AbilitySystem │ │ ├── Abilities │ │ │ ├── BSGA_AimBot.cpp │ │ │ ├── BSGA_FireGun.cpp │ │ │ ├── BSGA_TrackGun.cpp │ │ │ └── BSGameplayAbility.cpp │ │ ├── BSAbilitySystemComponent.cpp │ │ ├── ExecutionCalculations │ │ │ ├── BSDamageExecCalc.cpp │ │ │ └── BSHealthResetExecCalc.cpp │ │ ├── Globals │ │ │ ├── BSAbilitySet.cpp │ │ │ ├── BSAbilitySystemGlobals.cpp │ │ │ └── BSAttributeSetBase.cpp │ │ └── Tasks │ │ │ ├── BSAT_AimToTarget.cpp │ │ │ ├── BSAT_MontageEventWait.cpp │ │ │ ├── BSAT_PerformWeaponTraceSingle.cpp │ │ │ └── BSAT_TickTrace.cpp │ ├── Animation │ │ ├── BSAnimInstance.cpp │ │ ├── BSAnimationSet.cpp │ │ └── Notifies │ │ │ └── AnimNotify_PlayFootstepSound.cpp │ ├── Audio │ │ ├── BSMovementSoundInterface.cpp │ │ ├── BSMovementSounds.cpp │ │ └── WeaponAudioFunctions.cpp │ ├── BSGameInstance.cpp │ ├── BSGameMode.cpp │ ├── Character │ │ ├── BSCharacter.cpp │ │ ├── BSCharacterBase.cpp │ │ ├── BSCharacterMovementComponent.cpp │ │ ├── BSHealthComponent.cpp │ │ └── BSRecoilComponent.cpp │ ├── Equipment │ │ ├── BSEquipmentActor.cpp │ │ ├── BSEquipmentDefinition.cpp │ │ ├── BSEquipmentInstance.cpp │ │ ├── BSEquipmentManagerComponent.cpp │ │ ├── BSGun.cpp │ │ └── BSKnife.cpp │ ├── FloatingTextActor.cpp │ ├── Input │ │ ├── BSInputComponent.cpp │ │ └── BSInputConfig.cpp │ ├── Inventory │ │ ├── BSInventoryItemDefinition.cpp │ │ ├── BSInventoryItemInstance.cpp │ │ ├── BSInventoryManagerComponent.cpp │ │ └── Fragments │ │ │ ├── EquippableFragment.cpp │ │ │ └── StatFragment.cpp │ ├── MainMenuGameMode.cpp │ ├── Player │ │ ├── BSCheatManager.cpp │ │ ├── BSLocalPlayer.cpp │ │ ├── BSPlayerController.cpp │ │ └── BSPlayerState.cpp │ ├── RangeActors │ │ ├── Moon.cpp │ │ ├── MovablePlatform.cpp │ │ ├── RangeLevelScriptActor.cpp │ │ ├── SpawnAreaSpotLight.cpp │ │ ├── TimeOfDayManager.cpp │ │ └── WallMenu.cpp │ ├── System │ │ ├── BSAssetManager.cpp │ │ ├── GameplayTagStack.cpp │ │ └── SteamManager.cpp │ ├── Target │ │ ├── ReinforcementLearningComponent.cpp │ │ ├── SpawnArea.cpp │ │ ├── SpawnAreaManagerComponent.cpp │ │ ├── Target.cpp │ │ ├── TargetManager.cpp │ │ ├── TargetManagerPreview.cpp │ │ └── TargetPreview.cpp │ └── Visualizers │ │ ├── BeamVisualizer.cpp │ │ ├── SimpleBeamLight.cpp │ │ ├── StaticCubeVisualizer.cpp │ │ ├── VisualizerBase.cpp │ │ └── VisualizerManager.cpp └── Public │ ├── AbilitySystem │ ├── Abilities │ │ ├── BSGA_AimBot.h │ │ ├── BSGA_FireGun.h │ │ ├── BSGA_TrackGun.h │ │ └── BSGameplayAbility.h │ ├── BSAbilitySystemComponent.h │ ├── ExecutionCalculations │ │ ├── BSDamageExecCalc.h │ │ └── BSHealthResetExecCalc.h │ ├── Globals │ │ ├── BSAbilitySet.h │ │ ├── BSAbilitySystemGlobals.h │ │ └── BSAttributeSetBase.h │ └── Tasks │ │ ├── BSAT_AimToTarget.h │ │ ├── BSAT_MontageEventWait.h │ │ ├── BSAT_PerformWeaponTraceSingle.h │ │ └── BSAT_TickTrace.h │ ├── Animation │ ├── BSAnimInstance.h │ ├── BSAnimationSet.h │ └── Notifies │ │ └── AnimNotify_PlayFootstepSound.h │ ├── Audio │ ├── BSMovementSoundInterface.h │ ├── BSMovementSounds.h │ └── WeaponAudioFunctions.h │ ├── BSGameInstance.h │ ├── BSGameMode.h │ ├── Character │ ├── BSCharacter.h │ ├── BSCharacterBase.h │ ├── BSCharacterMovementComponent.h │ ├── BSHealthComponent.h │ └── BSRecoilComponent.h │ ├── Equipment │ ├── BSEquipmentActor.h │ ├── BSEquipmentDefinition.h │ ├── BSEquipmentInstance.h │ ├── BSEquipmentManagerComponent.h │ ├── BSGun.h │ └── BSKnife.h │ ├── FloatingTextActor.h │ ├── Input │ ├── BSInputComponent.h │ └── BSInputConfig.h │ ├── Inventory │ ├── BSInventoryItemDefinition.h │ ├── BSInventoryItemInstance.h │ ├── BSInventoryManagerComponent.h │ └── Fragments │ │ ├── EquippableFragment.h │ │ └── StatFragment.h │ ├── MainMenuGameMode.h │ ├── Physics │ └── BSCollisionChannels.h │ ├── Player │ ├── BSCheatManager.h │ ├── BSLocalPlayer.h │ ├── BSPlayerController.h │ └── BSPlayerState.h │ ├── RangeActors │ ├── Moon.h │ ├── MovablePlatform.h │ ├── RangeLevelScriptActor.h │ ├── SpawnAreaSpotLight.h │ ├── TimeOfDayManager.h │ └── WallMenu.h │ ├── System │ ├── BSAssetManager.h │ ├── GameplayTagStack.h │ └── SteamManager.h │ ├── Target │ ├── MatrixFunctions.h │ ├── ReinforcementLearningComponent.h │ ├── SpawnArea.h │ ├── SpawnAreaManagerComponent.h │ ├── Target.h │ ├── TargetCommon.h │ ├── TargetManager.h │ ├── TargetManagerPreview.h │ └── TargetPreview.h │ └── Visualizers │ ├── BSVisualizerDefinition.h │ ├── BeamVisualizer.h │ ├── BeamVisualizerDefinition.h │ ├── CubeVisualizerDefinition.h │ ├── SimpleBeamLight.h │ ├── StaticCubeVisualizer.h │ ├── VisualizerBase.h │ └── VisualizerManager.h ├── BeatShotEditor.Target.cs ├── BeatShotGlobal ├── BeatShotGlobal.Build.cs ├── BeatShotGlobal.cpp ├── BeatShotGlobal.h ├── Private │ ├── BSGameModeConfig │ │ ├── BSConfig.cpp │ │ ├── BSGameModeDataAsset.cpp │ │ └── BSGameModeValidator.cpp │ ├── BSGameModeInterface.cpp │ ├── BSGameUserSettings.cpp │ ├── BSPlayerScoreInterface.cpp │ ├── BSPlayerSettingsInterface.cpp │ ├── HttpRequestInterface.cpp │ ├── Mappings │ │ ├── BSGameModeEnumTagMap.cpp │ │ ├── EnumStringMap.cpp │ │ ├── EnumTagMap.cpp │ │ ├── GameModeCategoryTagMap.cpp │ │ └── VideoSettingEnumStringMap.cpp │ ├── SaveGames │ │ ├── SaveGameCustomGameMode.cpp │ │ ├── SaveGamePlayerScore.cpp │ │ └── SaveGamePlayerSettings.cpp │ └── Utilities │ │ └── SaveLoadCommon.cpp └── Public │ ├── BSConstants.h │ ├── BSGameModeConfig │ ├── AIConfig.h │ ├── AudioConfig.h │ ├── BSConfig.h │ ├── BSGameModeDataAsset.h │ ├── BSGameModeValidator.h │ ├── DefiningConfig.h │ ├── DynamicConfig.h │ ├── GridConfig.h │ └── TargetConfig.h │ ├── BSGameModeInterface.h │ ├── BSGameUserSettings.h │ ├── BSPlayerScoreInterface.h │ ├── BSPlayerSettingsInterface.h │ ├── DeveloperSettings │ ├── BSAudioSettings.h │ └── BSLoadingScreenSettings.h │ ├── HttpRequestInterface.h │ ├── Mappings │ ├── BSGameModeEnumTagMap.h │ ├── EnumStringMap.h │ ├── EnumTagMap.h │ ├── GameModeCategoryTagMap.h │ └── VideoSettingEnumStringMap.h │ ├── SaveGames │ ├── SaveGameCustomGameMode.h │ ├── SaveGamePlayerScore.h │ └── SaveGamePlayerSettings.h │ └── Utilities │ ├── BSCommon.h │ ├── BSSettingTypes.h │ ├── GameModeTransitionState.h │ └── SaveLoadCommon.h ├── BeatShotTesting ├── AutomationTests │ ├── TestBase │ │ ├── TargetManagerTestBase.cpp │ │ ├── TargetManagerTestBase.h │ │ ├── TargetManagerTestWithWorld.cpp │ │ └── TargetManagerTestWithWorld.h │ └── Tests │ │ ├── TargetCollisionTest.cpp │ │ └── TargetManagerInitTest.cpp ├── BeatShotTesting.Build.cs ├── BeatShotTesting.cpp └── FunctionalTests │ ├── BeatShotGameModeFunctionalTest.cpp │ └── BeatShotGameModeFunctionalTest.h ├── README.md └── UserInterface ├── Private ├── GameModes │ ├── BoxBoundsWidget.cpp │ ├── CreatorViewWidget.cpp │ ├── CustomGameModeActivationWidget.cpp │ ├── CustomGameModeCategoryWidget.cpp │ ├── CustomGameModeConditionsAndResponsesWidget.cpp │ ├── CustomGameModeGeneralWidget.cpp │ ├── CustomGameModeMovementWidget.cpp │ ├── CustomGameModePreviewWidget.cpp │ ├── CustomGameModeSpawnAreaWidget.cpp │ ├── CustomGameModeSpawningWidget.cpp │ ├── CustomGameModeStartWidget.cpp │ ├── CustomGameModeTargetSizingWidget.cpp │ ├── CustomGameModeWidget.cpp │ ├── PropertyViewWidget.cpp │ └── TargetWidget.cpp ├── MenuOptions │ ├── BandChannelWidget.cpp │ ├── BandThresholdWidget.cpp │ ├── CheckBoxWidget.cpp │ ├── ColorSelectWidget.cpp │ ├── ComboBoxWidget.cpp │ ├── DefaultGameModeSelectWidget.cpp │ ├── DualRangeInputWidget.cpp │ ├── MenuOptionWidget.cpp │ ├── ScalabilitySettingWidget.cpp │ ├── SingleRangeInputWidget.cpp │ ├── TextInputWidget.cpp │ └── ToggleableSingleRangeInputWidget.cpp ├── Menus │ ├── FAQWidget.cpp │ ├── GameModesMenuWidget.cpp │ ├── MainMenuWidget.cpp │ ├── PauseMenuWidget.cpp │ ├── PostGameMenuWidget.cpp │ ├── ScoreBrowserWidget.cpp │ └── SettingsMenuWidget.cpp ├── Overlays │ ├── AudioSelectWidget.cpp │ ├── CombatTextWidget.cpp │ ├── CountdownWidget.cpp │ ├── CrossHairWidget.cpp │ ├── FPSCounterWidget.cpp │ ├── FeedbackWidget.cpp │ ├── GameModeSharingWidget.cpp │ ├── HitTimingWidget.cpp │ ├── LoginWidget.cpp │ ├── PlayerHUD.cpp │ ├── PopupMessageWidget.cpp │ ├── QTableWidget.cpp │ └── QuitMenuWidget.cpp ├── Settings │ ├── AudioAnalyzerSettingsWidget.cpp │ ├── CrossHairSettingsWidget.cpp │ ├── GameSettingsWidget.cpp │ ├── InputSettingsWidget.cpp │ └── VideoAndSoundSettingsWidget.cpp ├── Styles │ ├── CarouselNavButtonStyle.cpp │ └── LoadingScreenStyle.cpp ├── Transitions │ ├── LoadingScreenWidget.cpp │ └── ScreenFadeWidget.cpp └── Utilities │ ├── BSCarouselNavBar.cpp │ ├── BSHorizontalBox.cpp │ ├── BSSettingCategoryWidget.cpp │ ├── BSVerticalBox.cpp │ ├── BSWidgetInterface.cpp │ ├── Buttons │ ├── BSButton.cpp │ ├── ButtonNotificationWidget.cpp │ ├── MenuButton.cpp │ ├── NotificationButtonCombo.cpp │ └── ScalabilitySettingButton.cpp │ ├── ComboBox │ ├── BSComboBoxEntry.cpp │ ├── BSComboBoxString.cpp │ └── BSTaggedComboBoxEntry.cpp │ ├── GameModeCategoryTagWidget.cpp │ ├── HyperlinkTextBlockDecorator.cpp │ ├── InputMappingWidget.cpp │ ├── SavedTextWidget.cpp │ ├── TooltipData.cpp │ ├── TooltipIcon.cpp │ ├── TooltipWidget.cpp │ └── WebBrowserWidget.cpp ├── Public ├── GameModes │ ├── BoxBoundsWidget.h │ ├── CreatorViewWidget.h │ ├── CustomGameModeActivationWidget.h │ ├── CustomGameModeCategoryWidget.h │ ├── CustomGameModeConditionsAndResponsesWidget.h │ ├── CustomGameModeGeneralWidget.h │ ├── CustomGameModeMovementWidget.h │ ├── CustomGameModePreviewWidget.h │ ├── CustomGameModeSpawnAreaWidget.h │ ├── CustomGameModeSpawningWidget.h │ ├── CustomGameModeStartWidget.h │ ├── CustomGameModeTargetSizingWidget.h │ ├── CustomGameModeWidget.h │ ├── PropertyViewWidget.h │ └── TargetWidget.h ├── MenuOptions │ ├── BandChannelWidget.h │ ├── BandThresholdWidget.h │ ├── CheckBoxWidget.h │ ├── ColorSelectWidget.h │ ├── ComboBoxWidget.h │ ├── DefaultGameModeSelectWidget.h │ ├── DualRangeInputWidget.h │ ├── MenuOptionWidget.h │ ├── ScalabilitySettingWidget.h │ ├── SingleRangeInputWidget.h │ ├── TextInputWidget.h │ └── ToggleableSingleRangeInputWidget.h ├── Menus │ ├── FAQWidget.h │ ├── GameModeMenuWidget.h │ ├── MainMenuWidget.h │ ├── PauseMenuWidget.h │ ├── PostGameMenuWidget.h │ ├── ScoreBrowserWidget.h │ └── SettingsMenuWidget.h ├── Overlays │ ├── AudioSelectWidget.h │ ├── CombatTextWidget.h │ ├── CountdownWidget.h │ ├── CrossHairWidget.h │ ├── FeedbackWidget.h │ ├── FrameCounterWidget.h │ ├── GameModeSharingWidget.h │ ├── HitTimingWidget.h │ ├── LoginWidget.h │ ├── PlayerHUD.h │ ├── PopupMessageWidget.h │ ├── QTableWidget.h │ └── QuitMenuWidget.h ├── Settings │ ├── AudioAnalyzerSettingsWidget.h │ ├── CrossHairSettingsWidget.h │ ├── GameSettingsWidget.h │ ├── InputSettingsWidget.h │ └── VideoAndSoundSettingsWidget.h ├── Slate │ ├── SBSComboBox.h │ ├── SBSListView.h │ ├── SBSRichTextHyperlink.h │ ├── SBSTableRow.h │ └── SLoadingScreenWidget.h ├── Styles │ ├── CarouselNavButtonStyle.h │ ├── LoadingScreenStyle.h │ ├── MenuOptionStyle.h │ ├── MenuStyle.h │ ├── OverlayStyle.h │ └── SubmenuStyle.h ├── Transitions │ ├── LoadingScreenWidget.h │ └── ScreenFadeWidget.h └── Utilities │ ├── BSCarouselNavBar.h │ ├── BSHorizontalBox.h │ ├── BSSettingCategoryWidget.h │ ├── BSVerticalBox.h │ ├── BSWidgetInterface.h │ ├── Buttons │ ├── BSButton.h │ ├── ButtonNotificationWidget.h │ ├── MenuButton.h │ ├── NotificationButtonCombo.h │ └── ScalabilitySettingButton.h │ ├── ComboBox │ ├── BSComboBoxEntry.h │ ├── BSComboBoxString.h │ └── BSTaggedComboBoxEntry.h │ ├── GameModeCategoryTagWidget.h │ ├── HyperlinkTextBlockDecorator.h │ ├── InputMappingWidget.h │ ├── SavedTextWidget.h │ ├── TooltipData.h │ ├── TooltipIcon.h │ ├── TooltipWidget.h │ └── WebBrowserWidget.h ├── UserInterface.Build.cs └── UserInterface.cpp /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/.gitignore -------------------------------------------------------------------------------- /BeatShot.Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot.Target.cs -------------------------------------------------------------------------------- /BeatShot/BSGameplayTags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/BSGameplayTags.cpp -------------------------------------------------------------------------------- /BeatShot/BSGameplayTags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/BSGameplayTags.h -------------------------------------------------------------------------------- /BeatShot/BeatShot.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/BeatShot.Build.cs -------------------------------------------------------------------------------- /BeatShot/BeatShot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/BeatShot.cpp -------------------------------------------------------------------------------- /BeatShot/BeatShot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/BeatShot.h -------------------------------------------------------------------------------- /BeatShot/Private/AbilitySystem/Abilities/BSGA_AimBot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/AbilitySystem/Abilities/BSGA_AimBot.cpp -------------------------------------------------------------------------------- /BeatShot/Private/AbilitySystem/Abilities/BSGA_FireGun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/AbilitySystem/Abilities/BSGA_FireGun.cpp -------------------------------------------------------------------------------- /BeatShot/Private/AbilitySystem/Abilities/BSGA_TrackGun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/AbilitySystem/Abilities/BSGA_TrackGun.cpp -------------------------------------------------------------------------------- /BeatShot/Private/AbilitySystem/Abilities/BSGameplayAbility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/AbilitySystem/Abilities/BSGameplayAbility.cpp -------------------------------------------------------------------------------- /BeatShot/Private/AbilitySystem/BSAbilitySystemComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/AbilitySystem/BSAbilitySystemComponent.cpp -------------------------------------------------------------------------------- /BeatShot/Private/AbilitySystem/ExecutionCalculations/BSDamageExecCalc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/AbilitySystem/ExecutionCalculations/BSDamageExecCalc.cpp -------------------------------------------------------------------------------- /BeatShot/Private/AbilitySystem/ExecutionCalculations/BSHealthResetExecCalc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/AbilitySystem/ExecutionCalculations/BSHealthResetExecCalc.cpp -------------------------------------------------------------------------------- /BeatShot/Private/AbilitySystem/Globals/BSAbilitySet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/AbilitySystem/Globals/BSAbilitySet.cpp -------------------------------------------------------------------------------- /BeatShot/Private/AbilitySystem/Globals/BSAbilitySystemGlobals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/AbilitySystem/Globals/BSAbilitySystemGlobals.cpp -------------------------------------------------------------------------------- /BeatShot/Private/AbilitySystem/Globals/BSAttributeSetBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/AbilitySystem/Globals/BSAttributeSetBase.cpp -------------------------------------------------------------------------------- /BeatShot/Private/AbilitySystem/Tasks/BSAT_AimToTarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/AbilitySystem/Tasks/BSAT_AimToTarget.cpp -------------------------------------------------------------------------------- /BeatShot/Private/AbilitySystem/Tasks/BSAT_MontageEventWait.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/AbilitySystem/Tasks/BSAT_MontageEventWait.cpp -------------------------------------------------------------------------------- /BeatShot/Private/AbilitySystem/Tasks/BSAT_PerformWeaponTraceSingle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/AbilitySystem/Tasks/BSAT_PerformWeaponTraceSingle.cpp -------------------------------------------------------------------------------- /BeatShot/Private/AbilitySystem/Tasks/BSAT_TickTrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/AbilitySystem/Tasks/BSAT_TickTrace.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Animation/BSAnimInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Animation/BSAnimInstance.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Animation/BSAnimationSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Animation/BSAnimationSet.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Animation/Notifies/AnimNotify_PlayFootstepSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Animation/Notifies/AnimNotify_PlayFootstepSound.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Audio/BSMovementSoundInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Audio/BSMovementSoundInterface.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Audio/BSMovementSounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Audio/BSMovementSounds.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Audio/WeaponAudioFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Audio/WeaponAudioFunctions.cpp -------------------------------------------------------------------------------- /BeatShot/Private/BSGameInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/BSGameInstance.cpp -------------------------------------------------------------------------------- /BeatShot/Private/BSGameMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/BSGameMode.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Character/BSCharacter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Character/BSCharacter.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Character/BSCharacterBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Character/BSCharacterBase.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Character/BSCharacterMovementComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Character/BSCharacterMovementComponent.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Character/BSHealthComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Character/BSHealthComponent.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Character/BSRecoilComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Character/BSRecoilComponent.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Equipment/BSEquipmentActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Equipment/BSEquipmentActor.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Equipment/BSEquipmentDefinition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Equipment/BSEquipmentDefinition.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Equipment/BSEquipmentInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Equipment/BSEquipmentInstance.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Equipment/BSEquipmentManagerComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Equipment/BSEquipmentManagerComponent.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Equipment/BSGun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Equipment/BSGun.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Equipment/BSKnife.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Equipment/BSKnife.cpp -------------------------------------------------------------------------------- /BeatShot/Private/FloatingTextActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/FloatingTextActor.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Input/BSInputComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Input/BSInputComponent.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Input/BSInputConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Input/BSInputConfig.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Inventory/BSInventoryItemDefinition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Inventory/BSInventoryItemDefinition.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Inventory/BSInventoryItemInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Inventory/BSInventoryItemInstance.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Inventory/BSInventoryManagerComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Inventory/BSInventoryManagerComponent.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Inventory/Fragments/EquippableFragment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Inventory/Fragments/EquippableFragment.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Inventory/Fragments/StatFragment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Inventory/Fragments/StatFragment.cpp -------------------------------------------------------------------------------- /BeatShot/Private/MainMenuGameMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/MainMenuGameMode.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Player/BSCheatManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Player/BSCheatManager.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Player/BSLocalPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Player/BSLocalPlayer.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Player/BSPlayerController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Player/BSPlayerController.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Player/BSPlayerState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Player/BSPlayerState.cpp -------------------------------------------------------------------------------- /BeatShot/Private/RangeActors/Moon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/RangeActors/Moon.cpp -------------------------------------------------------------------------------- /BeatShot/Private/RangeActors/MovablePlatform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/RangeActors/MovablePlatform.cpp -------------------------------------------------------------------------------- /BeatShot/Private/RangeActors/RangeLevelScriptActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/RangeActors/RangeLevelScriptActor.cpp -------------------------------------------------------------------------------- /BeatShot/Private/RangeActors/SpawnAreaSpotLight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/RangeActors/SpawnAreaSpotLight.cpp -------------------------------------------------------------------------------- /BeatShot/Private/RangeActors/TimeOfDayManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/RangeActors/TimeOfDayManager.cpp -------------------------------------------------------------------------------- /BeatShot/Private/RangeActors/WallMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/RangeActors/WallMenu.cpp -------------------------------------------------------------------------------- /BeatShot/Private/System/BSAssetManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/System/BSAssetManager.cpp -------------------------------------------------------------------------------- /BeatShot/Private/System/GameplayTagStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/System/GameplayTagStack.cpp -------------------------------------------------------------------------------- /BeatShot/Private/System/SteamManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/System/SteamManager.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Target/ReinforcementLearningComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Target/ReinforcementLearningComponent.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Target/SpawnArea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Target/SpawnArea.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Target/SpawnAreaManagerComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Target/SpawnAreaManagerComponent.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Target/Target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Target/Target.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Target/TargetManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Target/TargetManager.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Target/TargetManagerPreview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Target/TargetManagerPreview.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Target/TargetPreview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Target/TargetPreview.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Visualizers/BeamVisualizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Visualizers/BeamVisualizer.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Visualizers/SimpleBeamLight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Visualizers/SimpleBeamLight.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Visualizers/StaticCubeVisualizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Visualizers/StaticCubeVisualizer.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Visualizers/VisualizerBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Visualizers/VisualizerBase.cpp -------------------------------------------------------------------------------- /BeatShot/Private/Visualizers/VisualizerManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Private/Visualizers/VisualizerManager.cpp -------------------------------------------------------------------------------- /BeatShot/Public/AbilitySystem/Abilities/BSGA_AimBot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/AbilitySystem/Abilities/BSGA_AimBot.h -------------------------------------------------------------------------------- /BeatShot/Public/AbilitySystem/Abilities/BSGA_FireGun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/AbilitySystem/Abilities/BSGA_FireGun.h -------------------------------------------------------------------------------- /BeatShot/Public/AbilitySystem/Abilities/BSGA_TrackGun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/AbilitySystem/Abilities/BSGA_TrackGun.h -------------------------------------------------------------------------------- /BeatShot/Public/AbilitySystem/Abilities/BSGameplayAbility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/AbilitySystem/Abilities/BSGameplayAbility.h -------------------------------------------------------------------------------- /BeatShot/Public/AbilitySystem/BSAbilitySystemComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/AbilitySystem/BSAbilitySystemComponent.h -------------------------------------------------------------------------------- /BeatShot/Public/AbilitySystem/ExecutionCalculations/BSDamageExecCalc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/AbilitySystem/ExecutionCalculations/BSDamageExecCalc.h -------------------------------------------------------------------------------- /BeatShot/Public/AbilitySystem/ExecutionCalculations/BSHealthResetExecCalc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/AbilitySystem/ExecutionCalculations/BSHealthResetExecCalc.h -------------------------------------------------------------------------------- /BeatShot/Public/AbilitySystem/Globals/BSAbilitySet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/AbilitySystem/Globals/BSAbilitySet.h -------------------------------------------------------------------------------- /BeatShot/Public/AbilitySystem/Globals/BSAbilitySystemGlobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/AbilitySystem/Globals/BSAbilitySystemGlobals.h -------------------------------------------------------------------------------- /BeatShot/Public/AbilitySystem/Globals/BSAttributeSetBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/AbilitySystem/Globals/BSAttributeSetBase.h -------------------------------------------------------------------------------- /BeatShot/Public/AbilitySystem/Tasks/BSAT_AimToTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/AbilitySystem/Tasks/BSAT_AimToTarget.h -------------------------------------------------------------------------------- /BeatShot/Public/AbilitySystem/Tasks/BSAT_MontageEventWait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/AbilitySystem/Tasks/BSAT_MontageEventWait.h -------------------------------------------------------------------------------- /BeatShot/Public/AbilitySystem/Tasks/BSAT_PerformWeaponTraceSingle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/AbilitySystem/Tasks/BSAT_PerformWeaponTraceSingle.h -------------------------------------------------------------------------------- /BeatShot/Public/AbilitySystem/Tasks/BSAT_TickTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/AbilitySystem/Tasks/BSAT_TickTrace.h -------------------------------------------------------------------------------- /BeatShot/Public/Animation/BSAnimInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Animation/BSAnimInstance.h -------------------------------------------------------------------------------- /BeatShot/Public/Animation/BSAnimationSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Animation/BSAnimationSet.h -------------------------------------------------------------------------------- /BeatShot/Public/Animation/Notifies/AnimNotify_PlayFootstepSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Animation/Notifies/AnimNotify_PlayFootstepSound.h -------------------------------------------------------------------------------- /BeatShot/Public/Audio/BSMovementSoundInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Audio/BSMovementSoundInterface.h -------------------------------------------------------------------------------- /BeatShot/Public/Audio/BSMovementSounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Audio/BSMovementSounds.h -------------------------------------------------------------------------------- /BeatShot/Public/Audio/WeaponAudioFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Audio/WeaponAudioFunctions.h -------------------------------------------------------------------------------- /BeatShot/Public/BSGameInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/BSGameInstance.h -------------------------------------------------------------------------------- /BeatShot/Public/BSGameMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/BSGameMode.h -------------------------------------------------------------------------------- /BeatShot/Public/Character/BSCharacter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Character/BSCharacter.h -------------------------------------------------------------------------------- /BeatShot/Public/Character/BSCharacterBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Character/BSCharacterBase.h -------------------------------------------------------------------------------- /BeatShot/Public/Character/BSCharacterMovementComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Character/BSCharacterMovementComponent.h -------------------------------------------------------------------------------- /BeatShot/Public/Character/BSHealthComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Character/BSHealthComponent.h -------------------------------------------------------------------------------- /BeatShot/Public/Character/BSRecoilComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Character/BSRecoilComponent.h -------------------------------------------------------------------------------- /BeatShot/Public/Equipment/BSEquipmentActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Equipment/BSEquipmentActor.h -------------------------------------------------------------------------------- /BeatShot/Public/Equipment/BSEquipmentDefinition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Equipment/BSEquipmentDefinition.h -------------------------------------------------------------------------------- /BeatShot/Public/Equipment/BSEquipmentInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Equipment/BSEquipmentInstance.h -------------------------------------------------------------------------------- /BeatShot/Public/Equipment/BSEquipmentManagerComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Equipment/BSEquipmentManagerComponent.h -------------------------------------------------------------------------------- /BeatShot/Public/Equipment/BSGun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Equipment/BSGun.h -------------------------------------------------------------------------------- /BeatShot/Public/Equipment/BSKnife.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Equipment/BSKnife.h -------------------------------------------------------------------------------- /BeatShot/Public/FloatingTextActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/FloatingTextActor.h -------------------------------------------------------------------------------- /BeatShot/Public/Input/BSInputComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Input/BSInputComponent.h -------------------------------------------------------------------------------- /BeatShot/Public/Input/BSInputConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Input/BSInputConfig.h -------------------------------------------------------------------------------- /BeatShot/Public/Inventory/BSInventoryItemDefinition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Inventory/BSInventoryItemDefinition.h -------------------------------------------------------------------------------- /BeatShot/Public/Inventory/BSInventoryItemInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Inventory/BSInventoryItemInstance.h -------------------------------------------------------------------------------- /BeatShot/Public/Inventory/BSInventoryManagerComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Inventory/BSInventoryManagerComponent.h -------------------------------------------------------------------------------- /BeatShot/Public/Inventory/Fragments/EquippableFragment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Inventory/Fragments/EquippableFragment.h -------------------------------------------------------------------------------- /BeatShot/Public/Inventory/Fragments/StatFragment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Inventory/Fragments/StatFragment.h -------------------------------------------------------------------------------- /BeatShot/Public/MainMenuGameMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/MainMenuGameMode.h -------------------------------------------------------------------------------- /BeatShot/Public/Physics/BSCollisionChannels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Physics/BSCollisionChannels.h -------------------------------------------------------------------------------- /BeatShot/Public/Player/BSCheatManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Player/BSCheatManager.h -------------------------------------------------------------------------------- /BeatShot/Public/Player/BSLocalPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Player/BSLocalPlayer.h -------------------------------------------------------------------------------- /BeatShot/Public/Player/BSPlayerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Player/BSPlayerController.h -------------------------------------------------------------------------------- /BeatShot/Public/Player/BSPlayerState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Player/BSPlayerState.h -------------------------------------------------------------------------------- /BeatShot/Public/RangeActors/Moon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/RangeActors/Moon.h -------------------------------------------------------------------------------- /BeatShot/Public/RangeActors/MovablePlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/RangeActors/MovablePlatform.h -------------------------------------------------------------------------------- /BeatShot/Public/RangeActors/RangeLevelScriptActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/RangeActors/RangeLevelScriptActor.h -------------------------------------------------------------------------------- /BeatShot/Public/RangeActors/SpawnAreaSpotLight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/RangeActors/SpawnAreaSpotLight.h -------------------------------------------------------------------------------- /BeatShot/Public/RangeActors/TimeOfDayManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/RangeActors/TimeOfDayManager.h -------------------------------------------------------------------------------- /BeatShot/Public/RangeActors/WallMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/RangeActors/WallMenu.h -------------------------------------------------------------------------------- /BeatShot/Public/System/BSAssetManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/System/BSAssetManager.h -------------------------------------------------------------------------------- /BeatShot/Public/System/GameplayTagStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/System/GameplayTagStack.h -------------------------------------------------------------------------------- /BeatShot/Public/System/SteamManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/System/SteamManager.h -------------------------------------------------------------------------------- /BeatShot/Public/Target/MatrixFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Target/MatrixFunctions.h -------------------------------------------------------------------------------- /BeatShot/Public/Target/ReinforcementLearningComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Target/ReinforcementLearningComponent.h -------------------------------------------------------------------------------- /BeatShot/Public/Target/SpawnArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Target/SpawnArea.h -------------------------------------------------------------------------------- /BeatShot/Public/Target/SpawnAreaManagerComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Target/SpawnAreaManagerComponent.h -------------------------------------------------------------------------------- /BeatShot/Public/Target/Target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Target/Target.h -------------------------------------------------------------------------------- /BeatShot/Public/Target/TargetCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Target/TargetCommon.h -------------------------------------------------------------------------------- /BeatShot/Public/Target/TargetManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Target/TargetManager.h -------------------------------------------------------------------------------- /BeatShot/Public/Target/TargetManagerPreview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Target/TargetManagerPreview.h -------------------------------------------------------------------------------- /BeatShot/Public/Target/TargetPreview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Target/TargetPreview.h -------------------------------------------------------------------------------- /BeatShot/Public/Visualizers/BSVisualizerDefinition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Visualizers/BSVisualizerDefinition.h -------------------------------------------------------------------------------- /BeatShot/Public/Visualizers/BeamVisualizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Visualizers/BeamVisualizer.h -------------------------------------------------------------------------------- /BeatShot/Public/Visualizers/BeamVisualizerDefinition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Visualizers/BeamVisualizerDefinition.h -------------------------------------------------------------------------------- /BeatShot/Public/Visualizers/CubeVisualizerDefinition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Visualizers/CubeVisualizerDefinition.h -------------------------------------------------------------------------------- /BeatShot/Public/Visualizers/SimpleBeamLight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Visualizers/SimpleBeamLight.h -------------------------------------------------------------------------------- /BeatShot/Public/Visualizers/StaticCubeVisualizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Visualizers/StaticCubeVisualizer.h -------------------------------------------------------------------------------- /BeatShot/Public/Visualizers/VisualizerBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Visualizers/VisualizerBase.h -------------------------------------------------------------------------------- /BeatShot/Public/Visualizers/VisualizerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShot/Public/Visualizers/VisualizerManager.h -------------------------------------------------------------------------------- /BeatShotEditor.Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotEditor.Target.cs -------------------------------------------------------------------------------- /BeatShotGlobal/BeatShotGlobal.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/BeatShotGlobal.Build.cs -------------------------------------------------------------------------------- /BeatShotGlobal/BeatShotGlobal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/BeatShotGlobal.cpp -------------------------------------------------------------------------------- /BeatShotGlobal/BeatShotGlobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/BeatShotGlobal.h -------------------------------------------------------------------------------- /BeatShotGlobal/Private/BSGameModeConfig/BSConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Private/BSGameModeConfig/BSConfig.cpp -------------------------------------------------------------------------------- /BeatShotGlobal/Private/BSGameModeConfig/BSGameModeDataAsset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Private/BSGameModeConfig/BSGameModeDataAsset.cpp -------------------------------------------------------------------------------- /BeatShotGlobal/Private/BSGameModeConfig/BSGameModeValidator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Private/BSGameModeConfig/BSGameModeValidator.cpp -------------------------------------------------------------------------------- /BeatShotGlobal/Private/BSGameModeInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Private/BSGameModeInterface.cpp -------------------------------------------------------------------------------- /BeatShotGlobal/Private/BSGameUserSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Private/BSGameUserSettings.cpp -------------------------------------------------------------------------------- /BeatShotGlobal/Private/BSPlayerScoreInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Private/BSPlayerScoreInterface.cpp -------------------------------------------------------------------------------- /BeatShotGlobal/Private/BSPlayerSettingsInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Private/BSPlayerSettingsInterface.cpp -------------------------------------------------------------------------------- /BeatShotGlobal/Private/HttpRequestInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Private/HttpRequestInterface.cpp -------------------------------------------------------------------------------- /BeatShotGlobal/Private/Mappings/BSGameModeEnumTagMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Private/Mappings/BSGameModeEnumTagMap.cpp -------------------------------------------------------------------------------- /BeatShotGlobal/Private/Mappings/EnumStringMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Private/Mappings/EnumStringMap.cpp -------------------------------------------------------------------------------- /BeatShotGlobal/Private/Mappings/EnumTagMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Private/Mappings/EnumTagMap.cpp -------------------------------------------------------------------------------- /BeatShotGlobal/Private/Mappings/GameModeCategoryTagMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Private/Mappings/GameModeCategoryTagMap.cpp -------------------------------------------------------------------------------- /BeatShotGlobal/Private/Mappings/VideoSettingEnumStringMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Private/Mappings/VideoSettingEnumStringMap.cpp -------------------------------------------------------------------------------- /BeatShotGlobal/Private/SaveGames/SaveGameCustomGameMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Private/SaveGames/SaveGameCustomGameMode.cpp -------------------------------------------------------------------------------- /BeatShotGlobal/Private/SaveGames/SaveGamePlayerScore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Private/SaveGames/SaveGamePlayerScore.cpp -------------------------------------------------------------------------------- /BeatShotGlobal/Private/SaveGames/SaveGamePlayerSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Private/SaveGames/SaveGamePlayerSettings.cpp -------------------------------------------------------------------------------- /BeatShotGlobal/Private/Utilities/SaveLoadCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Private/Utilities/SaveLoadCommon.cpp -------------------------------------------------------------------------------- /BeatShotGlobal/Public/BSConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Public/BSConstants.h -------------------------------------------------------------------------------- /BeatShotGlobal/Public/BSGameModeConfig/AIConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Public/BSGameModeConfig/AIConfig.h -------------------------------------------------------------------------------- /BeatShotGlobal/Public/BSGameModeConfig/AudioConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Public/BSGameModeConfig/AudioConfig.h -------------------------------------------------------------------------------- /BeatShotGlobal/Public/BSGameModeConfig/BSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Public/BSGameModeConfig/BSConfig.h -------------------------------------------------------------------------------- /BeatShotGlobal/Public/BSGameModeConfig/BSGameModeDataAsset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Public/BSGameModeConfig/BSGameModeDataAsset.h -------------------------------------------------------------------------------- /BeatShotGlobal/Public/BSGameModeConfig/BSGameModeValidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Public/BSGameModeConfig/BSGameModeValidator.h -------------------------------------------------------------------------------- /BeatShotGlobal/Public/BSGameModeConfig/DefiningConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Public/BSGameModeConfig/DefiningConfig.h -------------------------------------------------------------------------------- /BeatShotGlobal/Public/BSGameModeConfig/DynamicConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Public/BSGameModeConfig/DynamicConfig.h -------------------------------------------------------------------------------- /BeatShotGlobal/Public/BSGameModeConfig/GridConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Public/BSGameModeConfig/GridConfig.h -------------------------------------------------------------------------------- /BeatShotGlobal/Public/BSGameModeConfig/TargetConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Public/BSGameModeConfig/TargetConfig.h -------------------------------------------------------------------------------- /BeatShotGlobal/Public/BSGameModeInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Public/BSGameModeInterface.h -------------------------------------------------------------------------------- /BeatShotGlobal/Public/BSGameUserSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Public/BSGameUserSettings.h -------------------------------------------------------------------------------- /BeatShotGlobal/Public/BSPlayerScoreInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Public/BSPlayerScoreInterface.h -------------------------------------------------------------------------------- /BeatShotGlobal/Public/BSPlayerSettingsInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Public/BSPlayerSettingsInterface.h -------------------------------------------------------------------------------- /BeatShotGlobal/Public/DeveloperSettings/BSAudioSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Public/DeveloperSettings/BSAudioSettings.h -------------------------------------------------------------------------------- /BeatShotGlobal/Public/DeveloperSettings/BSLoadingScreenSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Public/DeveloperSettings/BSLoadingScreenSettings.h -------------------------------------------------------------------------------- /BeatShotGlobal/Public/HttpRequestInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Public/HttpRequestInterface.h -------------------------------------------------------------------------------- /BeatShotGlobal/Public/Mappings/BSGameModeEnumTagMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Public/Mappings/BSGameModeEnumTagMap.h -------------------------------------------------------------------------------- /BeatShotGlobal/Public/Mappings/EnumStringMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Public/Mappings/EnumStringMap.h -------------------------------------------------------------------------------- /BeatShotGlobal/Public/Mappings/EnumTagMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Public/Mappings/EnumTagMap.h -------------------------------------------------------------------------------- /BeatShotGlobal/Public/Mappings/GameModeCategoryTagMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Public/Mappings/GameModeCategoryTagMap.h -------------------------------------------------------------------------------- /BeatShotGlobal/Public/Mappings/VideoSettingEnumStringMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Public/Mappings/VideoSettingEnumStringMap.h -------------------------------------------------------------------------------- /BeatShotGlobal/Public/SaveGames/SaveGameCustomGameMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Public/SaveGames/SaveGameCustomGameMode.h -------------------------------------------------------------------------------- /BeatShotGlobal/Public/SaveGames/SaveGamePlayerScore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Public/SaveGames/SaveGamePlayerScore.h -------------------------------------------------------------------------------- /BeatShotGlobal/Public/SaveGames/SaveGamePlayerSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Public/SaveGames/SaveGamePlayerSettings.h -------------------------------------------------------------------------------- /BeatShotGlobal/Public/Utilities/BSCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Public/Utilities/BSCommon.h -------------------------------------------------------------------------------- /BeatShotGlobal/Public/Utilities/BSSettingTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Public/Utilities/BSSettingTypes.h -------------------------------------------------------------------------------- /BeatShotGlobal/Public/Utilities/GameModeTransitionState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Public/Utilities/GameModeTransitionState.h -------------------------------------------------------------------------------- /BeatShotGlobal/Public/Utilities/SaveLoadCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotGlobal/Public/Utilities/SaveLoadCommon.h -------------------------------------------------------------------------------- /BeatShotTesting/AutomationTests/TestBase/TargetManagerTestBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotTesting/AutomationTests/TestBase/TargetManagerTestBase.cpp -------------------------------------------------------------------------------- /BeatShotTesting/AutomationTests/TestBase/TargetManagerTestBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotTesting/AutomationTests/TestBase/TargetManagerTestBase.h -------------------------------------------------------------------------------- /BeatShotTesting/AutomationTests/TestBase/TargetManagerTestWithWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotTesting/AutomationTests/TestBase/TargetManagerTestWithWorld.cpp -------------------------------------------------------------------------------- /BeatShotTesting/AutomationTests/TestBase/TargetManagerTestWithWorld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotTesting/AutomationTests/TestBase/TargetManagerTestWithWorld.h -------------------------------------------------------------------------------- /BeatShotTesting/AutomationTests/Tests/TargetCollisionTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotTesting/AutomationTests/Tests/TargetCollisionTest.cpp -------------------------------------------------------------------------------- /BeatShotTesting/AutomationTests/Tests/TargetManagerInitTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotTesting/AutomationTests/Tests/TargetManagerInitTest.cpp -------------------------------------------------------------------------------- /BeatShotTesting/BeatShotTesting.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotTesting/BeatShotTesting.Build.cs -------------------------------------------------------------------------------- /BeatShotTesting/BeatShotTesting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotTesting/BeatShotTesting.cpp -------------------------------------------------------------------------------- /BeatShotTesting/FunctionalTests/BeatShotGameModeFunctionalTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotTesting/FunctionalTests/BeatShotGameModeFunctionalTest.cpp -------------------------------------------------------------------------------- /BeatShotTesting/FunctionalTests/BeatShotGameModeFunctionalTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/BeatShotTesting/FunctionalTests/BeatShotGameModeFunctionalTest.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/README.md -------------------------------------------------------------------------------- /UserInterface/Private/GameModes/BoxBoundsWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/GameModes/BoxBoundsWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/GameModes/CreatorViewWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/GameModes/CreatorViewWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/GameModes/CustomGameModeActivationWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/GameModes/CustomGameModeActivationWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/GameModes/CustomGameModeCategoryWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/GameModes/CustomGameModeCategoryWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/GameModes/CustomGameModeConditionsAndResponsesWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/GameModes/CustomGameModeConditionsAndResponsesWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/GameModes/CustomGameModeGeneralWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/GameModes/CustomGameModeGeneralWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/GameModes/CustomGameModeMovementWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/GameModes/CustomGameModeMovementWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/GameModes/CustomGameModePreviewWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/GameModes/CustomGameModePreviewWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/GameModes/CustomGameModeSpawnAreaWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/GameModes/CustomGameModeSpawnAreaWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/GameModes/CustomGameModeSpawningWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/GameModes/CustomGameModeSpawningWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/GameModes/CustomGameModeStartWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/GameModes/CustomGameModeStartWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/GameModes/CustomGameModeTargetSizingWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/GameModes/CustomGameModeTargetSizingWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/GameModes/CustomGameModeWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/GameModes/CustomGameModeWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/GameModes/PropertyViewWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/GameModes/PropertyViewWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/GameModes/TargetWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/GameModes/TargetWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/MenuOptions/BandChannelWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/MenuOptions/BandChannelWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/MenuOptions/BandThresholdWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/MenuOptions/BandThresholdWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/MenuOptions/CheckBoxWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/MenuOptions/CheckBoxWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/MenuOptions/ColorSelectWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/MenuOptions/ColorSelectWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/MenuOptions/ComboBoxWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/MenuOptions/ComboBoxWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/MenuOptions/DefaultGameModeSelectWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/MenuOptions/DefaultGameModeSelectWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/MenuOptions/DualRangeInputWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/MenuOptions/DualRangeInputWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/MenuOptions/MenuOptionWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/MenuOptions/MenuOptionWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/MenuOptions/ScalabilitySettingWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/MenuOptions/ScalabilitySettingWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/MenuOptions/SingleRangeInputWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/MenuOptions/SingleRangeInputWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/MenuOptions/TextInputWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/MenuOptions/TextInputWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/MenuOptions/ToggleableSingleRangeInputWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/MenuOptions/ToggleableSingleRangeInputWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Menus/FAQWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Menus/FAQWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Menus/GameModesMenuWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Menus/GameModesMenuWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Menus/MainMenuWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Menus/MainMenuWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Menus/PauseMenuWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Menus/PauseMenuWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Menus/PostGameMenuWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Menus/PostGameMenuWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Menus/ScoreBrowserWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Menus/ScoreBrowserWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Menus/SettingsMenuWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Menus/SettingsMenuWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Overlays/AudioSelectWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Overlays/AudioSelectWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Overlays/CombatTextWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Overlays/CombatTextWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Overlays/CountdownWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Overlays/CountdownWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Overlays/CrossHairWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Overlays/CrossHairWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Overlays/FPSCounterWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Overlays/FPSCounterWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Overlays/FeedbackWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Overlays/FeedbackWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Overlays/GameModeSharingWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Overlays/GameModeSharingWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Overlays/HitTimingWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Overlays/HitTimingWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Overlays/LoginWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Overlays/LoginWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Overlays/PlayerHUD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Overlays/PlayerHUD.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Overlays/PopupMessageWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Overlays/PopupMessageWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Overlays/QTableWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Overlays/QTableWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Overlays/QuitMenuWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Overlays/QuitMenuWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Settings/AudioAnalyzerSettingsWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Settings/AudioAnalyzerSettingsWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Settings/CrossHairSettingsWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Settings/CrossHairSettingsWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Settings/GameSettingsWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Settings/GameSettingsWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Settings/InputSettingsWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Settings/InputSettingsWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Settings/VideoAndSoundSettingsWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Settings/VideoAndSoundSettingsWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Styles/CarouselNavButtonStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Styles/CarouselNavButtonStyle.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Styles/LoadingScreenStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Styles/LoadingScreenStyle.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Transitions/LoadingScreenWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Transitions/LoadingScreenWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Transitions/ScreenFadeWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Transitions/ScreenFadeWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Utilities/BSCarouselNavBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Utilities/BSCarouselNavBar.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Utilities/BSHorizontalBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Utilities/BSHorizontalBox.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Utilities/BSSettingCategoryWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Utilities/BSSettingCategoryWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Utilities/BSVerticalBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Utilities/BSVerticalBox.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Utilities/BSWidgetInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Utilities/BSWidgetInterface.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Utilities/Buttons/BSButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Utilities/Buttons/BSButton.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Utilities/Buttons/ButtonNotificationWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Utilities/Buttons/ButtonNotificationWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Utilities/Buttons/MenuButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Utilities/Buttons/MenuButton.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Utilities/Buttons/NotificationButtonCombo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Utilities/Buttons/NotificationButtonCombo.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Utilities/Buttons/ScalabilitySettingButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Utilities/Buttons/ScalabilitySettingButton.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Utilities/ComboBox/BSComboBoxEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Utilities/ComboBox/BSComboBoxEntry.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Utilities/ComboBox/BSComboBoxString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Utilities/ComboBox/BSComboBoxString.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Utilities/ComboBox/BSTaggedComboBoxEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Utilities/ComboBox/BSTaggedComboBoxEntry.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Utilities/GameModeCategoryTagWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Utilities/GameModeCategoryTagWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Utilities/HyperlinkTextBlockDecorator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Utilities/HyperlinkTextBlockDecorator.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Utilities/InputMappingWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Utilities/InputMappingWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Utilities/SavedTextWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Utilities/SavedTextWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Utilities/TooltipData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Utilities/TooltipData.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Utilities/TooltipIcon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Utilities/TooltipIcon.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Utilities/TooltipWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Utilities/TooltipWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Private/Utilities/WebBrowserWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Private/Utilities/WebBrowserWidget.cpp -------------------------------------------------------------------------------- /UserInterface/Public/GameModes/BoxBoundsWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/GameModes/BoxBoundsWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/GameModes/CreatorViewWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/GameModes/CreatorViewWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/GameModes/CustomGameModeActivationWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/GameModes/CustomGameModeActivationWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/GameModes/CustomGameModeCategoryWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/GameModes/CustomGameModeCategoryWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/GameModes/CustomGameModeConditionsAndResponsesWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/GameModes/CustomGameModeConditionsAndResponsesWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/GameModes/CustomGameModeGeneralWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/GameModes/CustomGameModeGeneralWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/GameModes/CustomGameModeMovementWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/GameModes/CustomGameModeMovementWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/GameModes/CustomGameModePreviewWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/GameModes/CustomGameModePreviewWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/GameModes/CustomGameModeSpawnAreaWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/GameModes/CustomGameModeSpawnAreaWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/GameModes/CustomGameModeSpawningWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/GameModes/CustomGameModeSpawningWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/GameModes/CustomGameModeStartWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/GameModes/CustomGameModeStartWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/GameModes/CustomGameModeTargetSizingWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/GameModes/CustomGameModeTargetSizingWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/GameModes/CustomGameModeWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/GameModes/CustomGameModeWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/GameModes/PropertyViewWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/GameModes/PropertyViewWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/GameModes/TargetWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/GameModes/TargetWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/MenuOptions/BandChannelWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/MenuOptions/BandChannelWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/MenuOptions/BandThresholdWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/MenuOptions/BandThresholdWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/MenuOptions/CheckBoxWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/MenuOptions/CheckBoxWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/MenuOptions/ColorSelectWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/MenuOptions/ColorSelectWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/MenuOptions/ComboBoxWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/MenuOptions/ComboBoxWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/MenuOptions/DefaultGameModeSelectWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/MenuOptions/DefaultGameModeSelectWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/MenuOptions/DualRangeInputWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/MenuOptions/DualRangeInputWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/MenuOptions/MenuOptionWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/MenuOptions/MenuOptionWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/MenuOptions/ScalabilitySettingWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/MenuOptions/ScalabilitySettingWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/MenuOptions/SingleRangeInputWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/MenuOptions/SingleRangeInputWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/MenuOptions/TextInputWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/MenuOptions/TextInputWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/MenuOptions/ToggleableSingleRangeInputWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/MenuOptions/ToggleableSingleRangeInputWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/Menus/FAQWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Menus/FAQWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/Menus/GameModeMenuWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Menus/GameModeMenuWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/Menus/MainMenuWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Menus/MainMenuWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/Menus/PauseMenuWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Menus/PauseMenuWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/Menus/PostGameMenuWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Menus/PostGameMenuWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/Menus/ScoreBrowserWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Menus/ScoreBrowserWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/Menus/SettingsMenuWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Menus/SettingsMenuWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/Overlays/AudioSelectWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Overlays/AudioSelectWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/Overlays/CombatTextWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Overlays/CombatTextWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/Overlays/CountdownWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Overlays/CountdownWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/Overlays/CrossHairWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Overlays/CrossHairWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/Overlays/FeedbackWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Overlays/FeedbackWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/Overlays/FrameCounterWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Overlays/FrameCounterWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/Overlays/GameModeSharingWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Overlays/GameModeSharingWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/Overlays/HitTimingWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Overlays/HitTimingWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/Overlays/LoginWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Overlays/LoginWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/Overlays/PlayerHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Overlays/PlayerHUD.h -------------------------------------------------------------------------------- /UserInterface/Public/Overlays/PopupMessageWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Overlays/PopupMessageWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/Overlays/QTableWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Overlays/QTableWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/Overlays/QuitMenuWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Overlays/QuitMenuWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/Settings/AudioAnalyzerSettingsWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Settings/AudioAnalyzerSettingsWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/Settings/CrossHairSettingsWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Settings/CrossHairSettingsWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/Settings/GameSettingsWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Settings/GameSettingsWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/Settings/InputSettingsWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Settings/InputSettingsWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/Settings/VideoAndSoundSettingsWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Settings/VideoAndSoundSettingsWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/Slate/SBSComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Slate/SBSComboBox.h -------------------------------------------------------------------------------- /UserInterface/Public/Slate/SBSListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Slate/SBSListView.h -------------------------------------------------------------------------------- /UserInterface/Public/Slate/SBSRichTextHyperlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Slate/SBSRichTextHyperlink.h -------------------------------------------------------------------------------- /UserInterface/Public/Slate/SBSTableRow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Slate/SBSTableRow.h -------------------------------------------------------------------------------- /UserInterface/Public/Slate/SLoadingScreenWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Slate/SLoadingScreenWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/Styles/CarouselNavButtonStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Styles/CarouselNavButtonStyle.h -------------------------------------------------------------------------------- /UserInterface/Public/Styles/LoadingScreenStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Styles/LoadingScreenStyle.h -------------------------------------------------------------------------------- /UserInterface/Public/Styles/MenuOptionStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Styles/MenuOptionStyle.h -------------------------------------------------------------------------------- /UserInterface/Public/Styles/MenuStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Styles/MenuStyle.h -------------------------------------------------------------------------------- /UserInterface/Public/Styles/OverlayStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Styles/OverlayStyle.h -------------------------------------------------------------------------------- /UserInterface/Public/Styles/SubmenuStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Styles/SubmenuStyle.h -------------------------------------------------------------------------------- /UserInterface/Public/Transitions/LoadingScreenWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Transitions/LoadingScreenWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/Transitions/ScreenFadeWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Transitions/ScreenFadeWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/Utilities/BSCarouselNavBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Utilities/BSCarouselNavBar.h -------------------------------------------------------------------------------- /UserInterface/Public/Utilities/BSHorizontalBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Utilities/BSHorizontalBox.h -------------------------------------------------------------------------------- /UserInterface/Public/Utilities/BSSettingCategoryWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Utilities/BSSettingCategoryWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/Utilities/BSVerticalBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Utilities/BSVerticalBox.h -------------------------------------------------------------------------------- /UserInterface/Public/Utilities/BSWidgetInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Utilities/BSWidgetInterface.h -------------------------------------------------------------------------------- /UserInterface/Public/Utilities/Buttons/BSButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Utilities/Buttons/BSButton.h -------------------------------------------------------------------------------- /UserInterface/Public/Utilities/Buttons/ButtonNotificationWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Utilities/Buttons/ButtonNotificationWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/Utilities/Buttons/MenuButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Utilities/Buttons/MenuButton.h -------------------------------------------------------------------------------- /UserInterface/Public/Utilities/Buttons/NotificationButtonCombo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Utilities/Buttons/NotificationButtonCombo.h -------------------------------------------------------------------------------- /UserInterface/Public/Utilities/Buttons/ScalabilitySettingButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Utilities/Buttons/ScalabilitySettingButton.h -------------------------------------------------------------------------------- /UserInterface/Public/Utilities/ComboBox/BSComboBoxEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Utilities/ComboBox/BSComboBoxEntry.h -------------------------------------------------------------------------------- /UserInterface/Public/Utilities/ComboBox/BSComboBoxString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Utilities/ComboBox/BSComboBoxString.h -------------------------------------------------------------------------------- /UserInterface/Public/Utilities/ComboBox/BSTaggedComboBoxEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Utilities/ComboBox/BSTaggedComboBoxEntry.h -------------------------------------------------------------------------------- /UserInterface/Public/Utilities/GameModeCategoryTagWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Utilities/GameModeCategoryTagWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/Utilities/HyperlinkTextBlockDecorator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Utilities/HyperlinkTextBlockDecorator.h -------------------------------------------------------------------------------- /UserInterface/Public/Utilities/InputMappingWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Utilities/InputMappingWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/Utilities/SavedTextWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Utilities/SavedTextWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/Utilities/TooltipData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Utilities/TooltipData.h -------------------------------------------------------------------------------- /UserInterface/Public/Utilities/TooltipIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Utilities/TooltipIcon.h -------------------------------------------------------------------------------- /UserInterface/Public/Utilities/TooltipWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Utilities/TooltipWidget.h -------------------------------------------------------------------------------- /UserInterface/Public/Utilities/WebBrowserWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/Public/Utilities/WebBrowserWidget.h -------------------------------------------------------------------------------- /UserInterface/UserInterface.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/UserInterface.Build.cs -------------------------------------------------------------------------------- /UserInterface/UserInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markoleptic/BeatShot/HEAD/UserInterface/UserInterface.cpp --------------------------------------------------------------------------------