├── .github └── FUNDING.yml ├── .gitignore ├── OneHundredAndEighty ├── .gitignore ├── OneHundredAndEighty.sln ├── OneHundredAndEighty │ ├── .gitignore │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── Classes │ │ ├── BoardPanelLogic.cs │ │ ├── DBwork.cs │ │ ├── Game.cs │ │ ├── InfoPanelLogic.cs │ │ ├── NewAchieve.cs │ │ ├── NewPlayer.cs │ │ ├── Player.cs │ │ ├── PlayerOverview.cs │ │ ├── SavePoint.cs │ │ ├── SettingsPanelLogic.cs │ │ ├── StatisticsWindowLogic.cs │ │ ├── Throw.cs │ │ └── WinnerWindowLogic.cs │ ├── DB.mdf │ ├── DB_log.ldf │ ├── Images │ │ ├── Achieves │ │ │ ├── 1000000Points.png │ │ │ ├── 100000Points.png │ │ │ ├── 100000Throws.png │ │ │ ├── 10000Points.png │ │ │ ├── 10000Throws.png │ │ │ ├── 1000MatchesPlayed.png │ │ │ ├── 1000MatchesWon.png │ │ │ ├── 1000Throws.png │ │ │ ├── 100MatchesPlayed.png │ │ │ ├── 100MatchesWon.png │ │ │ ├── 10MatchesPlayed.png │ │ │ ├── 10MatchesWon.png │ │ │ ├── 180x10.png │ │ │ ├── 180x100.png │ │ │ ├── 180x1000.png │ │ │ ├── 3Bull.png │ │ │ ├── First180.png │ │ │ ├── mr.Z.png │ │ │ └── wings.png │ │ ├── Dartboard.png │ │ ├── Icon2.ico │ │ └── Start logo.png │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── OneHundredAndEighty.csproj │ ├── OneHundredAndEighty.csproj.user │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── Windows │ │ ├── AbortWindow.xaml │ │ ├── AbortWindow.xaml.cs │ │ ├── AbortWindowConfirm.xaml │ │ ├── AbortWindowConfirm.xaml.cs │ │ ├── ExitWindow.xaml │ │ ├── ExitWindow.xaml.cs │ │ ├── NewAchieve.xaml │ │ ├── NewAchieve.xaml.cs │ │ ├── NewPlayer.xaml │ │ ├── NewPlayer.xaml.cs │ │ ├── PlayerExists.xaml │ │ ├── PlayerExists.xaml.cs │ │ ├── StatisticWindow.xaml │ │ ├── StatisticWindow.xaml.cs │ │ ├── WelcomeNewPlayer.xaml │ │ ├── WelcomeNewPlayer.xaml.cs │ │ ├── WinnerWindow.xaml │ │ └── WinnerWindow.xaml.cs ├── OneHundredAndEightyCore.Tests │ ├── CheckOut │ │ ├── CheckOutTestBase.cs │ │ └── WhenGettingHint.cs │ ├── ConfigService │ │ ├── ConfigServiceTestBase.cs │ │ ├── WhenLoadingSettings.cs │ │ └── WhenSavingSettings.cs │ ├── Converter │ │ ├── ConverterTestBase.cs │ │ ├── WhenConvertingCamSetupSectorSettingValue.cs │ │ ├── WhenConvertingFromGamePointsToInt.cs │ │ ├── WhenConvertingGridNameToCamNumber.cs │ │ ├── WhenConvertingImages.cs │ │ ├── WhenConvertingLoadedPlayers.cs │ │ ├── WhenConvertingToBool.cs │ │ ├── WhenConvertingToDecimal.cs │ │ ├── WhenConvertingToDouble.cs │ │ ├── WhenConvertingToFloat.cs │ │ ├── WhenConvertingToInt.cs │ │ └── WhenConvertingToString.cs │ ├── MeasureService │ │ ├── MeasureServiceTestBase.cs │ │ └── WhenMeasuringAndCalculating.cs │ ├── OneHundredAndEightyCore.Tests.csproj │ ├── TestBase.cs │ ├── Validator │ │ ├── ValidatorTestBase.cs │ │ └── WhenValidating.cs │ ├── VersionChecker │ │ ├── VersionCheckerTestBase.cs │ │ └── WhenCheckingAndUpdating.cs │ └── Windows │ │ ├── Main │ │ ├── DataContext │ │ │ ├── DataContextTestBase.cs │ │ │ └── WhenSettingBindableProperties.cs │ │ ├── MainWindowViewModel │ │ │ ├── MainWindowViewModelTestBase.cs │ │ │ ├── WhenOnMainWindowLoaded.cs │ │ │ └── WhenSettingBindableProperties.cs │ │ ├── NotifyPropertyChangedTester.cs │ │ └── Tabs │ │ │ ├── About │ │ │ ├── AboutTabViewModelTestBase.cs │ │ │ ├── WhenLoadingSettings.cs │ │ │ └── WhenSettingBindableProperties.cs │ │ │ ├── Game │ │ │ ├── GameTabViewModelTestBase.cs │ │ │ ├── WhenLoadingSettings.cs │ │ │ └── WhenSettingBindableProperties.cs │ │ │ ├── Player │ │ │ ├── PlayerTabViewModelTestBase.cs │ │ │ ├── WhenLoadingSettings.cs │ │ │ └── WhenSettingBindableProperties.cs │ │ │ └── Settings │ │ │ ├── SettingsTabViewModelTestBase.cs │ │ │ ├── WhenLoadingSettings.cs │ │ │ └── WhenSettingBindableProperties.cs │ │ └── WindowsTestBase.cs ├── OneHundredAndEightyCore.WebApi │ ├── Controllers │ │ ├── LobbyController.cs │ │ ├── SayHelloController.cs │ │ └── UptimeController.cs │ ├── OneHundredAndEightyCore.WebApi.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Services │ │ ├── DateTimeService.cs │ │ ├── IDateTimeService.cs │ │ ├── ILobbyUsersService.cs │ │ ├── LobbyUsersService.cs │ │ └── ServiceProviderExtensions.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ └── appsettings.json └── OneHundredAndEightyCore │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── Common │ ├── ConfigService.cs │ ├── Converter.cs │ ├── DbService.cs │ ├── DrawService.cs │ ├── Extentions.cs │ ├── FileSystemService.cs │ ├── IConfigService.cs │ ├── IDbService.cs │ ├── IFileSystemService.cs │ ├── IVersionChecker.cs │ ├── Migration.cs │ ├── Validator.cs │ └── VersionChecker.cs │ ├── Database.db │ ├── Domain │ ├── DartContour.cs │ ├── DetectedThrow.cs │ ├── Game.cs │ ├── GameSnapshot.cs │ ├── Hand180.cs │ ├── Player.cs │ ├── PlayerGameData.cs │ ├── PlayerStatistics.cs │ ├── Ray.cs │ └── Throw.cs │ ├── Emgu.CV.World.dll │ ├── Enums │ ├── Achieve.cs │ ├── CamNumber.cs │ ├── Column.cs │ ├── GamePoints.cs │ ├── GameResultType.cs │ ├── GameType.cs │ ├── MovesDetectionResult.cs │ ├── OnPlayer.cs │ ├── PlayerOrder.cs │ ├── SettingsType.cs │ ├── Table.cs │ └── ThrowNumber.cs │ ├── Game │ ├── GameService.cs │ └── Processors │ │ ├── ClassicDoubleProcessor.cs │ │ ├── FreeThrowsDoubleFreePointsProcessor.cs │ │ ├── FreeThrowsDoubleWriteOffPointsProcessor.cs │ │ ├── FreeThrowsSingleFreePointsProcessor.cs │ │ ├── FreeThrowsSingleWriteOffPointsProcessor.cs │ │ ├── IGameProcessor.cs │ │ └── ProcessorBase.cs │ ├── OneHundredAndEightyCore.csproj │ ├── OneHundredAndEightyCore.csproj.user │ ├── Recognition │ ├── CamService.cs │ ├── DetectionService.cs │ ├── IDetectionService.cs │ ├── MeasureService.cs │ └── ThrowService.cs │ ├── Resources │ ├── BoolInvertedConverter.cs │ ├── Dartboard.jpg │ ├── EmptyUserIcon.jpg │ ├── MainWindow │ │ ├── Background │ │ │ ├── MainBackground1.jpg │ │ │ ├── MainBackground2.jpg │ │ │ ├── MainBackground3.jpg │ │ │ ├── MainBackground4.jpg │ │ │ └── MainBackground5.jpg │ │ ├── CloseIcon.png │ │ ├── MaximizeIcon.png │ │ ├── MinimizeIcon.png │ │ └── TabItemIcons │ │ │ ├── AboutIcon.png │ │ │ ├── AddNewPlayerIcon.png │ │ │ ├── Cam1SettingsIcon.png │ │ │ ├── Cam2SettingsIcon.png │ │ │ ├── Cam3SettingsIcon.png │ │ │ ├── Cam4SettingsIcon.png │ │ │ ├── GameIcon.png │ │ │ ├── GeneralSettingsIcon.png │ │ │ ├── PlayerIcon.png │ │ │ ├── PlayerStatisticsIcon.png │ │ │ └── SettingsIcon.png │ ├── MultipleBoolInvertedAndConverter.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── SplashScreenLogo.png │ └── icon2.ico │ ├── Telemetry │ ├── TelemetryEvent.cs │ ├── TelemetryInitializer.cs │ ├── TelemetryMetric.cs │ └── TelemetryWriter.cs │ ├── Windows │ ├── CamsDetection │ │ ├── CamsDetectionBoard.cs │ │ ├── CamsDetectionWindow.xaml │ │ └── CamsDetectionWindow.xaml.cs │ ├── Debug │ │ ├── MakeManualThrowCommand.cs │ │ ├── ManualThrowPanel.cs │ │ ├── ManualThrowPanelWindow.xaml │ │ └── ManualThrowPanelWindow.xaml.cs │ ├── Main │ │ ├── DataContext.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── MainWindowViewModel.cs │ │ └── Tabs │ │ │ ├── About │ │ │ ├── AboutTabView.xaml │ │ │ ├── AboutTabView.xaml.cs │ │ │ └── AboutTabViewModel.cs │ │ │ ├── Game │ │ │ ├── GameTabView.xaml │ │ │ ├── GameTabView.xaml.cs │ │ │ ├── GameTabViewModel.cs │ │ │ ├── StartNewGameCommand.cs │ │ │ └── StopGameCommand.cs │ │ │ ├── Player │ │ │ ├── ChooseNewPlayerAvatarCommand.cs │ │ │ ├── PlayerStatisticsLoadCommand.cs │ │ │ ├── PlayerTabView.xaml │ │ │ ├── PlayerTabView.xaml.cs │ │ │ ├── PlayerTabViewModel.cs │ │ │ └── SaveNewPlayerCommand.cs │ │ │ ├── Settings │ │ │ ├── CalibrateCamsSetupPointsCommand.cs │ │ │ ├── CheckCamsCommand.cs │ │ │ ├── FindCamsCommand.cs │ │ │ ├── SettingsTabView.xaml │ │ │ ├── SettingsTabView.xaml.cs │ │ │ ├── SettingsTabViewModel.cs │ │ │ ├── StartCamSetupCapturingCommand.cs │ │ │ ├── StartRuntimeCrossingCommand.cs │ │ │ ├── StopCamSetupCapturingCommand.cs │ │ │ └── StopRuntimeCrossingCommand.cs │ │ │ └── Shared │ │ │ ├── HyperLinkNavigateCommand.cs │ │ │ └── TabViewModelBase.cs │ ├── MessageBox │ │ ├── IMessageBoxService.cs │ │ ├── MessageBoxService.cs │ │ ├── MessageType.cs │ │ ├── MessageWindow.xaml │ │ └── MessageWindow.xaml.cs │ ├── Score │ │ ├── CheckOut.cs │ │ ├── ClassicScoreWindow.xaml │ │ ├── ClassicScoreWindow.xaml.cs │ │ ├── FreeThrowsDoubleScoreWindow.xaml │ │ ├── FreeThrowsDoubleScoreWindow.xaml.cs │ │ ├── FreeThrowsSingleScoreWindow.xaml │ │ ├── FreeThrowsSingleScoreWindow.xaml.cs │ │ ├── ManualThrowCommand.cs │ │ ├── ScoreBoardService.cs │ │ ├── ScoreWindowBase.cs │ │ └── UndoThrowCommand.cs │ └── Shared │ │ └── CommandBase.cs │ └── nlog.config └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ["https://www.paypal.me/yellowfive5"] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/.gitignore -------------------------------------------------------------------------------- /OneHundredAndEighty/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/.gitignore -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty.sln -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /obj/ 3 | -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/App.config -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/App.xaml -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/App.xaml.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Classes/BoardPanelLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Classes/BoardPanelLogic.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Classes/DBwork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Classes/DBwork.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Classes/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Classes/Game.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Classes/InfoPanelLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Classes/InfoPanelLogic.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Classes/NewAchieve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Classes/NewAchieve.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Classes/NewPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Classes/NewPlayer.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Classes/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Classes/Player.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Classes/PlayerOverview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Classes/PlayerOverview.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Classes/SavePoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Classes/SavePoint.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Classes/SettingsPanelLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Classes/SettingsPanelLogic.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Classes/StatisticsWindowLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Classes/StatisticsWindowLogic.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Classes/Throw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Classes/Throw.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Classes/WinnerWindowLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Classes/WinnerWindowLogic.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/DB.mdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/DB.mdf -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/DB_log.ldf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/DB_log.ldf -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Images/Achieves/1000000Points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Images/Achieves/1000000Points.png -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Images/Achieves/100000Points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Images/Achieves/100000Points.png -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Images/Achieves/100000Throws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Images/Achieves/100000Throws.png -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Images/Achieves/10000Points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Images/Achieves/10000Points.png -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Images/Achieves/10000Throws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Images/Achieves/10000Throws.png -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Images/Achieves/1000MatchesPlayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Images/Achieves/1000MatchesPlayed.png -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Images/Achieves/1000MatchesWon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Images/Achieves/1000MatchesWon.png -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Images/Achieves/1000Throws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Images/Achieves/1000Throws.png -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Images/Achieves/100MatchesPlayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Images/Achieves/100MatchesPlayed.png -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Images/Achieves/100MatchesWon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Images/Achieves/100MatchesWon.png -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Images/Achieves/10MatchesPlayed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Images/Achieves/10MatchesPlayed.png -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Images/Achieves/10MatchesWon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Images/Achieves/10MatchesWon.png -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Images/Achieves/180x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Images/Achieves/180x10.png -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Images/Achieves/180x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Images/Achieves/180x100.png -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Images/Achieves/180x1000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Images/Achieves/180x1000.png -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Images/Achieves/3Bull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Images/Achieves/3Bull.png -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Images/Achieves/First180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Images/Achieves/First180.png -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Images/Achieves/mr.Z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Images/Achieves/mr.Z.png -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Images/Achieves/wings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Images/Achieves/wings.png -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Images/Dartboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Images/Dartboard.png -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Images/Icon2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Images/Icon2.ico -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Images/Start logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Images/Start logo.png -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/MainWindow.xaml -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/MainWindow.xaml.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/OneHundredAndEighty.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/OneHundredAndEighty.csproj -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/OneHundredAndEighty.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/OneHundredAndEighty.csproj.user -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Properties/Resources.resx -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Properties/Settings.settings -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Windows/AbortWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Windows/AbortWindow.xaml -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Windows/AbortWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Windows/AbortWindow.xaml.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Windows/AbortWindowConfirm.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Windows/AbortWindowConfirm.xaml -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Windows/AbortWindowConfirm.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Windows/AbortWindowConfirm.xaml.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Windows/ExitWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Windows/ExitWindow.xaml -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Windows/ExitWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Windows/ExitWindow.xaml.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Windows/NewAchieve.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Windows/NewAchieve.xaml -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Windows/NewAchieve.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Windows/NewAchieve.xaml.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Windows/NewPlayer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Windows/NewPlayer.xaml -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Windows/NewPlayer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Windows/NewPlayer.xaml.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Windows/PlayerExists.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Windows/PlayerExists.xaml -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Windows/PlayerExists.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Windows/PlayerExists.xaml.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Windows/StatisticWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Windows/StatisticWindow.xaml -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Windows/StatisticWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Windows/StatisticWindow.xaml.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Windows/WelcomeNewPlayer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Windows/WelcomeNewPlayer.xaml -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Windows/WelcomeNewPlayer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Windows/WelcomeNewPlayer.xaml.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Windows/WinnerWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Windows/WinnerWindow.xaml -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEighty/Windows/WinnerWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEighty/Windows/WinnerWindow.xaml.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/CheckOut/CheckOutTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/CheckOut/CheckOutTestBase.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/CheckOut/WhenGettingHint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/CheckOut/WhenGettingHint.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/ConfigService/ConfigServiceTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/ConfigService/ConfigServiceTestBase.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/ConfigService/WhenLoadingSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/ConfigService/WhenLoadingSettings.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/ConfigService/WhenSavingSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/ConfigService/WhenSavingSettings.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/Converter/ConverterTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/Converter/ConverterTestBase.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/Converter/WhenConvertingCamSetupSectorSettingValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/Converter/WhenConvertingCamSetupSectorSettingValue.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/Converter/WhenConvertingFromGamePointsToInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/Converter/WhenConvertingFromGamePointsToInt.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/Converter/WhenConvertingGridNameToCamNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/Converter/WhenConvertingGridNameToCamNumber.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/Converter/WhenConvertingImages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/Converter/WhenConvertingImages.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/Converter/WhenConvertingLoadedPlayers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/Converter/WhenConvertingLoadedPlayers.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/Converter/WhenConvertingToBool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/Converter/WhenConvertingToBool.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/Converter/WhenConvertingToDecimal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/Converter/WhenConvertingToDecimal.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/Converter/WhenConvertingToDouble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/Converter/WhenConvertingToDouble.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/Converter/WhenConvertingToFloat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/Converter/WhenConvertingToFloat.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/Converter/WhenConvertingToInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/Converter/WhenConvertingToInt.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/Converter/WhenConvertingToString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/Converter/WhenConvertingToString.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/MeasureService/MeasureServiceTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/MeasureService/MeasureServiceTestBase.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/MeasureService/WhenMeasuringAndCalculating.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/MeasureService/WhenMeasuringAndCalculating.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/OneHundredAndEightyCore.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/OneHundredAndEightyCore.Tests.csproj -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/TestBase.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/Validator/ValidatorTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/Validator/ValidatorTestBase.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/Validator/WhenValidating.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/Validator/WhenValidating.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/VersionChecker/VersionCheckerTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/VersionChecker/VersionCheckerTestBase.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/VersionChecker/WhenCheckingAndUpdating.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/VersionChecker/WhenCheckingAndUpdating.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/Windows/Main/DataContext/DataContextTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/Windows/Main/DataContext/DataContextTestBase.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/Windows/Main/DataContext/WhenSettingBindableProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/Windows/Main/DataContext/WhenSettingBindableProperties.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/Windows/Main/MainWindowViewModel/MainWindowViewModelTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/Windows/Main/MainWindowViewModel/MainWindowViewModelTestBase.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/Windows/Main/MainWindowViewModel/WhenOnMainWindowLoaded.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/Windows/Main/MainWindowViewModel/WhenOnMainWindowLoaded.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/Windows/Main/MainWindowViewModel/WhenSettingBindableProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/Windows/Main/MainWindowViewModel/WhenSettingBindableProperties.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/Windows/Main/NotifyPropertyChangedTester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/Windows/Main/NotifyPropertyChangedTester.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/Windows/Main/Tabs/About/AboutTabViewModelTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/Windows/Main/Tabs/About/AboutTabViewModelTestBase.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/Windows/Main/Tabs/About/WhenLoadingSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/Windows/Main/Tabs/About/WhenLoadingSettings.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/Windows/Main/Tabs/About/WhenSettingBindableProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/Windows/Main/Tabs/About/WhenSettingBindableProperties.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/Windows/Main/Tabs/Game/GameTabViewModelTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/Windows/Main/Tabs/Game/GameTabViewModelTestBase.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/Windows/Main/Tabs/Game/WhenLoadingSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/Windows/Main/Tabs/Game/WhenLoadingSettings.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/Windows/Main/Tabs/Game/WhenSettingBindableProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/Windows/Main/Tabs/Game/WhenSettingBindableProperties.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/Windows/Main/Tabs/Player/PlayerTabViewModelTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/Windows/Main/Tabs/Player/PlayerTabViewModelTestBase.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/Windows/Main/Tabs/Player/WhenLoadingSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/Windows/Main/Tabs/Player/WhenLoadingSettings.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/Windows/Main/Tabs/Player/WhenSettingBindableProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/Windows/Main/Tabs/Player/WhenSettingBindableProperties.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/Windows/Main/Tabs/Settings/SettingsTabViewModelTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/Windows/Main/Tabs/Settings/SettingsTabViewModelTestBase.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/Windows/Main/Tabs/Settings/WhenLoadingSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/Windows/Main/Tabs/Settings/WhenLoadingSettings.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/Windows/Main/Tabs/Settings/WhenSettingBindableProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/Windows/Main/Tabs/Settings/WhenSettingBindableProperties.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.Tests/Windows/WindowsTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.Tests/Windows/WindowsTestBase.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.WebApi/Controllers/LobbyController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.WebApi/Controllers/LobbyController.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.WebApi/Controllers/SayHelloController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.WebApi/Controllers/SayHelloController.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.WebApi/Controllers/UptimeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.WebApi/Controllers/UptimeController.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.WebApi/OneHundredAndEightyCore.WebApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.WebApi/OneHundredAndEightyCore.WebApi.csproj -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.WebApi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.WebApi/Program.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.WebApi/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.WebApi/Properties/launchSettings.json -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.WebApi/Services/DateTimeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.WebApi/Services/DateTimeService.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.WebApi/Services/IDateTimeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.WebApi/Services/IDateTimeService.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.WebApi/Services/ILobbyUsersService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.WebApi/Services/ILobbyUsersService.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.WebApi/Services/LobbyUsersService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.WebApi/Services/LobbyUsersService.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.WebApi/Services/ServiceProviderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.WebApi/Services/ServiceProviderExtensions.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.WebApi/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.WebApi/Startup.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.WebApi/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.WebApi/appsettings.Development.json -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore.WebApi/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore.WebApi/appsettings.json -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/App.xaml -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/App.xaml.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/AssemblyInfo.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Common/ConfigService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Common/ConfigService.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Common/Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Common/Converter.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Common/DbService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Common/DbService.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Common/DrawService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Common/DrawService.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Common/Extentions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Common/Extentions.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Common/FileSystemService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Common/FileSystemService.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Common/IConfigService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Common/IConfigService.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Common/IDbService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Common/IDbService.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Common/IFileSystemService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Common/IFileSystemService.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Common/IVersionChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Common/IVersionChecker.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Common/Migration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Common/Migration.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Common/Validator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Common/Validator.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Common/VersionChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Common/VersionChecker.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Database.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Database.db -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Domain/DartContour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Domain/DartContour.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Domain/DetectedThrow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Domain/DetectedThrow.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Domain/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Domain/Game.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Domain/GameSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Domain/GameSnapshot.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Domain/Hand180.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Domain/Hand180.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Domain/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Domain/Player.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Domain/PlayerGameData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Domain/PlayerGameData.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Domain/PlayerStatistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Domain/PlayerStatistics.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Domain/Ray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Domain/Ray.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Domain/Throw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Domain/Throw.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Emgu.CV.World.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Emgu.CV.World.dll -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Enums/Achieve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Enums/Achieve.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Enums/CamNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Enums/CamNumber.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Enums/Column.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Enums/Column.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Enums/GamePoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Enums/GamePoints.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Enums/GameResultType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Enums/GameResultType.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Enums/GameType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Enums/GameType.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Enums/MovesDetectionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Enums/MovesDetectionResult.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Enums/OnPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Enums/OnPlayer.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Enums/PlayerOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Enums/PlayerOrder.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Enums/SettingsType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Enums/SettingsType.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Enums/Table.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Enums/Table.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Enums/ThrowNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Enums/ThrowNumber.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Game/GameService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Game/GameService.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Game/Processors/ClassicDoubleProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Game/Processors/ClassicDoubleProcessor.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Game/Processors/FreeThrowsDoubleFreePointsProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Game/Processors/FreeThrowsDoubleFreePointsProcessor.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Game/Processors/FreeThrowsDoubleWriteOffPointsProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Game/Processors/FreeThrowsDoubleWriteOffPointsProcessor.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Game/Processors/FreeThrowsSingleFreePointsProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Game/Processors/FreeThrowsSingleFreePointsProcessor.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Game/Processors/FreeThrowsSingleWriteOffPointsProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Game/Processors/FreeThrowsSingleWriteOffPointsProcessor.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Game/Processors/IGameProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Game/Processors/IGameProcessor.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Game/Processors/ProcessorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Game/Processors/ProcessorBase.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/OneHundredAndEightyCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/OneHundredAndEightyCore.csproj -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/OneHundredAndEightyCore.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/OneHundredAndEightyCore.csproj.user -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Recognition/CamService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Recognition/CamService.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Recognition/DetectionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Recognition/DetectionService.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Recognition/IDetectionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Recognition/IDetectionService.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Recognition/MeasureService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Recognition/MeasureService.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Recognition/ThrowService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Recognition/ThrowService.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Resources/BoolInvertedConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Resources/BoolInvertedConverter.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Resources/Dartboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Resources/Dartboard.jpg -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Resources/EmptyUserIcon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Resources/EmptyUserIcon.jpg -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Resources/MainWindow/Background/MainBackground1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Resources/MainWindow/Background/MainBackground1.jpg -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Resources/MainWindow/Background/MainBackground2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Resources/MainWindow/Background/MainBackground2.jpg -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Resources/MainWindow/Background/MainBackground3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Resources/MainWindow/Background/MainBackground3.jpg -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Resources/MainWindow/Background/MainBackground4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Resources/MainWindow/Background/MainBackground4.jpg -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Resources/MainWindow/Background/MainBackground5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Resources/MainWindow/Background/MainBackground5.jpg -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Resources/MainWindow/CloseIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Resources/MainWindow/CloseIcon.png -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Resources/MainWindow/MaximizeIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Resources/MainWindow/MaximizeIcon.png -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Resources/MainWindow/MinimizeIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Resources/MainWindow/MinimizeIcon.png -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Resources/MainWindow/TabItemIcons/AboutIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Resources/MainWindow/TabItemIcons/AboutIcon.png -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Resources/MainWindow/TabItemIcons/AddNewPlayerIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Resources/MainWindow/TabItemIcons/AddNewPlayerIcon.png -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Resources/MainWindow/TabItemIcons/Cam1SettingsIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Resources/MainWindow/TabItemIcons/Cam1SettingsIcon.png -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Resources/MainWindow/TabItemIcons/Cam2SettingsIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Resources/MainWindow/TabItemIcons/Cam2SettingsIcon.png -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Resources/MainWindow/TabItemIcons/Cam3SettingsIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Resources/MainWindow/TabItemIcons/Cam3SettingsIcon.png -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Resources/MainWindow/TabItemIcons/Cam4SettingsIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Resources/MainWindow/TabItemIcons/Cam4SettingsIcon.png -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Resources/MainWindow/TabItemIcons/GameIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Resources/MainWindow/TabItemIcons/GameIcon.png -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Resources/MainWindow/TabItemIcons/GeneralSettingsIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Resources/MainWindow/TabItemIcons/GeneralSettingsIcon.png -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Resources/MainWindow/TabItemIcons/PlayerIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Resources/MainWindow/TabItemIcons/PlayerIcon.png -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Resources/MainWindow/TabItemIcons/PlayerStatisticsIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Resources/MainWindow/TabItemIcons/PlayerStatisticsIcon.png -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Resources/MainWindow/TabItemIcons/SettingsIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Resources/MainWindow/TabItemIcons/SettingsIcon.png -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Resources/MultipleBoolInvertedAndConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Resources/MultipleBoolInvertedAndConverter.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Resources/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Resources/Resources.Designer.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Resources/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Resources/Resources.resx -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Resources/SplashScreenLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Resources/SplashScreenLogo.png -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Resources/icon2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Resources/icon2.ico -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Telemetry/TelemetryEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Telemetry/TelemetryEvent.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Telemetry/TelemetryInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Telemetry/TelemetryInitializer.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Telemetry/TelemetryMetric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Telemetry/TelemetryMetric.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Telemetry/TelemetryWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Telemetry/TelemetryWriter.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/CamsDetection/CamsDetectionBoard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/CamsDetection/CamsDetectionBoard.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/CamsDetection/CamsDetectionWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/CamsDetection/CamsDetectionWindow.xaml -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/CamsDetection/CamsDetectionWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/CamsDetection/CamsDetectionWindow.xaml.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Debug/MakeManualThrowCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Debug/MakeManualThrowCommand.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Debug/ManualThrowPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Debug/ManualThrowPanel.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Debug/ManualThrowPanelWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Debug/ManualThrowPanelWindow.xaml -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Debug/ManualThrowPanelWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Debug/ManualThrowPanelWindow.xaml.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/DataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/DataContext.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/MainWindow.xaml -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/MainWindow.xaml.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/MainWindowViewModel.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/About/AboutTabView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/About/AboutTabView.xaml -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/About/AboutTabView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/About/AboutTabView.xaml.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/About/AboutTabViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/About/AboutTabViewModel.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Game/GameTabView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Game/GameTabView.xaml -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Game/GameTabView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Game/GameTabView.xaml.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Game/GameTabViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Game/GameTabViewModel.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Game/StartNewGameCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Game/StartNewGameCommand.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Game/StopGameCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Game/StopGameCommand.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Player/ChooseNewPlayerAvatarCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Player/ChooseNewPlayerAvatarCommand.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Player/PlayerStatisticsLoadCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Player/PlayerStatisticsLoadCommand.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Player/PlayerTabView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Player/PlayerTabView.xaml -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Player/PlayerTabView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Player/PlayerTabView.xaml.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Player/PlayerTabViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Player/PlayerTabViewModel.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Player/SaveNewPlayerCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Player/SaveNewPlayerCommand.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Settings/CalibrateCamsSetupPointsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Settings/CalibrateCamsSetupPointsCommand.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Settings/CheckCamsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Settings/CheckCamsCommand.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Settings/FindCamsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Settings/FindCamsCommand.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Settings/SettingsTabView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Settings/SettingsTabView.xaml -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Settings/SettingsTabView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Settings/SettingsTabView.xaml.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Settings/SettingsTabViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Settings/SettingsTabViewModel.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Settings/StartCamSetupCapturingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Settings/StartCamSetupCapturingCommand.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Settings/StartRuntimeCrossingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Settings/StartRuntimeCrossingCommand.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Settings/StopCamSetupCapturingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Settings/StopCamSetupCapturingCommand.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Settings/StopRuntimeCrossingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Settings/StopRuntimeCrossingCommand.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Shared/HyperLinkNavigateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Shared/HyperLinkNavigateCommand.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Shared/TabViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Main/Tabs/Shared/TabViewModelBase.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/MessageBox/IMessageBoxService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/MessageBox/IMessageBoxService.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/MessageBox/MessageBoxService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/MessageBox/MessageBoxService.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/MessageBox/MessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/MessageBox/MessageType.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/MessageBox/MessageWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/MessageBox/MessageWindow.xaml -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/MessageBox/MessageWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/MessageBox/MessageWindow.xaml.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Score/CheckOut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Score/CheckOut.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Score/ClassicScoreWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Score/ClassicScoreWindow.xaml -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Score/ClassicScoreWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Score/ClassicScoreWindow.xaml.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Score/FreeThrowsDoubleScoreWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Score/FreeThrowsDoubleScoreWindow.xaml -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Score/FreeThrowsDoubleScoreWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Score/FreeThrowsDoubleScoreWindow.xaml.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Score/FreeThrowsSingleScoreWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Score/FreeThrowsSingleScoreWindow.xaml -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Score/FreeThrowsSingleScoreWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Score/FreeThrowsSingleScoreWindow.xaml.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Score/ManualThrowCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Score/ManualThrowCommand.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Score/ScoreBoardService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Score/ScoreBoardService.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Score/ScoreWindowBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Score/ScoreWindowBase.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Score/UndoThrowCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Score/UndoThrowCommand.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/Windows/Shared/CommandBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/Windows/Shared/CommandBase.cs -------------------------------------------------------------------------------- /OneHundredAndEighty/OneHundredAndEightyCore/nlog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/OneHundredAndEighty/OneHundredAndEightyCore/nlog.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowFive5/OneHundredAndEighty/HEAD/README.md --------------------------------------------------------------------------------