├── .github └── FUNDING.yml ├── .gitignore ├── .gitmodules ├── BeatSaberPlus.sln ├── LICENSE ├── LICENSE.ChatCore ├── Modules ├── BeatSaberPlus_Chat │ ├── BSIPA.cs │ ├── BeatSaberPlus_Chat.csproj │ ├── BeatSaberPlus_Chat.csproj.user │ ├── BuildTargets.targets │ ├── ChatPlexMod_Chat │ │ ├── CConfig.cs │ │ ├── Chat.cs │ │ ├── Components │ │ │ ├── ChatImage.cs │ │ │ ├── ChatMessageText.cs │ │ │ └── ChatMessageWidget.cs │ │ ├── Extensions │ │ │ └── EnhancedFontInfo.cs │ │ ├── Logger.cs │ │ ├── Resources │ │ │ └── ViewerIcon.png │ │ ├── UI │ │ │ ├── ChatFloatingPanelView.cs │ │ │ ├── Data │ │ │ │ └── ChatUserListItem.cs │ │ │ ├── HypeTrainFloatingPanelView.cs │ │ │ ├── ModerationLeftView.cs │ │ │ ├── ModerationMainView.cs │ │ │ ├── ModerationRightView.cs │ │ │ ├── ModerationShortcutsMainView.cs │ │ │ ├── ModerationViewFlowCoordinator.cs │ │ │ ├── PollFloatingPanelView.cs │ │ │ ├── PredictionFloatingPanelView.cs │ │ │ ├── SettingsLeftView.cs │ │ │ ├── SettingsMainView.cs │ │ │ ├── SettingsRightView.cs │ │ │ └── StatusFloatingPanelView.cs │ │ └── Utils │ │ │ └── ChatMessageBuilder.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── manifest.json ├── BeatSaberPlus_ChatEmoteRain │ ├── BSIPA.cs │ ├── BeatSaberPlus_ChatEmoteRain.csproj │ ├── BeatSaberPlus_ChatEmoteRain.csproj.user │ ├── BuildTargets.targets │ ├── ChatPlexMod_ChatEmoteRain │ │ ├── CERConfig.cs │ │ ├── ChatEmoteRain.cs │ │ ├── Logger.cs │ │ └── UI │ │ │ ├── SettingsLeftView.cs │ │ │ ├── SettingsMainView.cs │ │ │ ├── SettingsRightView.cs │ │ │ └── Widgets │ │ │ └── EmitterWidget.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── manifest.json ├── BeatSaberPlus_ChatIntegrations │ ├── BSIPA.cs │ ├── BeatSaber │ │ ├── Actions │ │ │ ├── Camera2.cs │ │ │ ├── ChatRequest.cs │ │ │ ├── GamePlay.cs │ │ │ ├── NoteTweaker.cs │ │ │ └── SongChartVisualizer.cs │ │ ├── Conditions │ │ │ ├── ChatRequest.cs │ │ │ └── GamePlay.cs │ │ ├── Enums │ │ │ ├── BeatmapModType.cs │ │ │ ├── EChatRequestQueueToggle.cs │ │ │ ├── LevelType.cs │ │ │ ├── QueueStatus.cs │ │ │ └── ValueSource.cs │ │ ├── Events │ │ │ ├── LevelEnded.cs │ │ │ ├── LevelPaused.cs │ │ │ ├── LevelResumed.cs │ │ │ └── LevelStarted.cs │ │ ├── Manager.cs │ │ ├── ModPresence.cs │ │ ├── Models │ │ │ ├── Actions │ │ │ │ ├── Camera2.cs │ │ │ │ ├── ChatRequest.cs │ │ │ │ ├── GamePlay.cs │ │ │ │ ├── NoteTweaker.cs │ │ │ │ └── SongChartVisualizer.cs │ │ │ └── Conditions │ │ │ │ ├── ChatRequest.cs │ │ │ │ └── GamePlay.cs │ │ └── ModulePresence.cs │ ├── BeatSaberPlus_ChatIntegrations.csproj │ ├── BeatSaberPlus_ChatIntegrations.csproj.user │ ├── BuildTargets.targets │ ├── ChatPlexMod_ChatIntegrations │ │ ├── Actions │ │ │ ├── Chat.cs │ │ │ ├── EmoteRain.cs │ │ │ ├── Event.cs │ │ │ ├── Misc.cs │ │ │ ├── OBS.cs │ │ │ └── Twitch.cs │ │ ├── CIConfig.cs │ │ ├── ChatIntegrations.cs │ │ ├── ChatIntegrations_Database.cs │ │ ├── ChatIntegrations_Events.cs │ │ ├── Conditions │ │ │ ├── Bits.cs │ │ │ ├── Event.cs │ │ │ ├── Misc.cs │ │ │ ├── OBS.cs │ │ │ ├── Subscription.cs │ │ │ └── User.cs │ │ ├── Enums │ │ │ ├── ChangeType.cs │ │ │ ├── Comparison.cs │ │ │ ├── EVisibility.cs │ │ │ ├── Toggle.cs │ │ │ ├── TwitchSubscribtionPlanType.cs │ │ │ └── Visibility.cs │ │ ├── Events │ │ │ ├── ChatBits.cs │ │ │ ├── ChatCommand.cs │ │ │ ├── ChatFollow.cs │ │ │ ├── ChatPointsReward.cs │ │ │ ├── ChatRaid.cs │ │ │ ├── ChatSubscription.cs │ │ │ ├── Dummy.cs │ │ │ └── VoiceAttackCommand.cs │ │ ├── Interfaces │ │ │ ├── ETriggerType.cs │ │ │ ├── EValueType.cs │ │ │ ├── IAction.cs │ │ │ ├── IActionBase.cs │ │ │ ├── ICondition.cs │ │ │ ├── IConditionBase.cs │ │ │ ├── IEvent.cs │ │ │ ├── IEventBase.cs │ │ │ └── IUIConfigurable.cs │ │ ├── Logger.cs │ │ ├── Models │ │ │ ├── Action.cs │ │ │ ├── Actions │ │ │ │ ├── Chat.cs │ │ │ │ ├── EmoteRain.cs │ │ │ │ ├── Event.cs │ │ │ │ ├── Misc.cs │ │ │ │ └── OBS.cs │ │ │ ├── Condition.cs │ │ │ ├── Conditions │ │ │ │ ├── Bits.cs │ │ │ │ ├── Events.cs │ │ │ │ ├── Misc.cs │ │ │ │ ├── OBS.cs │ │ │ │ ├── Subscription.cs │ │ │ │ └── User.cs │ │ │ ├── Event.cs │ │ │ ├── EventContext.cs │ │ │ └── Events │ │ │ │ ├── ChatBits.cs │ │ │ │ ├── ChatCommand.cs │ │ │ │ ├── ChatFollow.cs │ │ │ │ ├── ChatPointsReward.cs │ │ │ │ ├── ChatSubscription.cs │ │ │ │ └── VoiceAttackCommand.cs │ │ ├── ModulePresence.cs │ │ └── UI │ │ │ ├── Data │ │ │ ├── ActionListItem.cs │ │ │ ├── ConditionListItem.cs │ │ │ └── EventListItem.cs │ │ │ ├── Modals │ │ │ ├── AddXModal.cs │ │ │ ├── EventCreateModal.cs │ │ │ ├── EventImportModal.cs │ │ │ └── EventTemplateModal.cs │ │ │ ├── SettingsLeftView.cs │ │ │ ├── SettingsMainView.cs │ │ │ └── SettingsRightView.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── manifest.json ├── BeatSaberPlus_ChatRequest │ ├── BeatSaberPlus_ChatRequest.csproj │ ├── BeatSaberPlus_ChatRequest.csproj.user │ ├── BuildTargets.targets │ ├── CRConfig.cs │ ├── ChatRequest.cs │ ├── ChatRequest_Commands.cs │ ├── ChatRequest_Database.cs │ ├── ChatRequest_Logic.cs │ ├── Logger.cs │ ├── Models │ │ ├── AddToQueueResult.cs │ │ ├── EAddToQueueResult.cs │ │ ├── RequesterRateLimit.cs │ │ └── SongEntry.cs │ ├── Plugin.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── Blacklist.png │ │ └── Unblacklist.png │ ├── UI │ │ ├── Data │ │ │ ├── CommandListCell.cs │ │ │ └── CommandListItem.cs │ │ ├── ManagerLeftView.cs │ │ ├── ManagerMainView.cs │ │ ├── ManagerRightView.cs │ │ ├── ManagerViewFlowCoordinator.cs │ │ ├── SettingsLeftView.cs │ │ ├── SettingsMainView.cs │ │ └── SettingsRightView.cs │ └── manifest.json ├── BeatSaberPlus_GameTweaker │ ├── BeatSaberPlus_GameTweaker.csproj │ ├── BeatSaberPlus_GameTweaker.csproj.user │ ├── BuildTargets.targets │ ├── Components │ │ ├── FPFCEscape.cs │ │ └── MusicBandLogoRemover.cs │ ├── GTConfig.cs │ ├── GameTweaker.cs │ ├── Logger.cs │ ├── Managers │ │ └── CustomMenuLightManager.cs │ ├── Patches │ │ ├── Lights │ │ │ └── PLightsPatches.cs │ │ ├── PComboUIController.cs │ │ ├── PFireworksController.cs │ │ ├── PLevelListTableCell.cs │ │ ├── PLevelSearchViewController.cs │ │ ├── PMainMenuViewController.cs │ │ ├── PMenuLightsManager.cs │ │ ├── PMusicPackPromoBanner.cs │ │ ├── PNoteCutCoreEffectsSpawner.cs │ │ ├── PNoteDebrisSpawner.cs │ │ ├── PObstacleSaberSparkleEffectManager.cs │ │ ├── PPlayerHeightSettingsController.cs │ │ ├── PPlayerSettingsPanelController.cs │ │ ├── PSaberBurnMarkArea.cs │ │ ├── PSaberBurnMarkSparkles.cs │ │ ├── PSaberClashEffect.cs │ │ └── PStandardLevelDetailView.cs │ ├── Plugin.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ └── Delete.png │ ├── UI │ │ ├── SettingsLeftView.cs │ │ └── SettingsMainView.cs │ └── manifest.json ├── BeatSaberPlus_MenuMusic │ ├── BSIPA.cs │ ├── BeatSaberPlus_MenuMusic.csproj │ ├── BeatSaberPlus_MenuMusic.csproj.user │ ├── BuildTargets.targets │ ├── ChatPlexMod_MenuMusic │ │ ├── Data │ │ │ ├── CustomMusicProvider.cs │ │ │ ├── EMusicProviderType.cs │ │ │ ├── GameMusicProvider.cs │ │ │ ├── IMusicProvider.cs │ │ │ └── Music.cs │ │ ├── Logger.cs │ │ ├── MMConfig.cs │ │ ├── MenuMusic.cs │ │ ├── Patches │ │ │ └── PSongPreviewPlayer.cs │ │ ├── Resources │ │ │ ├── BackgroundMask.png │ │ │ ├── CoverMask.png │ │ │ ├── DefaultCover.png │ │ │ ├── Glass.png │ │ │ ├── Next.png │ │ │ ├── Originals.rar │ │ │ ├── Pause.png │ │ │ ├── Play.png │ │ │ ├── Playlist.png │ │ │ ├── Prev.png │ │ │ ├── Rand.png │ │ │ └── Sound.png │ │ ├── UI │ │ │ ├── PlayerFloatingPanel.cs │ │ │ ├── SettingsLeftView.cs │ │ │ └── SettingsMainView.cs │ │ └── Utils │ │ │ └── ArtProvider.cs │ ├── ModulePresence.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── manifest.json ├── BeatSaberPlus_NoteTweaker │ ├── BeatSaberPlus_NoteTweaker.csproj │ ├── BeatSaberPlus_NoteTweaker.csproj.user │ ├── BuildTargets.targets │ ├── Logger.cs │ ├── NTConfig.cs │ ├── NoteTweaker.cs │ ├── Patches │ │ ├── PBombNoteController.cs │ │ ├── PBurstSliderGameNoteController.cs │ │ ├── PColorNoteVisuals.cs │ │ ├── PGameNoteController.cs │ │ ├── PSliderController.cs │ │ └── PSliderHapticFeedbackInteractionEffect.cs │ ├── Plugin.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── UI │ │ ├── Modals │ │ │ └── ProfileImportModal.cs │ │ ├── SettingsLeftView.cs │ │ ├── SettingsMainView.cs │ │ └── SettingsRightView.cs │ └── manifest.json ├── BeatSaberPlus_SongChartVisualizer │ ├── BSIPA.cs │ ├── BeatSaberPlus_SongChartVisualizer.csproj │ ├── BeatSaberPlus_SongChartVisualizer.csproj.user │ ├── BuildTargets.targets │ ├── ChatPlexMod_SongChartVisualizer │ │ ├── Data │ │ │ ├── Graph.cs │ │ │ ├── GraphBuilder.cs │ │ │ └── GraphPoint.cs │ │ ├── Logger.cs │ │ ├── SCVConfig.cs │ │ ├── SongChartVisualizer.cs │ │ └── UI │ │ │ ├── ChartFloatingPanelView.cs │ │ │ ├── SettingsLeftView.cs │ │ │ ├── SettingsMainView.cs │ │ │ └── SettingsRightView.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── manifest.json └── BeatSaberPlus_SongOverlay │ ├── BeatSaberPlus_SongOverlay.csproj │ ├── BuildTargets.targets │ ├── Logger.cs │ ├── Models │ ├── Event.cs │ ├── MapInfo.cs │ └── Score.cs │ ├── Network │ ├── OverlayServer.cs │ └── OverlaySession.cs │ ├── Plugin.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── SOConfig.cs │ ├── SongOverlay.cs │ ├── UI │ ├── SettingsLeftView.cs │ └── SettingsMainView.cs │ └── manifest.json ├── README.md ├── Samples └── BeatSaberPlus_ModuleTemplate │ ├── BeatSaberPlus_ModuleTemplate.csproj │ ├── BeatSaberPlus_ModuleTemplate.csproj.user │ ├── BuildTargets.targets │ ├── Logger.cs │ ├── MTConfig.cs │ ├── ModuleTemplate.cs │ ├── Plugin.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── UI │ └── SettingsMainView.cs │ └── manifest.json └── SwitchVersion.ps1 /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/.gitmodules -------------------------------------------------------------------------------- /BeatSaberPlus.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/BeatSaberPlus.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.ChatCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/LICENSE.ChatCore -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_Chat/BSIPA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_Chat/BSIPA.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_Chat/BeatSaberPlus_Chat.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_Chat/BeatSaberPlus_Chat.csproj -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_Chat/BeatSaberPlus_Chat.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_Chat/BeatSaberPlus_Chat.csproj.user -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_Chat/BuildTargets.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_Chat/BuildTargets.targets -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/CConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/CConfig.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/Chat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/Chat.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/Components/ChatImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/Components/ChatImage.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/Components/ChatMessageText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/Components/ChatMessageText.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/Components/ChatMessageWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/Components/ChatMessageWidget.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/Extensions/EnhancedFontInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/Extensions/EnhancedFontInfo.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/Logger.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/Resources/ViewerIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/Resources/ViewerIcon.png -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/UI/ChatFloatingPanelView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/UI/ChatFloatingPanelView.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/UI/Data/ChatUserListItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/UI/Data/ChatUserListItem.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/UI/HypeTrainFloatingPanelView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/UI/HypeTrainFloatingPanelView.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/UI/ModerationLeftView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/UI/ModerationLeftView.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/UI/ModerationMainView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/UI/ModerationMainView.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/UI/ModerationRightView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/UI/ModerationRightView.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/UI/ModerationShortcutsMainView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/UI/ModerationShortcutsMainView.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/UI/ModerationViewFlowCoordinator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/UI/ModerationViewFlowCoordinator.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/UI/PollFloatingPanelView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/UI/PollFloatingPanelView.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/UI/PredictionFloatingPanelView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/UI/PredictionFloatingPanelView.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/UI/SettingsLeftView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/UI/SettingsLeftView.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/UI/SettingsMainView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/UI/SettingsMainView.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/UI/SettingsRightView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/UI/SettingsRightView.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/UI/StatusFloatingPanelView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/UI/StatusFloatingPanelView.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/Utils/ChatMessageBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_Chat/ChatPlexMod_Chat/Utils/ChatMessageBuilder.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_Chat/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_Chat/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_Chat/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_Chat/manifest.json -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatEmoteRain/BSIPA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatEmoteRain/BSIPA.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatEmoteRain/BeatSaberPlus_ChatEmoteRain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatEmoteRain/BeatSaberPlus_ChatEmoteRain.csproj -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatEmoteRain/BeatSaberPlus_ChatEmoteRain.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatEmoteRain/BeatSaberPlus_ChatEmoteRain.csproj.user -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatEmoteRain/BuildTargets.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatEmoteRain/BuildTargets.targets -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatEmoteRain/ChatPlexMod_ChatEmoteRain/CERConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatEmoteRain/ChatPlexMod_ChatEmoteRain/CERConfig.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatEmoteRain/ChatPlexMod_ChatEmoteRain/ChatEmoteRain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatEmoteRain/ChatPlexMod_ChatEmoteRain/ChatEmoteRain.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatEmoteRain/ChatPlexMod_ChatEmoteRain/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatEmoteRain/ChatPlexMod_ChatEmoteRain/Logger.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatEmoteRain/ChatPlexMod_ChatEmoteRain/UI/SettingsLeftView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatEmoteRain/ChatPlexMod_ChatEmoteRain/UI/SettingsLeftView.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatEmoteRain/ChatPlexMod_ChatEmoteRain/UI/SettingsMainView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatEmoteRain/ChatPlexMod_ChatEmoteRain/UI/SettingsMainView.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatEmoteRain/ChatPlexMod_ChatEmoteRain/UI/SettingsRightView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatEmoteRain/ChatPlexMod_ChatEmoteRain/UI/SettingsRightView.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatEmoteRain/ChatPlexMod_ChatEmoteRain/UI/Widgets/EmitterWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatEmoteRain/ChatPlexMod_ChatEmoteRain/UI/Widgets/EmitterWidget.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatEmoteRain/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatEmoteRain/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatEmoteRain/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatEmoteRain/manifest.json -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/BSIPA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/BSIPA.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Actions/Camera2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Actions/Camera2.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Actions/ChatRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Actions/ChatRequest.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Actions/GamePlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Actions/GamePlay.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Actions/NoteTweaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Actions/NoteTweaker.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Actions/SongChartVisualizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Actions/SongChartVisualizer.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Conditions/ChatRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Conditions/ChatRequest.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Conditions/GamePlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Conditions/GamePlay.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Enums/BeatmapModType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Enums/BeatmapModType.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Enums/EChatRequestQueueToggle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Enums/EChatRequestQueueToggle.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Enums/LevelType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Enums/LevelType.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Enums/QueueStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Enums/QueueStatus.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Enums/ValueSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Enums/ValueSource.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Events/LevelEnded.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Events/LevelEnded.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Events/LevelPaused.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Events/LevelPaused.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Events/LevelResumed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Events/LevelResumed.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Events/LevelStarted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Events/LevelStarted.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Manager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Manager.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/ModPresence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/ModPresence.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Models/Actions/Camera2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Models/Actions/Camera2.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Models/Actions/ChatRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Models/Actions/ChatRequest.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Models/Actions/GamePlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Models/Actions/GamePlay.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Models/Actions/NoteTweaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Models/Actions/NoteTweaker.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Models/Actions/SongChartVisualizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Models/Actions/SongChartVisualizer.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Models/Conditions/ChatRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Models/Conditions/ChatRequest.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Models/Conditions/GamePlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/Models/Conditions/GamePlay.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/ModulePresence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/BeatSaber/ModulePresence.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/BeatSaberPlus_ChatIntegrations.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/BeatSaberPlus_ChatIntegrations.csproj -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/BeatSaberPlus_ChatIntegrations.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/BeatSaberPlus_ChatIntegrations.csproj.user -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/BuildTargets.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/BuildTargets.targets -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Actions/Chat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Actions/Chat.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Actions/EmoteRain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Actions/EmoteRain.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Actions/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Actions/Event.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Actions/Misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Actions/Misc.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Actions/OBS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Actions/OBS.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Actions/Twitch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Actions/Twitch.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/CIConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/CIConfig.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/ChatIntegrations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/ChatIntegrations.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/ChatIntegrations_Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/ChatIntegrations_Database.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/ChatIntegrations_Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/ChatIntegrations_Events.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Conditions/Bits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Conditions/Bits.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Conditions/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Conditions/Event.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Conditions/Misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Conditions/Misc.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Conditions/OBS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Conditions/OBS.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Conditions/Subscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Conditions/Subscription.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Conditions/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Conditions/User.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Enums/ChangeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Enums/ChangeType.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Enums/Comparison.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Enums/Comparison.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Enums/EVisibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Enums/EVisibility.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Enums/Toggle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Enums/Toggle.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Enums/TwitchSubscribtionPlanType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Enums/TwitchSubscribtionPlanType.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Enums/Visibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Enums/Visibility.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Events/ChatBits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Events/ChatBits.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Events/ChatCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Events/ChatCommand.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Events/ChatFollow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Events/ChatFollow.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Events/ChatPointsReward.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Events/ChatPointsReward.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Events/ChatRaid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Events/ChatRaid.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Events/ChatSubscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Events/ChatSubscription.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Events/Dummy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Events/Dummy.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Events/VoiceAttackCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Events/VoiceAttackCommand.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Interfaces/ETriggerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Interfaces/ETriggerType.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Interfaces/EValueType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Interfaces/EValueType.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Interfaces/IAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Interfaces/IAction.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Interfaces/IActionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Interfaces/IActionBase.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Interfaces/ICondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Interfaces/ICondition.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Interfaces/IConditionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Interfaces/IConditionBase.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Interfaces/IEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Interfaces/IEvent.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Interfaces/IEventBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Interfaces/IEventBase.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Interfaces/IUIConfigurable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Interfaces/IUIConfigurable.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Logger.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Action.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Action.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Actions/Chat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Actions/Chat.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Actions/EmoteRain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Actions/EmoteRain.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Actions/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Actions/Event.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Actions/Misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Actions/Misc.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Actions/OBS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Actions/OBS.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Condition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Condition.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Conditions/Bits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Conditions/Bits.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Conditions/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Conditions/Events.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Conditions/Misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Conditions/Misc.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Conditions/OBS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Conditions/OBS.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Conditions/Subscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Conditions/Subscription.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Conditions/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Conditions/User.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Event.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/EventContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/EventContext.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Events/ChatBits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Events/ChatBits.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Events/ChatCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Events/ChatCommand.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Events/ChatFollow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Events/ChatFollow.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Events/ChatPointsReward.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Events/ChatPointsReward.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Events/ChatSubscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Events/ChatSubscription.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Events/VoiceAttackCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/Models/Events/VoiceAttackCommand.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/ModulePresence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/ModulePresence.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/UI/Data/ActionListItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/UI/Data/ActionListItem.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/UI/Data/ConditionListItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/UI/Data/ConditionListItem.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/UI/Data/EventListItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/UI/Data/EventListItem.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/UI/Modals/AddXModal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/UI/Modals/AddXModal.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/UI/Modals/EventCreateModal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/UI/Modals/EventCreateModal.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/UI/Modals/EventImportModal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/UI/Modals/EventImportModal.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/UI/Modals/EventTemplateModal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/UI/Modals/EventTemplateModal.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/UI/SettingsLeftView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/UI/SettingsLeftView.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/UI/SettingsMainView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/UI/SettingsMainView.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/UI/SettingsRightView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/ChatPlexMod_ChatIntegrations/UI/SettingsRightView.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatIntegrations/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatIntegrations/manifest.json -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatRequest/BeatSaberPlus_ChatRequest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatRequest/BeatSaberPlus_ChatRequest.csproj -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatRequest/BeatSaberPlus_ChatRequest.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatRequest/BeatSaberPlus_ChatRequest.csproj.user -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatRequest/BuildTargets.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatRequest/BuildTargets.targets -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatRequest/CRConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatRequest/CRConfig.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatRequest/ChatRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatRequest/ChatRequest.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatRequest/ChatRequest_Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatRequest/ChatRequest_Commands.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatRequest/ChatRequest_Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatRequest/ChatRequest_Database.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatRequest/ChatRequest_Logic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatRequest/ChatRequest_Logic.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatRequest/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatRequest/Logger.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatRequest/Models/AddToQueueResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatRequest/Models/AddToQueueResult.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatRequest/Models/EAddToQueueResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatRequest/Models/EAddToQueueResult.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatRequest/Models/RequesterRateLimit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatRequest/Models/RequesterRateLimit.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatRequest/Models/SongEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatRequest/Models/SongEntry.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatRequest/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatRequest/Plugin.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatRequest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatRequest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatRequest/Resources/Blacklist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatRequest/Resources/Blacklist.png -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatRequest/Resources/Unblacklist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatRequest/Resources/Unblacklist.png -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatRequest/UI/Data/CommandListCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatRequest/UI/Data/CommandListCell.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatRequest/UI/Data/CommandListItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatRequest/UI/Data/CommandListItem.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatRequest/UI/ManagerLeftView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatRequest/UI/ManagerLeftView.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatRequest/UI/ManagerMainView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatRequest/UI/ManagerMainView.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatRequest/UI/ManagerRightView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatRequest/UI/ManagerRightView.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatRequest/UI/ManagerViewFlowCoordinator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatRequest/UI/ManagerViewFlowCoordinator.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatRequest/UI/SettingsLeftView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatRequest/UI/SettingsLeftView.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatRequest/UI/SettingsMainView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatRequest/UI/SettingsMainView.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatRequest/UI/SettingsRightView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatRequest/UI/SettingsRightView.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_ChatRequest/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_ChatRequest/manifest.json -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_GameTweaker/BeatSaberPlus_GameTweaker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_GameTweaker/BeatSaberPlus_GameTweaker.csproj -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_GameTweaker/BeatSaberPlus_GameTweaker.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_GameTweaker/BeatSaberPlus_GameTweaker.csproj.user -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_GameTweaker/BuildTargets.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_GameTweaker/BuildTargets.targets -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_GameTweaker/Components/FPFCEscape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_GameTweaker/Components/FPFCEscape.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_GameTweaker/Components/MusicBandLogoRemover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_GameTweaker/Components/MusicBandLogoRemover.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_GameTweaker/GTConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_GameTweaker/GTConfig.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_GameTweaker/GameTweaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_GameTweaker/GameTweaker.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_GameTweaker/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_GameTweaker/Logger.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_GameTweaker/Managers/CustomMenuLightManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_GameTweaker/Managers/CustomMenuLightManager.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_GameTweaker/Patches/Lights/PLightsPatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_GameTweaker/Patches/Lights/PLightsPatches.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_GameTweaker/Patches/PComboUIController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_GameTweaker/Patches/PComboUIController.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_GameTweaker/Patches/PFireworksController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_GameTweaker/Patches/PFireworksController.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_GameTweaker/Patches/PLevelListTableCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_GameTweaker/Patches/PLevelListTableCell.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_GameTweaker/Patches/PLevelSearchViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_GameTweaker/Patches/PLevelSearchViewController.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_GameTweaker/Patches/PMainMenuViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_GameTweaker/Patches/PMainMenuViewController.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_GameTweaker/Patches/PMenuLightsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_GameTweaker/Patches/PMenuLightsManager.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_GameTweaker/Patches/PMusicPackPromoBanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_GameTweaker/Patches/PMusicPackPromoBanner.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_GameTweaker/Patches/PNoteCutCoreEffectsSpawner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_GameTweaker/Patches/PNoteCutCoreEffectsSpawner.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_GameTweaker/Patches/PNoteDebrisSpawner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_GameTweaker/Patches/PNoteDebrisSpawner.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_GameTweaker/Patches/PObstacleSaberSparkleEffectManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_GameTweaker/Patches/PObstacleSaberSparkleEffectManager.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_GameTweaker/Patches/PPlayerHeightSettingsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_GameTweaker/Patches/PPlayerHeightSettingsController.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_GameTweaker/Patches/PPlayerSettingsPanelController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_GameTweaker/Patches/PPlayerSettingsPanelController.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_GameTweaker/Patches/PSaberBurnMarkArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_GameTweaker/Patches/PSaberBurnMarkArea.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_GameTweaker/Patches/PSaberBurnMarkSparkles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_GameTweaker/Patches/PSaberBurnMarkSparkles.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_GameTweaker/Patches/PSaberClashEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_GameTweaker/Patches/PSaberClashEffect.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_GameTweaker/Patches/PStandardLevelDetailView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_GameTweaker/Patches/PStandardLevelDetailView.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_GameTweaker/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_GameTweaker/Plugin.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_GameTweaker/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_GameTweaker/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_GameTweaker/Resources/Delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_GameTweaker/Resources/Delete.png -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_GameTweaker/UI/SettingsLeftView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_GameTweaker/UI/SettingsLeftView.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_GameTweaker/UI/SettingsMainView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_GameTweaker/UI/SettingsMainView.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_GameTweaker/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_GameTweaker/manifest.json -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_MenuMusic/BSIPA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_MenuMusic/BSIPA.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_MenuMusic/BeatSaberPlus_MenuMusic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_MenuMusic/BeatSaberPlus_MenuMusic.csproj -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_MenuMusic/BeatSaberPlus_MenuMusic.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_MenuMusic/BeatSaberPlus_MenuMusic.csproj.user -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_MenuMusic/BuildTargets.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_MenuMusic/BuildTargets.targets -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Data/CustomMusicProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Data/CustomMusicProvider.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Data/EMusicProviderType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Data/EMusicProviderType.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Data/GameMusicProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Data/GameMusicProvider.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Data/IMusicProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Data/IMusicProvider.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Data/Music.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Data/Music.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Logger.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/MMConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/MMConfig.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/MenuMusic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/MenuMusic.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Patches/PSongPreviewPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Patches/PSongPreviewPlayer.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Resources/BackgroundMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Resources/BackgroundMask.png -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Resources/CoverMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Resources/CoverMask.png -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Resources/DefaultCover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Resources/DefaultCover.png -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Resources/Glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Resources/Glass.png -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Resources/Next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Resources/Next.png -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Resources/Originals.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Resources/Originals.rar -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Resources/Pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Resources/Pause.png -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Resources/Play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Resources/Play.png -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Resources/Playlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Resources/Playlist.png -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Resources/Prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Resources/Prev.png -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Resources/Rand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Resources/Rand.png -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Resources/Sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Resources/Sound.png -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/UI/PlayerFloatingPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/UI/PlayerFloatingPanel.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/UI/SettingsLeftView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/UI/SettingsLeftView.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/UI/SettingsMainView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/UI/SettingsMainView.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Utils/ArtProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_MenuMusic/ChatPlexMod_MenuMusic/Utils/ArtProvider.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_MenuMusic/ModulePresence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_MenuMusic/ModulePresence.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_MenuMusic/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_MenuMusic/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_MenuMusic/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_MenuMusic/manifest.json -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_NoteTweaker/BeatSaberPlus_NoteTweaker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_NoteTweaker/BeatSaberPlus_NoteTweaker.csproj -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_NoteTweaker/BeatSaberPlus_NoteTweaker.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_NoteTweaker/BeatSaberPlus_NoteTweaker.csproj.user -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_NoteTweaker/BuildTargets.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_NoteTweaker/BuildTargets.targets -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_NoteTweaker/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_NoteTweaker/Logger.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_NoteTweaker/NTConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_NoteTweaker/NTConfig.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_NoteTweaker/NoteTweaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_NoteTweaker/NoteTweaker.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_NoteTweaker/Patches/PBombNoteController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_NoteTweaker/Patches/PBombNoteController.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_NoteTweaker/Patches/PBurstSliderGameNoteController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_NoteTweaker/Patches/PBurstSliderGameNoteController.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_NoteTweaker/Patches/PColorNoteVisuals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_NoteTweaker/Patches/PColorNoteVisuals.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_NoteTweaker/Patches/PGameNoteController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_NoteTweaker/Patches/PGameNoteController.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_NoteTweaker/Patches/PSliderController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_NoteTweaker/Patches/PSliderController.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_NoteTweaker/Patches/PSliderHapticFeedbackInteractionEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_NoteTweaker/Patches/PSliderHapticFeedbackInteractionEffect.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_NoteTweaker/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_NoteTweaker/Plugin.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_NoteTweaker/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_NoteTweaker/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_NoteTweaker/UI/Modals/ProfileImportModal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_NoteTweaker/UI/Modals/ProfileImportModal.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_NoteTweaker/UI/SettingsLeftView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_NoteTweaker/UI/SettingsLeftView.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_NoteTweaker/UI/SettingsMainView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_NoteTweaker/UI/SettingsMainView.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_NoteTweaker/UI/SettingsRightView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_NoteTweaker/UI/SettingsRightView.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_NoteTweaker/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_NoteTweaker/manifest.json -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_SongChartVisualizer/BSIPA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_SongChartVisualizer/BSIPA.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_SongChartVisualizer/BeatSaberPlus_SongChartVisualizer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_SongChartVisualizer/BeatSaberPlus_SongChartVisualizer.csproj -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_SongChartVisualizer/BeatSaberPlus_SongChartVisualizer.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_SongChartVisualizer/BeatSaberPlus_SongChartVisualizer.csproj.user -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_SongChartVisualizer/BuildTargets.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_SongChartVisualizer/BuildTargets.targets -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_SongChartVisualizer/ChatPlexMod_SongChartVisualizer/Data/Graph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_SongChartVisualizer/ChatPlexMod_SongChartVisualizer/Data/Graph.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_SongChartVisualizer/ChatPlexMod_SongChartVisualizer/Data/GraphBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_SongChartVisualizer/ChatPlexMod_SongChartVisualizer/Data/GraphBuilder.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_SongChartVisualizer/ChatPlexMod_SongChartVisualizer/Data/GraphPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_SongChartVisualizer/ChatPlexMod_SongChartVisualizer/Data/GraphPoint.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_SongChartVisualizer/ChatPlexMod_SongChartVisualizer/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_SongChartVisualizer/ChatPlexMod_SongChartVisualizer/Logger.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_SongChartVisualizer/ChatPlexMod_SongChartVisualizer/SCVConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_SongChartVisualizer/ChatPlexMod_SongChartVisualizer/SCVConfig.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_SongChartVisualizer/ChatPlexMod_SongChartVisualizer/SongChartVisualizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_SongChartVisualizer/ChatPlexMod_SongChartVisualizer/SongChartVisualizer.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_SongChartVisualizer/ChatPlexMod_SongChartVisualizer/UI/ChartFloatingPanelView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_SongChartVisualizer/ChatPlexMod_SongChartVisualizer/UI/ChartFloatingPanelView.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_SongChartVisualizer/ChatPlexMod_SongChartVisualizer/UI/SettingsLeftView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_SongChartVisualizer/ChatPlexMod_SongChartVisualizer/UI/SettingsLeftView.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_SongChartVisualizer/ChatPlexMod_SongChartVisualizer/UI/SettingsMainView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_SongChartVisualizer/ChatPlexMod_SongChartVisualizer/UI/SettingsMainView.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_SongChartVisualizer/ChatPlexMod_SongChartVisualizer/UI/SettingsRightView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_SongChartVisualizer/ChatPlexMod_SongChartVisualizer/UI/SettingsRightView.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_SongChartVisualizer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_SongChartVisualizer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_SongChartVisualizer/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_SongChartVisualizer/manifest.json -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_SongOverlay/BeatSaberPlus_SongOverlay.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_SongOverlay/BeatSaberPlus_SongOverlay.csproj -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_SongOverlay/BuildTargets.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_SongOverlay/BuildTargets.targets -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_SongOverlay/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_SongOverlay/Logger.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_SongOverlay/Models/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_SongOverlay/Models/Event.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_SongOverlay/Models/MapInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_SongOverlay/Models/MapInfo.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_SongOverlay/Models/Score.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_SongOverlay/Models/Score.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_SongOverlay/Network/OverlayServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_SongOverlay/Network/OverlayServer.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_SongOverlay/Network/OverlaySession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_SongOverlay/Network/OverlaySession.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_SongOverlay/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_SongOverlay/Plugin.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_SongOverlay/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_SongOverlay/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_SongOverlay/SOConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_SongOverlay/SOConfig.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_SongOverlay/SongOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_SongOverlay/SongOverlay.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_SongOverlay/UI/SettingsLeftView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_SongOverlay/UI/SettingsLeftView.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_SongOverlay/UI/SettingsMainView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_SongOverlay/UI/SettingsMainView.cs -------------------------------------------------------------------------------- /Modules/BeatSaberPlus_SongOverlay/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Modules/BeatSaberPlus_SongOverlay/manifest.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/README.md -------------------------------------------------------------------------------- /Samples/BeatSaberPlus_ModuleTemplate/BeatSaberPlus_ModuleTemplate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Samples/BeatSaberPlus_ModuleTemplate/BeatSaberPlus_ModuleTemplate.csproj -------------------------------------------------------------------------------- /Samples/BeatSaberPlus_ModuleTemplate/BeatSaberPlus_ModuleTemplate.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Samples/BeatSaberPlus_ModuleTemplate/BeatSaberPlus_ModuleTemplate.csproj.user -------------------------------------------------------------------------------- /Samples/BeatSaberPlus_ModuleTemplate/BuildTargets.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Samples/BeatSaberPlus_ModuleTemplate/BuildTargets.targets -------------------------------------------------------------------------------- /Samples/BeatSaberPlus_ModuleTemplate/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Samples/BeatSaberPlus_ModuleTemplate/Logger.cs -------------------------------------------------------------------------------- /Samples/BeatSaberPlus_ModuleTemplate/MTConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Samples/BeatSaberPlus_ModuleTemplate/MTConfig.cs -------------------------------------------------------------------------------- /Samples/BeatSaberPlus_ModuleTemplate/ModuleTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Samples/BeatSaberPlus_ModuleTemplate/ModuleTemplate.cs -------------------------------------------------------------------------------- /Samples/BeatSaberPlus_ModuleTemplate/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Samples/BeatSaberPlus_ModuleTemplate/Plugin.cs -------------------------------------------------------------------------------- /Samples/BeatSaberPlus_ModuleTemplate/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Samples/BeatSaberPlus_ModuleTemplate/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/BeatSaberPlus_ModuleTemplate/UI/SettingsMainView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Samples/BeatSaberPlus_ModuleTemplate/UI/SettingsMainView.cs -------------------------------------------------------------------------------- /Samples/BeatSaberPlus_ModuleTemplate/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/Samples/BeatSaberPlus_ModuleTemplate/manifest.json -------------------------------------------------------------------------------- /SwitchVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardcpp/BeatSaberPlus/HEAD/SwitchVersion.ps1 --------------------------------------------------------------------------------