├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── LCUSharp ├── Http │ ├── Endpoints │ │ ├── EndpointBase.cs │ │ ├── ProcessControl │ │ │ ├── IProcessControlEndpoint.cs │ │ │ └── ProcessControlEndpoint.cs │ │ └── RiotClient │ │ │ ├── IRiotClientEndpoint.cs │ │ │ └── RiotClientEndpoint.cs │ ├── ILeagueRequestHandler.cs │ ├── LeagueRequestHandler.cs │ └── RequestHandler.cs ├── ILeagueClientApi.cs ├── LCUSharp.csproj ├── LeagueClientApi.cs ├── Utility │ ├── LeagueProcessHandler.cs │ └── LockFileHandler.cs └── Websocket │ ├── ILeagueEventHandler.cs │ ├── LeagueEvent.cs │ └── LeagueEventHandler.cs ├── LICENSE ├── LeagueBroadcast.Common ├── Data │ ├── DTO │ │ ├── Champion.cs │ │ └── SummonerSpell.cs │ └── RIOT │ │ ├── ChampionLevel.cs │ │ ├── ItemCost.cs │ │ └── ItemData.cs ├── Http │ ├── DownloadProcessEventArgument.cs │ ├── FileDownloader.cs │ ├── HttpUtils.cs │ └── RestRequester.cs ├── LeagueBroadcast.Common.csproj ├── Log.cs └── Utils │ ├── ByteUtils.cs │ ├── CircularBuffer.cs │ ├── DictionaryUtils.cs │ ├── HexStringJsonConverter.cs │ ├── NumberToStringJsonConverter.cs │ ├── StringUtils.cs │ └── StringVersion.cs ├── LeagueBroadcast.Farsight ├── FarsightController.cs ├── LeagueBroadcast.Farsight.csproj ├── Memory.cs ├── Object │ └── GameObject.cs ├── README.md └── Snapshot.cs ├── LeagueBroadcast.Trinket ├── LeagueBroadcast.Trinket.csproj ├── LiveEvent.cs ├── LiveEventConnector.cs └── Program.cs ├── LeagueBroadcast.Update ├── GitHubReleaseAsset.cs ├── GitHubReleaseInfo.cs ├── GitHubRemoteEndpoint.cs └── LeagueBroadcast.Update.csproj ├── LeagueBroadcast.sln ├── LeagueBroadcast ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── Assets │ ├── Icons │ │ ├── BlueEssence.ico │ │ ├── JglIcon.ico │ │ ├── LeagueNew.ico │ │ └── MidIcon.ico │ └── Images │ │ ├── ArrowsDown.png │ │ ├── ArrowsDownWhite.png │ │ ├── BE_icon.png │ │ ├── LeagueOfLegendsIcon.png │ │ ├── TwitterSocial.png │ │ └── discord-mark-white.png ├── ChampSelect │ ├── Data │ │ ├── Config │ │ │ ├── FrontEndConfig.cs │ │ │ ├── PickBanConfig.cs │ │ │ └── TeamConfig.cs │ │ ├── DTO │ │ │ ├── Ban.cs │ │ │ ├── Meta.cs │ │ │ ├── Pick.cs │ │ │ ├── PickBan.cs │ │ │ ├── Team.cs │ │ │ └── Version.cs │ │ └── LCU │ │ │ ├── Action.cs │ │ │ ├── Cell.cs │ │ │ ├── Session.cs │ │ │ ├── Summoner.cs │ │ │ └── Timer.cs │ ├── Events │ │ ├── ChampSelectEnd.cs │ │ ├── ChampSelectStart.cs │ │ ├── Heartbeat.cs │ │ ├── NewAction.cs │ │ └── NewState.cs │ └── StateInfo │ │ ├── Converter.cs │ │ ├── CurrentState.cs │ │ ├── State.cs │ │ └── StateData.cs ├── Common │ ├── Controllers │ │ ├── AppStateController.cs │ │ ├── AppUpdateController.cs │ │ ├── BroadcastController.cs │ │ ├── ConfigController.cs │ │ ├── GameInputController.cs │ │ ├── ITickable.cs │ │ ├── IngameController.cs │ │ ├── PickBanController.cs │ │ └── ReplayAPIController.cs │ ├── Data │ │ ├── Config │ │ │ ├── ComponentConfig.cs │ │ │ ├── ExtendedTeamConfig.cs │ │ │ ├── JSONConfig.cs │ │ │ └── JSONConfigProvider.cs │ │ └── Provider │ │ │ └── DataDragon.cs │ └── Events │ │ ├── LeagueEvent.cs │ │ └── OverlayConfig.cs ├── Http │ ├── EmbedIOServer.cs │ ├── IngameWSClient.cs │ ├── PickBanConnector.cs │ └── WSServer.cs ├── Ingame │ ├── Data │ │ ├── Config │ │ │ ├── FarsightConfig.cs │ │ │ └── IngameConfig.cs │ │ ├── Frontend │ │ │ ├── FrontEndTeam.cs │ │ │ ├── LocalFont.cs │ │ │ └── ScoreboardConfig.cs │ │ ├── LBH │ │ │ ├── InfoSidePage.cs │ │ │ ├── Inhibitor.cs │ │ │ ├── Objectives │ │ │ │ ├── BackEndObjective.cs │ │ │ │ ├── FrontEndObjective.cs │ │ │ │ ├── Objective.cs │ │ │ │ └── UpcomingObjective.cs │ │ │ ├── PlayerTab.cs │ │ │ └── Team.cs │ │ ├── Provider │ │ │ ├── IngameDataProvider.cs │ │ │ ├── LiveEventsDataProvider.cs │ │ │ └── ReplayDataProvider.cs │ │ ├── RIOT │ │ │ ├── GameMetaData.cs │ │ │ ├── Item.cs │ │ │ ├── Player.cs │ │ │ ├── Rune.cs │ │ │ ├── RuneList.cs │ │ │ ├── Score.cs │ │ │ ├── Summoner.cs │ │ │ ├── SummonerList.cs │ │ │ └── Turret.cs │ │ └── Replay │ │ │ ├── Color.cs │ │ │ ├── Game.cs │ │ │ ├── InterfaceState.cs │ │ │ ├── Playback.cs │ │ │ ├── Recording.cs │ │ │ ├── Render.cs │ │ │ ├── Sequence.cs │ │ │ ├── SequenceVector3.cs │ │ │ ├── SequenceVectorEntry.cs │ │ │ └── Vector3.cs │ ├── Events │ │ ├── BuffDespawn.cs │ │ ├── GameEnd.cs │ │ ├── GamePause.cs │ │ ├── GameStart.cs │ │ ├── GameUnpause.cs │ │ ├── Heartbeat.cs │ │ ├── IngameOverlay.cs │ │ ├── ItemCompleted.cs │ │ ├── ObjectiveKilled.cs │ │ ├── ObjectiveSpawn.cs │ │ ├── PlayerLevelUp.cs │ │ ├── RiotEvent.cs │ │ └── RiotEventList.cs │ └── State │ │ ├── State.cs │ │ └── StateData.cs ├── LeagueBroadcast.csproj ├── MVVM │ ├── Controls │ │ ├── HotKeyTextBox.cs │ │ └── ToggleSwitch.cs │ ├── Converters │ │ ├── BooleanToColorConverter.cs │ │ ├── InvertableBooleanToVisibilityConverter.cs │ │ ├── StringToImageSourceConverter.cs │ │ └── ToggleSwitchOffsetConverter.cs │ ├── Core │ │ ├── DelegateCommand.cs │ │ ├── DependencyObjectExtension.cs │ │ ├── InstantBinding.cs │ │ ├── ObservableObject.cs │ │ └── RelayCommand.cs │ ├── DragDrop │ │ ├── DragAdorner.cs │ │ ├── ListViewDragDropManager.cs │ │ └── MouseUtilities.cs │ ├── Models │ │ └── HotKey.cs │ ├── Resources │ │ └── ColorStyles.xaml │ ├── Theme │ │ ├── CloseButtonTheme.xaml │ │ ├── CollapsableStackPanelTheme.xaml │ │ ├── ColorSelectButtonTheme.xaml │ │ ├── ComboBoxTheme.xaml │ │ ├── ConnectionStatusTheme.xaml │ │ ├── GenericToggle.xaml │ │ ├── MenuButtonTheme.xaml │ │ ├── MinimizeButtonTheme.xaml │ │ ├── StartupButtonTheme.xaml │ │ └── TextBoxTheme.xaml │ ├── View │ │ ├── Collapsed │ │ │ ├── IngameCollapsedView.xaml │ │ │ ├── IngameCollapsedView.xaml.cs │ │ │ ├── PickBanCollapsedView.xaml │ │ │ ├── PickBanCollapsedView.xaml.cs │ │ │ ├── PostGameCollapsedView.xaml │ │ │ └── PostGameCollapsedView.xaml.cs │ │ ├── ColorPickerWindow.xaml │ │ ├── ColorPickerWindow.xaml.cs │ │ ├── HomeView.xaml │ │ ├── HomeView.xaml.cs │ │ ├── InfoEditView.xaml │ │ ├── InfoEditView.xaml.cs │ │ ├── IngameTeamsView.xaml │ │ ├── IngameTeamsView.xaml.cs │ │ ├── IngameView.xaml │ │ ├── IngameView.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── PickBanView.xaml │ │ ├── PickBanView.xaml.cs │ │ ├── PostGameView.xaml │ │ ├── PostGameView.xaml.cs │ │ ├── SettingsView.xaml │ │ ├── SettingsView.xaml.cs │ │ ├── StartupWindow.xaml │ │ └── StartupWindow.xaml.cs │ └── ViewModel │ │ ├── ColorPickerViewModel.cs │ │ ├── ConnectionStatusViewModel.cs │ │ ├── HomeViewModel.cs │ │ ├── InfoEditViewModel.cs │ │ ├── IngameTeamsViewModel.cs │ │ ├── IngameViewModel.cs │ │ ├── MainViewModel.cs │ │ ├── PickBanConfigViewModel.cs │ │ ├── PickBanViewModel.cs │ │ ├── PostGameViewModel.cs │ │ ├── SettingsViewModel.cs │ │ ├── StartupViewModel.cs │ │ └── TeamConfigViewModel.cs └── OperatingSystem │ ├── Extensions.cs │ ├── GlobalHotKey.cs │ ├── Input.cs │ ├── ProcessEventArguments.cs │ └── ProcessEventWatcher.cs ├── Offsets ├── Offsets-11.10.1.json ├── Offsets-11.11.1.json ├── Offsets-11.12.1.json ├── Offsets-11.13.1.json ├── Offsets-11.14.1.json ├── Offsets-11.15.1.json ├── Offsets-11.16.1.json ├── Offsets-11.17.1.json ├── Offsets-11.18.1.json ├── Offsets-11.19.1.json ├── Offsets-11.20.1.json ├── Offsets-11.21.1.json ├── Offsets-11.22.1.json ├── Offsets-11.23.1.json ├── Offsets-11.24.1.json ├── Offsets-11.9.1.json ├── Offsets-12.1.1.json ├── Offsets-12.10.1.json ├── Offsets-12.11.1.json ├── Offsets-12.12.1.json ├── Offsets-12.14.1.json ├── Offsets-12.15.1.json ├── Offsets-12.16.1.json ├── Offsets-12.17.1.json ├── Offsets-12.18.1.json ├── Offsets-12.19.1.json ├── Offsets-12.2.1.json ├── Offsets-12.20.1.json ├── Offsets-12.21.1.json ├── Offsets-12.22.1.json ├── Offsets-12.23.1.json ├── Offsets-12.3.1.json ├── Offsets-12.4.1.json ├── Offsets-12.5.1.json ├── Offsets-12.6.1.json ├── Offsets-12.7.1.json ├── Offsets-12.8.1.json ├── Offsets-12.9.1.json ├── Offsets-13.1.1.json ├── Offsets-13.10.1.json ├── Offsets-13.11.1.json ├── Offsets-13.11.2.json ├── Offsets-13.12.1.json ├── Offsets-13.13.1.json ├── Offsets-13.14.1.json ├── Offsets-13.14.2.json ├── Offsets-13.15.1.json ├── Offsets-13.16.1.json ├── Offsets-13.17.1.json ├── Offsets-13.18.1.json ├── Offsets-13.19.1.json ├── Offsets-13.20.1.json ├── Offsets-13.21.1.json ├── Offsets-13.21.2.json ├── Offsets-13.22.1.json ├── Offsets-13.23.1.json ├── Offsets-13.24.1.json ├── Offsets-13.3.1.json ├── Offsets-13.4.1.json ├── Offsets-13.4.2.json ├── Offsets-13.5.1.json ├── Offsets-13.6.1.json ├── Offsets-13.6.2.json ├── Offsets-13.7.1.json ├── Offsets-13.8.1.json ├── Offsets-13.9.1.json ├── Offsets-14.1.1.json ├── Offsets-14.2.1.json ├── Offsets-14.3.1.json ├── Offsets-14.4.1.json ├── Offsets-14.5.1.json └── Offsets-14.6.1.json ├── Overlays ├── ingame │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── .parcel-cache │ │ ├── 0f817512aa19eef7.txt │ │ ├── be421f5ad77beb1a │ │ ├── data.mdb │ │ ├── faf76a89a5ae82aa │ │ └── lock.mdb │ ├── GoldBackground.psd │ ├── LICENSE │ ├── PopUpTemplate.png │ ├── ScoreboardMask.psd │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── backgrounds │ │ │ ├── BaronIcon.png │ │ │ ├── BaronTimer.png │ │ │ ├── DragonIcon.png │ │ │ ├── DragonTimer.png │ │ │ ├── GoldGraph.mp4 │ │ │ ├── GoldGraph.png │ │ │ ├── InfoPage.mp4 │ │ │ ├── InfoPage.png │ │ │ ├── Inhibitor.mp4 │ │ │ ├── Inhibitor.png │ │ │ ├── ItemText.png │ │ │ ├── ObjectiveBG.png │ │ │ ├── ObjectiveBGLeft.png │ │ │ ├── Score.mp4 │ │ │ ├── Score.png │ │ │ ├── ScoreTeamIconBGLeft.png │ │ │ └── ScoreTeamIconBGRight.png │ │ ├── images │ │ │ ├── ChampCoverLeft.png │ │ │ ├── ChampCoverRight.png │ │ │ ├── InfoTabSeparator.png │ │ │ ├── ObjectiveCdr.png │ │ │ ├── ObjectiveGold.png │ │ │ ├── ScoreboardCenterIcon.png │ │ │ ├── ScoreboardGold.png │ │ │ ├── baronTimer.png │ │ │ ├── dragons │ │ │ │ ├── scoreboard │ │ │ │ │ ├── chemtechLarge.png │ │ │ │ │ ├── cloudLarge.png │ │ │ │ │ ├── elderLarge.png │ │ │ │ │ ├── fireLarge.png │ │ │ │ │ ├── hextechLarge.png │ │ │ │ │ ├── mountainLarge.png │ │ │ │ │ └── oceanLarge.png │ │ │ │ └── timers │ │ │ │ │ ├── chemtechTimer.png │ │ │ │ │ ├── cloudTimer.png │ │ │ │ │ ├── elderTimer.png │ │ │ │ │ ├── fireTimer.png │ │ │ │ │ ├── hextechTimer.png │ │ │ │ │ ├── mountainTimer.png │ │ │ │ │ └── oceanTimer.png │ │ │ ├── lanes │ │ │ │ ├── bot.svg │ │ │ │ ├── mid.svg │ │ │ │ └── top.svg │ │ │ ├── scoreboardPopUps │ │ │ │ ├── Baron │ │ │ │ │ ├── baronKill.mp4 │ │ │ │ │ ├── baronKill.png │ │ │ │ │ ├── baronSpawn.mp4 │ │ │ │ │ └── baronSpawn.png │ │ │ │ ├── Dragon │ │ │ │ │ ├── Chemtech │ │ │ │ │ │ ├── chemtechKill.mp4 │ │ │ │ │ │ ├── chemtechKill.png │ │ │ │ │ │ ├── chemtechSoul.mp4 │ │ │ │ │ │ ├── chemtechSoul.png │ │ │ │ │ │ ├── chemtechSpawn.mp4 │ │ │ │ │ │ └── chemtechSpawn.png │ │ │ │ │ ├── Cloud │ │ │ │ │ │ ├── cloudKill.mp4 │ │ │ │ │ │ ├── cloudKill.png │ │ │ │ │ │ ├── cloudSoul.mp4 │ │ │ │ │ │ ├── cloudSoul.png │ │ │ │ │ │ ├── cloudSpawn.mp4 │ │ │ │ │ │ └── cloudSpawn.png │ │ │ │ │ ├── Elder │ │ │ │ │ │ ├── elderKill.mp4 │ │ │ │ │ │ ├── elderKill.png │ │ │ │ │ │ ├── elderSpawn.mp4 │ │ │ │ │ │ └── elderSpawn.png │ │ │ │ │ ├── Fire │ │ │ │ │ │ ├── fireKill.mp4 │ │ │ │ │ │ ├── fireKill.png │ │ │ │ │ │ ├── fireSoul.mp4 │ │ │ │ │ │ ├── fireSoul.png │ │ │ │ │ │ ├── fireSpawn.mp4 │ │ │ │ │ │ └── fireSpawn.png │ │ │ │ │ ├── Hextech │ │ │ │ │ │ ├── hextechKill.mp4 │ │ │ │ │ │ ├── hextechKill.png │ │ │ │ │ │ ├── hextechSoul.mp4 │ │ │ │ │ │ ├── hextechSoul.png │ │ │ │ │ │ ├── hextechSpawn.mp4 │ │ │ │ │ │ └── hextechSpawn.png │ │ │ │ │ ├── Mountain │ │ │ │ │ │ ├── mountainKill.mp4 │ │ │ │ │ │ ├── mountainKill.png │ │ │ │ │ │ ├── mountainSoul.mp4 │ │ │ │ │ │ ├── mountainSoul.png │ │ │ │ │ │ ├── mountainSpawn.mp4 │ │ │ │ │ │ └── mountainSpawn.png │ │ │ │ │ └── Ocean │ │ │ │ │ │ ├── oceanKill.mp4 │ │ │ │ │ │ ├── oceanKill.png │ │ │ │ │ │ ├── oceanSoul.mp4 │ │ │ │ │ │ ├── oceanSoul.png │ │ │ │ │ │ ├── oceanSpawn.mp4 │ │ │ │ │ │ └── oceanSpawn.png │ │ │ │ └── Herald │ │ │ │ │ ├── heraldKill.mp4 │ │ │ │ │ ├── heraldKill.png │ │ │ │ │ ├── heraldSpawn.mp4 │ │ │ │ │ └── heraldSpawn.png │ │ │ └── tower.png │ │ └── masks │ │ │ ├── ChampCoverLeft.png │ │ │ ├── ChampCoverRight.png │ │ │ ├── Graph.png │ │ │ ├── InfoPage.png │ │ │ ├── ItemTextLeft.png │ │ │ ├── ItemTextRight.png │ │ │ ├── PopUpMask.png │ │ │ └── ScoreboardMask.png │ ├── readme.md │ ├── src │ │ ├── PlaceholderConversion.ts │ │ ├── convert │ │ │ ├── convertGoldData.ts │ │ │ └── windowUtils.ts │ │ ├── data │ │ │ ├── RegionMask.ts │ │ │ ├── ValueBar.ts │ │ │ ├── config │ │ │ │ └── overlayConfig.ts │ │ │ ├── frontEndObjective.ts │ │ │ ├── frontEndTeam.ts │ │ │ ├── goldEntry.ts │ │ │ ├── infoSidePage.ts │ │ │ ├── inhibitor.ts │ │ │ ├── objective.ts │ │ │ ├── playerInfoTab.ts │ │ │ ├── scoreboardConfig.ts │ │ │ ├── stateData.ts │ │ │ └── upcomingObjective.ts │ │ ├── index.html │ │ ├── main.ts │ │ ├── scenes │ │ │ └── IngameScene.ts │ │ ├── style.css │ │ ├── util │ │ │ ├── ColorUtils.ts │ │ │ ├── Dictionary.ts │ │ │ ├── Queue.ts │ │ │ ├── TextUtils.ts │ │ │ ├── Utils.ts │ │ │ ├── Vector2.ts │ │ │ └── Vector4.ts │ │ ├── variables.ts │ │ └── visual │ │ │ ├── GraphVisual.ts │ │ │ ├── InfoPageVisual.ts │ │ │ ├── InhibitorVisual.ts │ │ │ ├── ItemScoreboardVisual.ts │ │ │ ├── ItemVisual.ts │ │ │ ├── LevelUpScoreboardVisual.ts │ │ │ ├── LevelUpVisual.ts │ │ │ ├── ObjectivePopUpVisual.ts │ │ │ ├── ObjectiveTimerVisual.ts │ │ │ ├── PowerPlayVisual.ts │ │ │ ├── ScoreboardVisual.ts │ │ │ ├── VideoPopUpVisual.ts │ │ │ ├── VisualComponent.ts │ │ │ └── VisualElement.ts │ └── tsconfig.json └── pickban │ ├── .env │ ├── .gitignore │ ├── README.md │ ├── config │ ├── env.js │ ├── jest │ │ ├── cssTransform.js │ │ └── fileTransform.js │ ├── modules.js │ ├── paths.js │ ├── pnpTs.js │ ├── webpack.config.js │ └── webpackDevServer.config.js │ ├── installPB.bat │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── frontend-lib.js │ ├── index.html │ └── robots.txt │ ├── runFrontend.bat │ ├── scripts │ ├── build.js │ ├── start.js │ └── test.js │ ├── src │ ├── App.jsx │ ├── assets │ │ ├── BlueEssence.png │ │ ├── ban_placeholder.svg │ │ ├── bot_splash_placeholder.svg │ │ ├── example_logo.png │ │ ├── fonts │ │ │ ├── Raleway-Light.ttf │ │ │ ├── Raleway-Medium.ttf │ │ │ ├── Raleway-Regular.ttf │ │ │ ├── Rawline-Medium.ttf │ │ │ └── amarurgt.ttf │ │ ├── jglIcon.png │ │ ├── jung_splash_placeholder.svg │ │ ├── jungle-game-position-icon-league-600w-1819473404.webp │ │ ├── midIcon.png │ │ ├── mid_splash_placeholder.svg │ │ ├── munich-esports-logo-black.png │ │ ├── munich-esports-logo-color.png │ │ ├── munich-esports-logo-white.png │ │ ├── sup_splash_placeholder.svg │ │ └── top_splash_placeholder.svg │ ├── convertState.js │ ├── europe │ │ ├── Ban.jsx │ │ ├── Overlay.jsx │ │ ├── Pick.jsx │ │ └── style │ │ │ ├── animation.less │ │ │ ├── bans.less │ │ │ ├── fonts.less │ │ │ ├── index.less │ │ │ ├── picks.less │ │ │ ├── team.less │ │ │ ├── timer.less │ │ │ └── variables.less │ ├── index.css │ ├── index.js │ └── serviceWorker.js │ └── yarn.lock └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/.gitignore -------------------------------------------------------------------------------- /LCUSharp/Http/Endpoints/EndpointBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LCUSharp/Http/Endpoints/EndpointBase.cs -------------------------------------------------------------------------------- /LCUSharp/Http/Endpoints/ProcessControl/IProcessControlEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LCUSharp/Http/Endpoints/ProcessControl/IProcessControlEndpoint.cs -------------------------------------------------------------------------------- /LCUSharp/Http/Endpoints/ProcessControl/ProcessControlEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LCUSharp/Http/Endpoints/ProcessControl/ProcessControlEndpoint.cs -------------------------------------------------------------------------------- /LCUSharp/Http/Endpoints/RiotClient/IRiotClientEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LCUSharp/Http/Endpoints/RiotClient/IRiotClientEndpoint.cs -------------------------------------------------------------------------------- /LCUSharp/Http/Endpoints/RiotClient/RiotClientEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LCUSharp/Http/Endpoints/RiotClient/RiotClientEndpoint.cs -------------------------------------------------------------------------------- /LCUSharp/Http/ILeagueRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LCUSharp/Http/ILeagueRequestHandler.cs -------------------------------------------------------------------------------- /LCUSharp/Http/LeagueRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LCUSharp/Http/LeagueRequestHandler.cs -------------------------------------------------------------------------------- /LCUSharp/Http/RequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LCUSharp/Http/RequestHandler.cs -------------------------------------------------------------------------------- /LCUSharp/ILeagueClientApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LCUSharp/ILeagueClientApi.cs -------------------------------------------------------------------------------- /LCUSharp/LCUSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LCUSharp/LCUSharp.csproj -------------------------------------------------------------------------------- /LCUSharp/LeagueClientApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LCUSharp/LeagueClientApi.cs -------------------------------------------------------------------------------- /LCUSharp/Utility/LeagueProcessHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LCUSharp/Utility/LeagueProcessHandler.cs -------------------------------------------------------------------------------- /LCUSharp/Utility/LockFileHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LCUSharp/Utility/LockFileHandler.cs -------------------------------------------------------------------------------- /LCUSharp/Websocket/ILeagueEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LCUSharp/Websocket/ILeagueEventHandler.cs -------------------------------------------------------------------------------- /LCUSharp/Websocket/LeagueEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LCUSharp/Websocket/LeagueEvent.cs -------------------------------------------------------------------------------- /LCUSharp/Websocket/LeagueEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LCUSharp/Websocket/LeagueEventHandler.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LICENSE -------------------------------------------------------------------------------- /LeagueBroadcast.Common/Data/DTO/Champion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast.Common/Data/DTO/Champion.cs -------------------------------------------------------------------------------- /LeagueBroadcast.Common/Data/DTO/SummonerSpell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast.Common/Data/DTO/SummonerSpell.cs -------------------------------------------------------------------------------- /LeagueBroadcast.Common/Data/RIOT/ChampionLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast.Common/Data/RIOT/ChampionLevel.cs -------------------------------------------------------------------------------- /LeagueBroadcast.Common/Data/RIOT/ItemCost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast.Common/Data/RIOT/ItemCost.cs -------------------------------------------------------------------------------- /LeagueBroadcast.Common/Data/RIOT/ItemData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast.Common/Data/RIOT/ItemData.cs -------------------------------------------------------------------------------- /LeagueBroadcast.Common/Http/DownloadProcessEventArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast.Common/Http/DownloadProcessEventArgument.cs -------------------------------------------------------------------------------- /LeagueBroadcast.Common/Http/FileDownloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast.Common/Http/FileDownloader.cs -------------------------------------------------------------------------------- /LeagueBroadcast.Common/Http/HttpUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast.Common/Http/HttpUtils.cs -------------------------------------------------------------------------------- /LeagueBroadcast.Common/Http/RestRequester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast.Common/Http/RestRequester.cs -------------------------------------------------------------------------------- /LeagueBroadcast.Common/LeagueBroadcast.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast.Common/LeagueBroadcast.Common.csproj -------------------------------------------------------------------------------- /LeagueBroadcast.Common/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast.Common/Log.cs -------------------------------------------------------------------------------- /LeagueBroadcast.Common/Utils/ByteUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast.Common/Utils/ByteUtils.cs -------------------------------------------------------------------------------- /LeagueBroadcast.Common/Utils/CircularBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast.Common/Utils/CircularBuffer.cs -------------------------------------------------------------------------------- /LeagueBroadcast.Common/Utils/DictionaryUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast.Common/Utils/DictionaryUtils.cs -------------------------------------------------------------------------------- /LeagueBroadcast.Common/Utils/HexStringJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast.Common/Utils/HexStringJsonConverter.cs -------------------------------------------------------------------------------- /LeagueBroadcast.Common/Utils/NumberToStringJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast.Common/Utils/NumberToStringJsonConverter.cs -------------------------------------------------------------------------------- /LeagueBroadcast.Common/Utils/StringUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast.Common/Utils/StringUtils.cs -------------------------------------------------------------------------------- /LeagueBroadcast.Common/Utils/StringVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast.Common/Utils/StringVersion.cs -------------------------------------------------------------------------------- /LeagueBroadcast.Farsight/FarsightController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast.Farsight/FarsightController.cs -------------------------------------------------------------------------------- /LeagueBroadcast.Farsight/LeagueBroadcast.Farsight.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast.Farsight/LeagueBroadcast.Farsight.csproj -------------------------------------------------------------------------------- /LeagueBroadcast.Farsight/Memory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast.Farsight/Memory.cs -------------------------------------------------------------------------------- /LeagueBroadcast.Farsight/Object/GameObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast.Farsight/Object/GameObject.cs -------------------------------------------------------------------------------- /LeagueBroadcast.Farsight/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast.Farsight/README.md -------------------------------------------------------------------------------- /LeagueBroadcast.Farsight/Snapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast.Farsight/Snapshot.cs -------------------------------------------------------------------------------- /LeagueBroadcast.Trinket/LeagueBroadcast.Trinket.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast.Trinket/LeagueBroadcast.Trinket.csproj -------------------------------------------------------------------------------- /LeagueBroadcast.Trinket/LiveEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast.Trinket/LiveEvent.cs -------------------------------------------------------------------------------- /LeagueBroadcast.Trinket/LiveEventConnector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast.Trinket/LiveEventConnector.cs -------------------------------------------------------------------------------- /LeagueBroadcast.Trinket/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast.Trinket/Program.cs -------------------------------------------------------------------------------- /LeagueBroadcast.Update/GitHubReleaseAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast.Update/GitHubReleaseAsset.cs -------------------------------------------------------------------------------- /LeagueBroadcast.Update/GitHubReleaseInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast.Update/GitHubReleaseInfo.cs -------------------------------------------------------------------------------- /LeagueBroadcast.Update/GitHubRemoteEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast.Update/GitHubRemoteEndpoint.cs -------------------------------------------------------------------------------- /LeagueBroadcast.Update/LeagueBroadcast.Update.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast.Update/LeagueBroadcast.Update.csproj -------------------------------------------------------------------------------- /LeagueBroadcast.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast.sln -------------------------------------------------------------------------------- /LeagueBroadcast/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/App.xaml -------------------------------------------------------------------------------- /LeagueBroadcast/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/App.xaml.cs -------------------------------------------------------------------------------- /LeagueBroadcast/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/AssemblyInfo.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Assets/Icons/BlueEssence.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Assets/Icons/BlueEssence.ico -------------------------------------------------------------------------------- /LeagueBroadcast/Assets/Icons/JglIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Assets/Icons/JglIcon.ico -------------------------------------------------------------------------------- /LeagueBroadcast/Assets/Icons/LeagueNew.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Assets/Icons/LeagueNew.ico -------------------------------------------------------------------------------- /LeagueBroadcast/Assets/Icons/MidIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Assets/Icons/MidIcon.ico -------------------------------------------------------------------------------- /LeagueBroadcast/Assets/Images/ArrowsDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Assets/Images/ArrowsDown.png -------------------------------------------------------------------------------- /LeagueBroadcast/Assets/Images/ArrowsDownWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Assets/Images/ArrowsDownWhite.png -------------------------------------------------------------------------------- /LeagueBroadcast/Assets/Images/BE_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Assets/Images/BE_icon.png -------------------------------------------------------------------------------- /LeagueBroadcast/Assets/Images/LeagueOfLegendsIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Assets/Images/LeagueOfLegendsIcon.png -------------------------------------------------------------------------------- /LeagueBroadcast/Assets/Images/TwitterSocial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Assets/Images/TwitterSocial.png -------------------------------------------------------------------------------- /LeagueBroadcast/Assets/Images/discord-mark-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Assets/Images/discord-mark-white.png -------------------------------------------------------------------------------- /LeagueBroadcast/ChampSelect/Data/Config/FrontEndConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/ChampSelect/Data/Config/FrontEndConfig.cs -------------------------------------------------------------------------------- /LeagueBroadcast/ChampSelect/Data/Config/PickBanConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/ChampSelect/Data/Config/PickBanConfig.cs -------------------------------------------------------------------------------- /LeagueBroadcast/ChampSelect/Data/Config/TeamConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/ChampSelect/Data/Config/TeamConfig.cs -------------------------------------------------------------------------------- /LeagueBroadcast/ChampSelect/Data/DTO/Ban.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/ChampSelect/Data/DTO/Ban.cs -------------------------------------------------------------------------------- /LeagueBroadcast/ChampSelect/Data/DTO/Meta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/ChampSelect/Data/DTO/Meta.cs -------------------------------------------------------------------------------- /LeagueBroadcast/ChampSelect/Data/DTO/Pick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/ChampSelect/Data/DTO/Pick.cs -------------------------------------------------------------------------------- /LeagueBroadcast/ChampSelect/Data/DTO/PickBan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/ChampSelect/Data/DTO/PickBan.cs -------------------------------------------------------------------------------- /LeagueBroadcast/ChampSelect/Data/DTO/Team.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/ChampSelect/Data/DTO/Team.cs -------------------------------------------------------------------------------- /LeagueBroadcast/ChampSelect/Data/DTO/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/ChampSelect/Data/DTO/Version.cs -------------------------------------------------------------------------------- /LeagueBroadcast/ChampSelect/Data/LCU/Action.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/ChampSelect/Data/LCU/Action.cs -------------------------------------------------------------------------------- /LeagueBroadcast/ChampSelect/Data/LCU/Cell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/ChampSelect/Data/LCU/Cell.cs -------------------------------------------------------------------------------- /LeagueBroadcast/ChampSelect/Data/LCU/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/ChampSelect/Data/LCU/Session.cs -------------------------------------------------------------------------------- /LeagueBroadcast/ChampSelect/Data/LCU/Summoner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/ChampSelect/Data/LCU/Summoner.cs -------------------------------------------------------------------------------- /LeagueBroadcast/ChampSelect/Data/LCU/Timer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/ChampSelect/Data/LCU/Timer.cs -------------------------------------------------------------------------------- /LeagueBroadcast/ChampSelect/Events/ChampSelectEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/ChampSelect/Events/ChampSelectEnd.cs -------------------------------------------------------------------------------- /LeagueBroadcast/ChampSelect/Events/ChampSelectStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/ChampSelect/Events/ChampSelectStart.cs -------------------------------------------------------------------------------- /LeagueBroadcast/ChampSelect/Events/Heartbeat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/ChampSelect/Events/Heartbeat.cs -------------------------------------------------------------------------------- /LeagueBroadcast/ChampSelect/Events/NewAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/ChampSelect/Events/NewAction.cs -------------------------------------------------------------------------------- /LeagueBroadcast/ChampSelect/Events/NewState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/ChampSelect/Events/NewState.cs -------------------------------------------------------------------------------- /LeagueBroadcast/ChampSelect/StateInfo/Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/ChampSelect/StateInfo/Converter.cs -------------------------------------------------------------------------------- /LeagueBroadcast/ChampSelect/StateInfo/CurrentState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/ChampSelect/StateInfo/CurrentState.cs -------------------------------------------------------------------------------- /LeagueBroadcast/ChampSelect/StateInfo/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/ChampSelect/StateInfo/State.cs -------------------------------------------------------------------------------- /LeagueBroadcast/ChampSelect/StateInfo/StateData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/ChampSelect/StateInfo/StateData.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Common/Controllers/AppStateController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Common/Controllers/AppStateController.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Common/Controllers/AppUpdateController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Common/Controllers/AppUpdateController.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Common/Controllers/BroadcastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Common/Controllers/BroadcastController.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Common/Controllers/ConfigController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Common/Controllers/ConfigController.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Common/Controllers/GameInputController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Common/Controllers/GameInputController.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Common/Controllers/ITickable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Common/Controllers/ITickable.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Common/Controllers/IngameController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Common/Controllers/IngameController.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Common/Controllers/PickBanController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Common/Controllers/PickBanController.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Common/Controllers/ReplayAPIController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Common/Controllers/ReplayAPIController.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Common/Data/Config/ComponentConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Common/Data/Config/ComponentConfig.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Common/Data/Config/ExtendedTeamConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Common/Data/Config/ExtendedTeamConfig.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Common/Data/Config/JSONConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Common/Data/Config/JSONConfig.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Common/Data/Config/JSONConfigProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Common/Data/Config/JSONConfigProvider.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Common/Data/Provider/DataDragon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Common/Data/Provider/DataDragon.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Common/Events/LeagueEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Common/Events/LeagueEvent.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Common/Events/OverlayConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Common/Events/OverlayConfig.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Http/EmbedIOServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Http/EmbedIOServer.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Http/IngameWSClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Http/IngameWSClient.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Http/PickBanConnector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Http/PickBanConnector.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Http/WSServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Http/WSServer.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Data/Config/FarsightConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Data/Config/FarsightConfig.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Data/Config/IngameConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Data/Config/IngameConfig.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Data/Frontend/FrontEndTeam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Data/Frontend/FrontEndTeam.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Data/Frontend/LocalFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Data/Frontend/LocalFont.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Data/Frontend/ScoreboardConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Data/Frontend/ScoreboardConfig.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Data/LBH/InfoSidePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Data/LBH/InfoSidePage.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Data/LBH/Inhibitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Data/LBH/Inhibitor.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Data/LBH/Objectives/BackEndObjective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Data/LBH/Objectives/BackEndObjective.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Data/LBH/Objectives/FrontEndObjective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Data/LBH/Objectives/FrontEndObjective.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Data/LBH/Objectives/Objective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Data/LBH/Objectives/Objective.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Data/LBH/Objectives/UpcomingObjective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Data/LBH/Objectives/UpcomingObjective.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Data/LBH/PlayerTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Data/LBH/PlayerTab.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Data/LBH/Team.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Data/LBH/Team.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Data/Provider/IngameDataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Data/Provider/IngameDataProvider.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Data/Provider/LiveEventsDataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Data/Provider/LiveEventsDataProvider.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Data/Provider/ReplayDataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Data/Provider/ReplayDataProvider.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Data/RIOT/GameMetaData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Data/RIOT/GameMetaData.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Data/RIOT/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Data/RIOT/Item.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Data/RIOT/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Data/RIOT/Player.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Data/RIOT/Rune.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Data/RIOT/Rune.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Data/RIOT/RuneList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Data/RIOT/RuneList.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Data/RIOT/Score.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Data/RIOT/Score.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Data/RIOT/Summoner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Data/RIOT/Summoner.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Data/RIOT/SummonerList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Data/RIOT/SummonerList.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Data/RIOT/Turret.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Data/RIOT/Turret.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Data/Replay/Color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Data/Replay/Color.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Data/Replay/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Data/Replay/Game.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Data/Replay/InterfaceState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Data/Replay/InterfaceState.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Data/Replay/Playback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Data/Replay/Playback.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Data/Replay/Recording.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Data/Replay/Recording.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Data/Replay/Render.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Data/Replay/Render.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Data/Replay/Sequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Data/Replay/Sequence.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Data/Replay/SequenceVector3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Data/Replay/SequenceVector3.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Data/Replay/SequenceVectorEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Data/Replay/SequenceVectorEntry.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Data/Replay/Vector3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Data/Replay/Vector3.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Events/BuffDespawn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Events/BuffDespawn.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Events/GameEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Events/GameEnd.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Events/GamePause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Events/GamePause.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Events/GameStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Events/GameStart.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Events/GameUnpause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Events/GameUnpause.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Events/Heartbeat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Events/Heartbeat.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Events/IngameOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Events/IngameOverlay.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Events/ItemCompleted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Events/ItemCompleted.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Events/ObjectiveKilled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Events/ObjectiveKilled.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Events/ObjectiveSpawn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Events/ObjectiveSpawn.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Events/PlayerLevelUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Events/PlayerLevelUp.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Events/RiotEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Events/RiotEvent.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/Events/RiotEventList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/Events/RiotEventList.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/State/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/State/State.cs -------------------------------------------------------------------------------- /LeagueBroadcast/Ingame/State/StateData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/Ingame/State/StateData.cs -------------------------------------------------------------------------------- /LeagueBroadcast/LeagueBroadcast.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/LeagueBroadcast.csproj -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/Controls/HotKeyTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/Controls/HotKeyTextBox.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/Controls/ToggleSwitch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/Controls/ToggleSwitch.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/Converters/BooleanToColorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/Converters/BooleanToColorConverter.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/Converters/InvertableBooleanToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/Converters/InvertableBooleanToVisibilityConverter.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/Converters/StringToImageSourceConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/Converters/StringToImageSourceConverter.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/Converters/ToggleSwitchOffsetConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/Converters/ToggleSwitchOffsetConverter.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/Core/DelegateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/Core/DelegateCommand.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/Core/DependencyObjectExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/Core/DependencyObjectExtension.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/Core/InstantBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/Core/InstantBinding.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/Core/ObservableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/Core/ObservableObject.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/Core/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/Core/RelayCommand.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/DragDrop/DragAdorner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/DragDrop/DragAdorner.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/DragDrop/ListViewDragDropManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/DragDrop/ListViewDragDropManager.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/DragDrop/MouseUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/DragDrop/MouseUtilities.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/Models/HotKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/Models/HotKey.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/Resources/ColorStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/Resources/ColorStyles.xaml -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/Theme/CloseButtonTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/Theme/CloseButtonTheme.xaml -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/Theme/CollapsableStackPanelTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/Theme/CollapsableStackPanelTheme.xaml -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/Theme/ColorSelectButtonTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/Theme/ColorSelectButtonTheme.xaml -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/Theme/ComboBoxTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/Theme/ComboBoxTheme.xaml -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/Theme/ConnectionStatusTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/Theme/ConnectionStatusTheme.xaml -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/Theme/GenericToggle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/Theme/GenericToggle.xaml -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/Theme/MenuButtonTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/Theme/MenuButtonTheme.xaml -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/Theme/MinimizeButtonTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/Theme/MinimizeButtonTheme.xaml -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/Theme/StartupButtonTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/Theme/StartupButtonTheme.xaml -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/Theme/TextBoxTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/Theme/TextBoxTheme.xaml -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/View/Collapsed/IngameCollapsedView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/View/Collapsed/IngameCollapsedView.xaml -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/View/Collapsed/IngameCollapsedView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/View/Collapsed/IngameCollapsedView.xaml.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/View/Collapsed/PickBanCollapsedView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/View/Collapsed/PickBanCollapsedView.xaml -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/View/Collapsed/PickBanCollapsedView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/View/Collapsed/PickBanCollapsedView.xaml.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/View/Collapsed/PostGameCollapsedView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/View/Collapsed/PostGameCollapsedView.xaml -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/View/Collapsed/PostGameCollapsedView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/View/Collapsed/PostGameCollapsedView.xaml.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/View/ColorPickerWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/View/ColorPickerWindow.xaml -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/View/ColorPickerWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/View/ColorPickerWindow.xaml.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/View/HomeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/View/HomeView.xaml -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/View/HomeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/View/HomeView.xaml.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/View/InfoEditView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/View/InfoEditView.xaml -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/View/InfoEditView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/View/InfoEditView.xaml.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/View/IngameTeamsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/View/IngameTeamsView.xaml -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/View/IngameTeamsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/View/IngameTeamsView.xaml.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/View/IngameView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/View/IngameView.xaml -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/View/IngameView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/View/IngameView.xaml.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/View/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/View/MainWindow.xaml -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/View/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/View/MainWindow.xaml.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/View/PickBanView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/View/PickBanView.xaml -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/View/PickBanView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/View/PickBanView.xaml.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/View/PostGameView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/View/PostGameView.xaml -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/View/PostGameView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/View/PostGameView.xaml.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/View/SettingsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/View/SettingsView.xaml -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/View/SettingsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/View/SettingsView.xaml.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/View/StartupWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/View/StartupWindow.xaml -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/View/StartupWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/View/StartupWindow.xaml.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/ViewModel/ColorPickerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/ViewModel/ColorPickerViewModel.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/ViewModel/ConnectionStatusViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/ViewModel/ConnectionStatusViewModel.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/ViewModel/HomeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/ViewModel/HomeViewModel.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/ViewModel/InfoEditViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/ViewModel/InfoEditViewModel.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/ViewModel/IngameTeamsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/ViewModel/IngameTeamsViewModel.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/ViewModel/IngameViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/ViewModel/IngameViewModel.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/ViewModel/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/ViewModel/MainViewModel.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/ViewModel/PickBanConfigViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/ViewModel/PickBanConfigViewModel.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/ViewModel/PickBanViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/ViewModel/PickBanViewModel.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/ViewModel/PostGameViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/ViewModel/PostGameViewModel.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/ViewModel/SettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/ViewModel/SettingsViewModel.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/ViewModel/StartupViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/ViewModel/StartupViewModel.cs -------------------------------------------------------------------------------- /LeagueBroadcast/MVVM/ViewModel/TeamConfigViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/MVVM/ViewModel/TeamConfigViewModel.cs -------------------------------------------------------------------------------- /LeagueBroadcast/OperatingSystem/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/OperatingSystem/Extensions.cs -------------------------------------------------------------------------------- /LeagueBroadcast/OperatingSystem/GlobalHotKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/OperatingSystem/GlobalHotKey.cs -------------------------------------------------------------------------------- /LeagueBroadcast/OperatingSystem/Input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/OperatingSystem/Input.cs -------------------------------------------------------------------------------- /LeagueBroadcast/OperatingSystem/ProcessEventArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/OperatingSystem/ProcessEventArguments.cs -------------------------------------------------------------------------------- /LeagueBroadcast/OperatingSystem/ProcessEventWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/LeagueBroadcast/OperatingSystem/ProcessEventWatcher.cs -------------------------------------------------------------------------------- /Offsets/Offsets-11.10.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-11.10.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-11.11.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-11.11.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-11.12.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-11.12.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-11.13.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-11.13.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-11.14.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-11.14.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-11.15.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-11.15.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-11.16.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-11.16.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-11.17.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-11.17.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-11.18.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-11.18.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-11.19.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-11.19.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-11.20.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-11.20.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-11.21.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-11.21.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-11.22.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-11.22.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-11.23.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-11.23.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-11.24.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-11.24.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-11.9.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-11.9.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-12.1.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-12.1.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-12.10.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-12.10.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-12.11.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-12.11.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-12.12.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-12.12.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-12.14.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-12.14.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-12.15.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-12.15.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-12.16.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-12.16.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-12.17.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-12.17.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-12.18.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-12.18.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-12.19.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-12.19.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-12.2.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-12.2.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-12.20.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-12.20.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-12.21.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-12.21.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-12.22.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-12.22.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-12.23.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-12.23.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-12.3.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-12.3.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-12.4.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-12.4.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-12.5.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-12.5.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-12.6.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-12.6.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-12.7.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-12.7.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-12.8.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-12.8.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-12.9.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-12.9.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-13.1.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-13.1.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-13.10.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-13.10.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-13.11.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-13.11.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-13.11.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-13.11.2.json -------------------------------------------------------------------------------- /Offsets/Offsets-13.12.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-13.12.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-13.13.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-13.13.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-13.14.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-13.14.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-13.14.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-13.14.2.json -------------------------------------------------------------------------------- /Offsets/Offsets-13.15.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-13.15.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-13.16.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-13.16.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-13.17.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-13.17.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-13.18.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-13.18.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-13.19.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-13.19.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-13.20.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-13.20.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-13.21.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-13.21.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-13.21.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-13.21.2.json -------------------------------------------------------------------------------- /Offsets/Offsets-13.22.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-13.22.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-13.23.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-13.23.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-13.24.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-13.24.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-13.3.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-13.3.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-13.4.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-13.4.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-13.4.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-13.4.2.json -------------------------------------------------------------------------------- /Offsets/Offsets-13.5.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-13.5.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-13.6.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-13.6.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-13.6.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-13.6.2.json -------------------------------------------------------------------------------- /Offsets/Offsets-13.7.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-13.7.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-13.8.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-13.8.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-13.9.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-13.9.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-14.1.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-14.1.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-14.2.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-14.2.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-14.3.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-14.3.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-14.4.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-14.4.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-14.5.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-14.5.1.json -------------------------------------------------------------------------------- /Offsets/Offsets-14.6.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Offsets/Offsets-14.6.1.json -------------------------------------------------------------------------------- /Overlays/ingame/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/.eslintignore -------------------------------------------------------------------------------- /Overlays/ingame/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/.eslintrc.js -------------------------------------------------------------------------------- /Overlays/ingame/.gitignore: -------------------------------------------------------------------------------- 1 | /.cache 2 | /dist 3 | /node_modules 4 | /.DS_Store 5 | -------------------------------------------------------------------------------- /Overlays/ingame/.parcel-cache/0f817512aa19eef7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/.parcel-cache/0f817512aa19eef7.txt -------------------------------------------------------------------------------- /Overlays/ingame/.parcel-cache/be421f5ad77beb1a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/.parcel-cache/be421f5ad77beb1a -------------------------------------------------------------------------------- /Overlays/ingame/.parcel-cache/data.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/.parcel-cache/data.mdb -------------------------------------------------------------------------------- /Overlays/ingame/.parcel-cache/faf76a89a5ae82aa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/.parcel-cache/faf76a89a5ae82aa -------------------------------------------------------------------------------- /Overlays/ingame/.parcel-cache/lock.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/.parcel-cache/lock.mdb -------------------------------------------------------------------------------- /Overlays/ingame/GoldBackground.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/GoldBackground.psd -------------------------------------------------------------------------------- /Overlays/ingame/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/LICENSE -------------------------------------------------------------------------------- /Overlays/ingame/PopUpTemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/PopUpTemplate.png -------------------------------------------------------------------------------- /Overlays/ingame/ScoreboardMask.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/ScoreboardMask.psd -------------------------------------------------------------------------------- /Overlays/ingame/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/package-lock.json -------------------------------------------------------------------------------- /Overlays/ingame/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/package.json -------------------------------------------------------------------------------- /Overlays/ingame/public/backgrounds/BaronIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/backgrounds/BaronIcon.png -------------------------------------------------------------------------------- /Overlays/ingame/public/backgrounds/BaronTimer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/backgrounds/BaronTimer.png -------------------------------------------------------------------------------- /Overlays/ingame/public/backgrounds/DragonIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/backgrounds/DragonIcon.png -------------------------------------------------------------------------------- /Overlays/ingame/public/backgrounds/DragonTimer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/backgrounds/DragonTimer.png -------------------------------------------------------------------------------- /Overlays/ingame/public/backgrounds/GoldGraph.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/backgrounds/GoldGraph.mp4 -------------------------------------------------------------------------------- /Overlays/ingame/public/backgrounds/GoldGraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/backgrounds/GoldGraph.png -------------------------------------------------------------------------------- /Overlays/ingame/public/backgrounds/InfoPage.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/backgrounds/InfoPage.mp4 -------------------------------------------------------------------------------- /Overlays/ingame/public/backgrounds/InfoPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/backgrounds/InfoPage.png -------------------------------------------------------------------------------- /Overlays/ingame/public/backgrounds/Inhibitor.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/backgrounds/Inhibitor.mp4 -------------------------------------------------------------------------------- /Overlays/ingame/public/backgrounds/Inhibitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/backgrounds/Inhibitor.png -------------------------------------------------------------------------------- /Overlays/ingame/public/backgrounds/ItemText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/backgrounds/ItemText.png -------------------------------------------------------------------------------- /Overlays/ingame/public/backgrounds/ObjectiveBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/backgrounds/ObjectiveBG.png -------------------------------------------------------------------------------- /Overlays/ingame/public/backgrounds/ObjectiveBGLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/backgrounds/ObjectiveBGLeft.png -------------------------------------------------------------------------------- /Overlays/ingame/public/backgrounds/Score.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/backgrounds/Score.mp4 -------------------------------------------------------------------------------- /Overlays/ingame/public/backgrounds/Score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/backgrounds/Score.png -------------------------------------------------------------------------------- /Overlays/ingame/public/backgrounds/ScoreTeamIconBGLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/backgrounds/ScoreTeamIconBGLeft.png -------------------------------------------------------------------------------- /Overlays/ingame/public/backgrounds/ScoreTeamIconBGRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/backgrounds/ScoreTeamIconBGRight.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/ChampCoverLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/ChampCoverLeft.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/ChampCoverRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/ChampCoverRight.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/InfoTabSeparator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/InfoTabSeparator.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/ObjectiveCdr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/ObjectiveCdr.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/ObjectiveGold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/ObjectiveGold.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/ScoreboardCenterIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/ScoreboardCenterIcon.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/ScoreboardGold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/ScoreboardGold.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/baronTimer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/baronTimer.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/dragons/scoreboard/chemtechLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/dragons/scoreboard/chemtechLarge.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/dragons/scoreboard/cloudLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/dragons/scoreboard/cloudLarge.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/dragons/scoreboard/elderLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/dragons/scoreboard/elderLarge.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/dragons/scoreboard/fireLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/dragons/scoreboard/fireLarge.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/dragons/scoreboard/hextechLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/dragons/scoreboard/hextechLarge.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/dragons/scoreboard/mountainLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/dragons/scoreboard/mountainLarge.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/dragons/scoreboard/oceanLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/dragons/scoreboard/oceanLarge.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/dragons/timers/chemtechTimer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/dragons/timers/chemtechTimer.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/dragons/timers/cloudTimer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/dragons/timers/cloudTimer.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/dragons/timers/elderTimer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/dragons/timers/elderTimer.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/dragons/timers/fireTimer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/dragons/timers/fireTimer.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/dragons/timers/hextechTimer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/dragons/timers/hextechTimer.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/dragons/timers/mountainTimer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/dragons/timers/mountainTimer.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/dragons/timers/oceanTimer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/dragons/timers/oceanTimer.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/lanes/bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/lanes/bot.svg -------------------------------------------------------------------------------- /Overlays/ingame/public/images/lanes/mid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/lanes/mid.svg -------------------------------------------------------------------------------- /Overlays/ingame/public/images/lanes/top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/lanes/top.svg -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Baron/baronKill.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Baron/baronKill.mp4 -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Baron/baronKill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Baron/baronKill.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Baron/baronSpawn.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Baron/baronSpawn.mp4 -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Baron/baronSpawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Baron/baronSpawn.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Chemtech/chemtechKill.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Chemtech/chemtechKill.mp4 -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Chemtech/chemtechKill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Chemtech/chemtechKill.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Chemtech/chemtechSoul.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Chemtech/chemtechSoul.mp4 -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Chemtech/chemtechSoul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Chemtech/chemtechSoul.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Chemtech/chemtechSpawn.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Chemtech/chemtechSpawn.mp4 -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Chemtech/chemtechSpawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Chemtech/chemtechSpawn.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Cloud/cloudKill.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Cloud/cloudKill.mp4 -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Cloud/cloudKill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Cloud/cloudKill.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Cloud/cloudSoul.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Cloud/cloudSoul.mp4 -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Cloud/cloudSoul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Cloud/cloudSoul.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Cloud/cloudSpawn.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Cloud/cloudSpawn.mp4 -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Cloud/cloudSpawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Cloud/cloudSpawn.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Elder/elderKill.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Elder/elderKill.mp4 -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Elder/elderKill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Elder/elderKill.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Elder/elderSpawn.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Elder/elderSpawn.mp4 -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Elder/elderSpawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Elder/elderSpawn.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Fire/fireKill.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Fire/fireKill.mp4 -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Fire/fireKill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Fire/fireKill.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Fire/fireSoul.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Fire/fireSoul.mp4 -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Fire/fireSoul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Fire/fireSoul.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Fire/fireSpawn.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Fire/fireSpawn.mp4 -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Fire/fireSpawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Fire/fireSpawn.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Hextech/hextechKill.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Hextech/hextechKill.mp4 -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Hextech/hextechKill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Hextech/hextechKill.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Hextech/hextechSoul.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Hextech/hextechSoul.mp4 -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Hextech/hextechSoul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Hextech/hextechSoul.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Hextech/hextechSpawn.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Hextech/hextechSpawn.mp4 -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Hextech/hextechSpawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Hextech/hextechSpawn.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Mountain/mountainKill.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Mountain/mountainKill.mp4 -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Mountain/mountainKill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Mountain/mountainKill.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Mountain/mountainSoul.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Mountain/mountainSoul.mp4 -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Mountain/mountainSoul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Mountain/mountainSoul.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Mountain/mountainSpawn.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Mountain/mountainSpawn.mp4 -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Mountain/mountainSpawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Mountain/mountainSpawn.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Ocean/oceanKill.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Ocean/oceanKill.mp4 -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Ocean/oceanKill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Ocean/oceanKill.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Ocean/oceanSoul.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Ocean/oceanSoul.mp4 -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Ocean/oceanSoul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Ocean/oceanSoul.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Ocean/oceanSpawn.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Ocean/oceanSpawn.mp4 -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Dragon/Ocean/oceanSpawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Dragon/Ocean/oceanSpawn.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Herald/heraldKill.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Herald/heraldKill.mp4 -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Herald/heraldKill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Herald/heraldKill.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Herald/heraldSpawn.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Herald/heraldSpawn.mp4 -------------------------------------------------------------------------------- /Overlays/ingame/public/images/scoreboardPopUps/Herald/heraldSpawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/scoreboardPopUps/Herald/heraldSpawn.png -------------------------------------------------------------------------------- /Overlays/ingame/public/images/tower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/images/tower.png -------------------------------------------------------------------------------- /Overlays/ingame/public/masks/ChampCoverLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/masks/ChampCoverLeft.png -------------------------------------------------------------------------------- /Overlays/ingame/public/masks/ChampCoverRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/masks/ChampCoverRight.png -------------------------------------------------------------------------------- /Overlays/ingame/public/masks/Graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/masks/Graph.png -------------------------------------------------------------------------------- /Overlays/ingame/public/masks/InfoPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/masks/InfoPage.png -------------------------------------------------------------------------------- /Overlays/ingame/public/masks/ItemTextLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/masks/ItemTextLeft.png -------------------------------------------------------------------------------- /Overlays/ingame/public/masks/ItemTextRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/masks/ItemTextRight.png -------------------------------------------------------------------------------- /Overlays/ingame/public/masks/PopUpMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/masks/PopUpMask.png -------------------------------------------------------------------------------- /Overlays/ingame/public/masks/ScoreboardMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/public/masks/ScoreboardMask.png -------------------------------------------------------------------------------- /Overlays/ingame/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/readme.md -------------------------------------------------------------------------------- /Overlays/ingame/src/PlaceholderConversion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/PlaceholderConversion.ts -------------------------------------------------------------------------------- /Overlays/ingame/src/convert/convertGoldData.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Overlays/ingame/src/convert/windowUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/convert/windowUtils.ts -------------------------------------------------------------------------------- /Overlays/ingame/src/data/RegionMask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/data/RegionMask.ts -------------------------------------------------------------------------------- /Overlays/ingame/src/data/ValueBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/data/ValueBar.ts -------------------------------------------------------------------------------- /Overlays/ingame/src/data/config/overlayConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/data/config/overlayConfig.ts -------------------------------------------------------------------------------- /Overlays/ingame/src/data/frontEndObjective.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/data/frontEndObjective.ts -------------------------------------------------------------------------------- /Overlays/ingame/src/data/frontEndTeam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/data/frontEndTeam.ts -------------------------------------------------------------------------------- /Overlays/ingame/src/data/goldEntry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/data/goldEntry.ts -------------------------------------------------------------------------------- /Overlays/ingame/src/data/infoSidePage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/data/infoSidePage.ts -------------------------------------------------------------------------------- /Overlays/ingame/src/data/inhibitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/data/inhibitor.ts -------------------------------------------------------------------------------- /Overlays/ingame/src/data/objective.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/data/objective.ts -------------------------------------------------------------------------------- /Overlays/ingame/src/data/playerInfoTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/data/playerInfoTab.ts -------------------------------------------------------------------------------- /Overlays/ingame/src/data/scoreboardConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/data/scoreboardConfig.ts -------------------------------------------------------------------------------- /Overlays/ingame/src/data/stateData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/data/stateData.ts -------------------------------------------------------------------------------- /Overlays/ingame/src/data/upcomingObjective.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/data/upcomingObjective.ts -------------------------------------------------------------------------------- /Overlays/ingame/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/index.html -------------------------------------------------------------------------------- /Overlays/ingame/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/main.ts -------------------------------------------------------------------------------- /Overlays/ingame/src/scenes/IngameScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/scenes/IngameScene.ts -------------------------------------------------------------------------------- /Overlays/ingame/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/style.css -------------------------------------------------------------------------------- /Overlays/ingame/src/util/ColorUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/util/ColorUtils.ts -------------------------------------------------------------------------------- /Overlays/ingame/src/util/Dictionary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/util/Dictionary.ts -------------------------------------------------------------------------------- /Overlays/ingame/src/util/Queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/util/Queue.ts -------------------------------------------------------------------------------- /Overlays/ingame/src/util/TextUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/util/TextUtils.ts -------------------------------------------------------------------------------- /Overlays/ingame/src/util/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/util/Utils.ts -------------------------------------------------------------------------------- /Overlays/ingame/src/util/Vector2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/util/Vector2.ts -------------------------------------------------------------------------------- /Overlays/ingame/src/util/Vector4.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/util/Vector4.ts -------------------------------------------------------------------------------- /Overlays/ingame/src/variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/variables.ts -------------------------------------------------------------------------------- /Overlays/ingame/src/visual/GraphVisual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/visual/GraphVisual.ts -------------------------------------------------------------------------------- /Overlays/ingame/src/visual/InfoPageVisual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/visual/InfoPageVisual.ts -------------------------------------------------------------------------------- /Overlays/ingame/src/visual/InhibitorVisual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/visual/InhibitorVisual.ts -------------------------------------------------------------------------------- /Overlays/ingame/src/visual/ItemScoreboardVisual.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Overlays/ingame/src/visual/ItemVisual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/visual/ItemVisual.ts -------------------------------------------------------------------------------- /Overlays/ingame/src/visual/LevelUpScoreboardVisual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/visual/LevelUpScoreboardVisual.ts -------------------------------------------------------------------------------- /Overlays/ingame/src/visual/LevelUpVisual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/visual/LevelUpVisual.ts -------------------------------------------------------------------------------- /Overlays/ingame/src/visual/ObjectivePopUpVisual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/visual/ObjectivePopUpVisual.ts -------------------------------------------------------------------------------- /Overlays/ingame/src/visual/ObjectiveTimerVisual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/visual/ObjectiveTimerVisual.ts -------------------------------------------------------------------------------- /Overlays/ingame/src/visual/PowerPlayVisual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/visual/PowerPlayVisual.ts -------------------------------------------------------------------------------- /Overlays/ingame/src/visual/ScoreboardVisual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/visual/ScoreboardVisual.ts -------------------------------------------------------------------------------- /Overlays/ingame/src/visual/VideoPopUpVisual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/visual/VideoPopUpVisual.ts -------------------------------------------------------------------------------- /Overlays/ingame/src/visual/VisualComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/visual/VisualComponent.ts -------------------------------------------------------------------------------- /Overlays/ingame/src/visual/VisualElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/src/visual/VisualElement.ts -------------------------------------------------------------------------------- /Overlays/ingame/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/ingame/tsconfig.json -------------------------------------------------------------------------------- /Overlays/pickban/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_LCSU_BACKEND=localhost:8999 2 | -------------------------------------------------------------------------------- /Overlays/pickban/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/.gitignore -------------------------------------------------------------------------------- /Overlays/pickban/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/README.md -------------------------------------------------------------------------------- /Overlays/pickban/config/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/config/env.js -------------------------------------------------------------------------------- /Overlays/pickban/config/jest/cssTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/config/jest/cssTransform.js -------------------------------------------------------------------------------- /Overlays/pickban/config/jest/fileTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/config/jest/fileTransform.js -------------------------------------------------------------------------------- /Overlays/pickban/config/modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/config/modules.js -------------------------------------------------------------------------------- /Overlays/pickban/config/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/config/paths.js -------------------------------------------------------------------------------- /Overlays/pickban/config/pnpTs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/config/pnpTs.js -------------------------------------------------------------------------------- /Overlays/pickban/config/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/config/webpack.config.js -------------------------------------------------------------------------------- /Overlays/pickban/config/webpackDevServer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/config/webpackDevServer.config.js -------------------------------------------------------------------------------- /Overlays/pickban/installPB.bat: -------------------------------------------------------------------------------- 1 | npm install -------------------------------------------------------------------------------- /Overlays/pickban/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/package-lock.json -------------------------------------------------------------------------------- /Overlays/pickban/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/package.json -------------------------------------------------------------------------------- /Overlays/pickban/public/frontend-lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/public/frontend-lib.js -------------------------------------------------------------------------------- /Overlays/pickban/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/public/index.html -------------------------------------------------------------------------------- /Overlays/pickban/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/public/robots.txt -------------------------------------------------------------------------------- /Overlays/pickban/runFrontend.bat: -------------------------------------------------------------------------------- 1 | npm start -------------------------------------------------------------------------------- /Overlays/pickban/scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/scripts/build.js -------------------------------------------------------------------------------- /Overlays/pickban/scripts/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/scripts/start.js -------------------------------------------------------------------------------- /Overlays/pickban/scripts/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/scripts/test.js -------------------------------------------------------------------------------- /Overlays/pickban/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/src/App.jsx -------------------------------------------------------------------------------- /Overlays/pickban/src/assets/BlueEssence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/src/assets/BlueEssence.png -------------------------------------------------------------------------------- /Overlays/pickban/src/assets/ban_placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/src/assets/ban_placeholder.svg -------------------------------------------------------------------------------- /Overlays/pickban/src/assets/bot_splash_placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/src/assets/bot_splash_placeholder.svg -------------------------------------------------------------------------------- /Overlays/pickban/src/assets/example_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/src/assets/example_logo.png -------------------------------------------------------------------------------- /Overlays/pickban/src/assets/fonts/Raleway-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/src/assets/fonts/Raleway-Light.ttf -------------------------------------------------------------------------------- /Overlays/pickban/src/assets/fonts/Raleway-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/src/assets/fonts/Raleway-Medium.ttf -------------------------------------------------------------------------------- /Overlays/pickban/src/assets/fonts/Raleway-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/src/assets/fonts/Raleway-Regular.ttf -------------------------------------------------------------------------------- /Overlays/pickban/src/assets/fonts/Rawline-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/src/assets/fonts/Rawline-Medium.ttf -------------------------------------------------------------------------------- /Overlays/pickban/src/assets/fonts/amarurgt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/src/assets/fonts/amarurgt.ttf -------------------------------------------------------------------------------- /Overlays/pickban/src/assets/jglIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/src/assets/jglIcon.png -------------------------------------------------------------------------------- /Overlays/pickban/src/assets/jung_splash_placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/src/assets/jung_splash_placeholder.svg -------------------------------------------------------------------------------- /Overlays/pickban/src/assets/jungle-game-position-icon-league-600w-1819473404.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/src/assets/jungle-game-position-icon-league-600w-1819473404.webp -------------------------------------------------------------------------------- /Overlays/pickban/src/assets/midIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/src/assets/midIcon.png -------------------------------------------------------------------------------- /Overlays/pickban/src/assets/mid_splash_placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/src/assets/mid_splash_placeholder.svg -------------------------------------------------------------------------------- /Overlays/pickban/src/assets/munich-esports-logo-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/src/assets/munich-esports-logo-black.png -------------------------------------------------------------------------------- /Overlays/pickban/src/assets/munich-esports-logo-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/src/assets/munich-esports-logo-color.png -------------------------------------------------------------------------------- /Overlays/pickban/src/assets/munich-esports-logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/src/assets/munich-esports-logo-white.png -------------------------------------------------------------------------------- /Overlays/pickban/src/assets/sup_splash_placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/src/assets/sup_splash_placeholder.svg -------------------------------------------------------------------------------- /Overlays/pickban/src/assets/top_splash_placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/src/assets/top_splash_placeholder.svg -------------------------------------------------------------------------------- /Overlays/pickban/src/convertState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/src/convertState.js -------------------------------------------------------------------------------- /Overlays/pickban/src/europe/Ban.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/src/europe/Ban.jsx -------------------------------------------------------------------------------- /Overlays/pickban/src/europe/Overlay.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/src/europe/Overlay.jsx -------------------------------------------------------------------------------- /Overlays/pickban/src/europe/Pick.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/src/europe/Pick.jsx -------------------------------------------------------------------------------- /Overlays/pickban/src/europe/style/animation.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/src/europe/style/animation.less -------------------------------------------------------------------------------- /Overlays/pickban/src/europe/style/bans.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/src/europe/style/bans.less -------------------------------------------------------------------------------- /Overlays/pickban/src/europe/style/fonts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/src/europe/style/fonts.less -------------------------------------------------------------------------------- /Overlays/pickban/src/europe/style/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/src/europe/style/index.less -------------------------------------------------------------------------------- /Overlays/pickban/src/europe/style/picks.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/src/europe/style/picks.less -------------------------------------------------------------------------------- /Overlays/pickban/src/europe/style/team.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/src/europe/style/team.less -------------------------------------------------------------------------------- /Overlays/pickban/src/europe/style/timer.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/src/europe/style/timer.less -------------------------------------------------------------------------------- /Overlays/pickban/src/europe/style/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/src/europe/style/variables.less -------------------------------------------------------------------------------- /Overlays/pickban/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/src/index.css -------------------------------------------------------------------------------- /Overlays/pickban/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/src/index.js -------------------------------------------------------------------------------- /Overlays/pickban/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/src/serviceWorker.js -------------------------------------------------------------------------------- /Overlays/pickban/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/Overlays/pickban/yarn.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floh22/LeagueBroadcast/HEAD/README.md --------------------------------------------------------------------------------