├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── experimental-build---bug-issue-report.md │ └── feature_request.md ├── copilot-instructions.md └── workflows │ └── copilot-setup-steps.yml.windows ├── .gitignore ├── .gitmodules ├── .nuget ├── NuGet.Config ├── NuGet.exe └── packages.config ├── .vscode └── settings.json ├── Autoupdating XMLs.md ├── CHANGELOG.md ├── CONTENT.md ├── CONTRIBUTING.md ├── EULA.rtf ├── HACK.md ├── LICENSE.md ├── OCTGN.sln ├── OCTGN.sln.DotSettings ├── OCTGN.sln.licenseheader ├── OCTGN.tss ├── README.md ├── Run-RegenerateNetworkingFiles.ps1 ├── THIRDPARTY.MD ├── Version.cs ├── chocolatey └── dev │ └── OctgnDevPackage-Express │ ├── OctgnDevPackage-Express.1.0.0.0.nupkg │ ├── OctgnDevPackage-Express.1.0.0.1.nupkg │ ├── OctgnDevPackage-Express.1.0.0.2.nupkg │ ├── OctgnDevPackage-Express.nuspec │ └── tools │ └── chocolateyInstall.ps1 ├── currentversion.xml ├── deploy ├── Heat-FileList-README.md ├── Update-HeatFileList.ps1 ├── currentversion.txt ├── currentversiontest.txt └── update-heat-filelist.bat ├── dummychange.txt ├── index.html ├── nuget ├── Octgn.Library.nupkg └── Octgn.Library.nuspec ├── octgnFX ├── Graphics │ ├── FilesIcons.design │ ├── InstallerBanner.png │ ├── InstallerBundleDialog.pdn │ ├── InstallerBundleDialog.png │ ├── InstallerDialog.png │ ├── MainIcon.design │ ├── MainLogoWLetters.design │ ├── MainLogoWLetters.psd │ ├── gamemode.pdn │ ├── logo plain.png │ ├── logo.png │ └── octide.png ├── Octgn.Core │ ├── DataExtensionMethods │ │ ├── CardExtensionMethods.cs │ │ ├── DeckExtensionMethods.cs │ │ ├── GameExtensionMethods.cs │ │ ├── IGroupActionExtensionMethods.cs │ │ ├── PackExtensionMethods.cs │ │ ├── SetExtensionMethods.cs │ │ └── SleeveExtensionMethods.cs │ ├── DataManagers │ │ ├── CardManager.cs │ │ ├── GameManager.cs │ │ ├── PackManager.cs │ │ └── SetManager.cs │ ├── Deploy.ps1 │ ├── DiscordIntegration │ │ ├── DiscordGameSdk │ │ │ ├── ActivityManager.cs │ │ │ ├── Constants.cs │ │ │ ├── Core.cs │ │ │ ├── ImageManager.cs │ │ │ ├── LobbyManager.cs │ │ │ ├── StorageManager.cs │ │ │ ├── StoreManager.cs │ │ │ ├── discord_game_sdk.bundle │ │ │ ├── discord_game_sdk.dll │ │ │ ├── discord_game_sdk.dylib │ │ │ └── discord_game_sdk.so │ │ └── DiscordWrapper.cs │ ├── EmptyPackage.cs │ ├── GameFeedManager.cs │ ├── GameSettings.cs │ ├── Messenger.cs │ ├── Model.cs │ ├── Octgn.Core.csproj │ ├── Play │ │ ├── GameMessageDispatcher.cs │ │ ├── IPlayPlayer.cs │ │ ├── PlayerState.cs │ │ └── Save │ │ │ ├── GameSaveState.cs │ │ │ ├── History.cs │ │ │ ├── IGameSaveState.cs │ │ │ ├── IHistory.cs │ │ │ ├── IPlayerSaveState.cs │ │ │ └── PlayerSaveState.cs │ ├── Plugin │ │ ├── IDeckBuilderPlugin.cs │ │ ├── IDeckBuilderPluginController.cs │ │ ├── IEventBindingDeckBuilderPlugin.cs │ │ ├── IPlugin.cs │ │ ├── IPluginMenuItem.cs │ │ ├── PluginContainer.cs │ │ ├── PluginManager.cs │ │ └── ProxyDomain.cs │ ├── Prefs.cs │ ├── Properties │ │ ├── Annotations.cs │ │ └── AssemblyInfo.cs │ ├── StreamExtensionMethods.cs │ ├── Tabletop │ │ ├── GameEngine.cs │ │ └── GameState.cs │ ├── TaskContinuationHelpers.cs │ ├── Util │ │ ├── BigInteger.cs │ │ ├── Crypto.cs │ │ ├── Cryptor.cs │ │ ├── FileDownloader.cs │ │ └── TextUploader.cs │ ├── Versioned.cs │ ├── ViewModelBase.cs │ ├── app.config │ └── packages.config ├── Octgn.DataNew │ ├── CardPropertyComparer.cs │ ├── DbContext.cs │ ├── Def.cs │ ├── Entities │ │ ├── BackgroundStyle.cs │ │ ├── Card.cs │ │ ├── CardSize.cs │ │ ├── Counter.cs │ │ ├── DataRectangle.cs │ │ ├── Deck.cs │ │ ├── DeckSection.cs │ │ ├── Document.cs │ │ ├── Font.cs │ │ ├── Game.cs │ │ ├── GameBoard.cs │ │ ├── GameEvent.cs │ │ ├── GameMarker.cs │ │ ├── GameMode.cs │ │ ├── GamePhase.cs │ │ ├── GameScript.cs │ │ ├── GameSound.cs │ │ ├── GlobalVariable.cs │ │ ├── Group.cs │ │ ├── GroupProtectionState.cs │ │ ├── GroupViewState.cs │ │ ├── GroupVisibility.cs │ │ ├── ISleeve.cs │ │ ├── Include.cs │ │ ├── MultiCard.cs │ │ ├── Option.cs │ │ ├── OptionsList.cs │ │ ├── Pack.cs │ │ ├── PackContent.cs │ │ ├── Pick.cs │ │ ├── PickProperty.cs │ │ ├── Player.cs │ │ ├── PropertyDef.cs │ │ ├── RichTextPropertyValue.cs │ │ ├── Section.cs │ │ ├── Set.cs │ │ ├── Sleeve.cs │ │ ├── SleeveSource.cs │ │ └── Symbol.cs │ ├── ExtensionMethods.cs │ ├── FileDB │ │ ├── CollectionDefinition.cs │ │ ├── CollectionQuery.cs │ │ ├── FileDb.cs │ │ ├── FileDbConfiguration.cs │ │ ├── FullCacheProvider.cs │ │ ├── ICacheProvider.cs │ │ ├── IFileDbSerializer.cs │ │ ├── IPart.cs │ │ ├── Part.cs │ │ └── PartType.cs │ ├── GameSerializer.cs │ ├── IDbContext.cs │ ├── IDbContextCaching.cs │ ├── Octgn.DataNew.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── app.config │ └── packages.config ├── Octgn.DeckBuilderPluginExample │ ├── DeckBuilderPluginExample.cs │ ├── Octgn.DeckBuilderPluginExample.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── app.config │ └── packages.config ├── Octgn.GameStudio │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Octgn.GameStudio.csproj │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── Octgn.GameWizard │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── Controls │ │ ├── Field.cs │ │ └── WizardPage.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Models │ │ └── NewGame.cs │ ├── Octgn.GameWizard.csproj │ ├── Pages │ │ ├── BasicInfoPage.xaml │ │ ├── BasicInfoPage.xaml.cs │ │ ├── CreatePage.xaml │ │ ├── CreatePage.xaml.cs │ │ ├── FinalPage.xaml │ │ ├── FinalPage.xaml.cs │ │ ├── TableSidesPage.xaml │ │ ├── TableSidesPage.xaml.cs │ │ ├── WelcomePage.xaml │ │ └── WelcomePage.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources │ │ ├── Converters │ │ │ └── BooleanAndConverter.cs │ │ └── Images │ │ │ ├── dualsidepng.png │ │ │ └── singlesidepng.png │ ├── Themes │ │ └── Generic.xaml │ ├── packages.config │ └── wizard.ico ├── Octgn.Installer │ ├── Octgn.Installer.wixproj │ └── Product.wxs ├── Octgn.InstallerLib │ ├── Comp.Shell.CustomProtocol.wxs │ ├── Comp.Shell.DeckIcon.wxs │ ├── Comp.StartMenu.Dev.GameWizard.wxs │ ├── Comp.StartMenu.Dev.O8BuildGui.wxs │ ├── Comp.StartMenu.Dev.OctgnDeveloperMode.wxs │ ├── Comp.StartMenu.Dev.ProxygenTest.wxs │ ├── Comp.StartMenu.Dev.wxs │ ├── Comp.StartMenu.Shortcuts.wxs │ ├── HeatGeneratedFileList.wxs │ ├── HeatGeneratedFileList.xslt │ ├── Octgn.InstallerLib.wixproj │ └── OctgnInPath.wxs ├── Octgn.JodsEngine │ ├── Annotations.cs │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppConfig.cs │ ├── CommandLineHandler.cs │ ├── Const.cs │ ├── Controls │ │ ├── AnimatedWrapPanel.cs │ │ ├── ChildWindow.cs │ │ ├── ChildWindowManager.cs │ │ ├── ControlTemplates │ │ │ ├── UserListItem.cs │ │ │ └── UserListItem.xaml │ │ ├── DecorableWindow.cs │ │ ├── MissedMessagesBreak.xaml │ │ ├── MissedMessagesBreak.xaml.cs │ │ ├── NumericUpDown.cs │ │ ├── OpaqueClickableImage.cs │ │ ├── PileViewPermissionDialog.xaml │ │ ├── PileViewPermissionDialog.xaml.cs │ │ ├── PopupWindowMessage.xaml │ │ ├── PopupWindowMessage.xaml.cs │ │ ├── PreGameLobby.xaml │ │ ├── PreGameLobby.xaml.cs │ │ ├── RichTextBlock.cs │ │ ├── SubscribeMessageLargeMessage.xaml │ │ ├── SubscribeMessageLargeMessage.xaml.cs │ │ ├── TabCommands.cs │ │ ├── TextOrIcon.cs │ │ ├── Tooltip.cs │ │ ├── TopMostMessageBox.cs │ │ ├── VirtualizingWrapPanel.cs │ │ ├── WaitingDialog.xaml │ │ ├── WaitingDialog.xaml.cs │ │ ├── WindowDecorator.cs │ │ └── WindowDecorators │ │ │ ├── NativeDecorator.cs │ │ │ ├── OctgnDecorator.cs │ │ │ └── OctgnDecoratorResources.xaml │ ├── CurrentReleaseVersion.txt │ ├── CurrentTestVersion.txt │ ├── CurrentVersion.txt │ ├── DeckBuilder │ │ ├── DeckBuilderWindow.xaml │ │ ├── DeckBuilderWindow.xaml.cs │ │ ├── DeckCardsViewer.xaml │ │ ├── DeckCardsViewer.xaml.cs │ │ ├── DeckEditorPreviewControl.xaml │ │ ├── DeckEditorPreviewControl.xaml.cs │ │ ├── DeckManager.xaml │ │ ├── DeckManager.xaml.cs │ │ ├── FilterControl.xaml │ │ ├── FilterControl.xaml.cs │ │ ├── MetaDeck.cs │ │ ├── SearchControl.xaml │ │ ├── SearchControl.xaml.cs │ │ ├── SearchFilterItem.cs │ │ ├── SearchSave.cs │ │ ├── SetPropertyDef.cs │ │ ├── SleeveManagerView.xaml │ │ └── SleeveManagerView.xaml.cs │ ├── DoVersionStuff.tt │ ├── DoVersionStuff.txt │ ├── Effects │ │ └── GridLengthAnimation.cs │ ├── Extentions │ │ ├── BitmapImageExtensions.cs │ │ ├── ControlExtensions.cs │ │ ├── Conversion.cs │ │ ├── ExtensionMethods.cs │ │ ├── LinqExtensions.cs │ │ ├── String.cs │ │ └── WindowExtensionMethods.cs │ ├── Launchers │ │ ├── DeckEditorLauncher.cs │ │ ├── GameTableLauncher.cs │ │ ├── ILauncher.cs │ │ ├── JoinGameLauncher.cs │ │ ├── LauncherBase.cs │ │ ├── ReplayLauncher.cs │ │ └── TableLauncher.cs │ ├── LibraryCommunicationClientConfig.cs │ ├── Loaders │ │ ├── ConfigLoader.cs │ │ ├── DiscordLoader.cs │ │ ├── EnvironmentLoader.cs │ │ ├── GameMessageLoader.cs │ │ ├── GraphicsLoader.cs │ │ ├── ILoader.cs │ │ ├── Loader.cs │ │ ├── NetworkLoader.cs │ │ └── VersionedLoader.cs │ ├── Networking │ │ ├── BinaryParser.cs │ │ ├── BinaryParser.tt │ │ ├── BinaryStubs.cs │ │ ├── BinaryStubs.tt │ │ ├── ClientHandler.cs │ │ ├── ClientSocket.cs │ │ ├── IServerCalls.cs │ │ ├── IServerCalls.tt │ │ ├── Mute.cs │ │ └── ServerErrorEventArgs.cs │ ├── Octgn.JodsEngine.csproj │ ├── Octgn.JodsEngine_qm2tucxo_wpftmp.csproj │ ├── Play │ │ ├── Actions │ │ │ ├── Action.cs │ │ │ ├── Create.cs │ │ │ ├── Move.cs │ │ │ ├── Rotate.cs │ │ │ ├── Shake.cs │ │ │ ├── Target.cs │ │ │ └── Turn.cs │ │ ├── Card.cs │ │ ├── CardIdentity.cs │ │ ├── ControllableObject.cs │ │ ├── Counter.cs │ │ ├── DefaultMarkerModel.cs │ │ ├── DeveloperConsole │ │ │ ├── InteractiveConsole.xaml │ │ │ └── InteractiveConsole.xaml.cs │ │ ├── DeveloperWindow.xaml │ │ ├── DeveloperWindow.xaml.cs │ │ ├── Dialogs │ │ │ ├── ChatWindow.xaml │ │ │ ├── ChatWindow.xaml.cs │ │ │ ├── LimitedDialog.xaml │ │ │ ├── LimitedDialog.xaml.cs │ │ │ ├── PickCardsDialog.xaml │ │ │ ├── PickCardsDialog.xaml.cs │ │ │ ├── PreviewCardWindow.xaml │ │ │ ├── PreviewCardWindow.xaml.cs │ │ │ ├── RulesWindow.xaml │ │ │ └── RulesWindow.xaml.cs │ │ ├── DragAdorner.cs │ │ ├── Events.cs │ │ ├── Group.cs │ │ ├── Gui │ │ │ ├── AdhocPileControl.xaml │ │ │ ├── AdhocPileControl.xaml.cs │ │ │ ├── Adorners │ │ │ │ ├── ArrowAdorner.cs │ │ │ │ ├── CardDragAdorner.cs │ │ │ │ ├── DragAdorner.cs │ │ │ │ ├── InsertAdorner.cs │ │ │ │ ├── NoteAdorner.cs │ │ │ │ └── SelectAdorner.cs │ │ │ ├── ArrowControl.cs │ │ │ ├── CardControl.xaml │ │ │ ├── CardControl.xaml.cs │ │ │ ├── CardEvents.cs │ │ │ ├── CardListControl.xaml │ │ │ ├── CardListControl.xaml.cs │ │ │ ├── CardScroller.cs │ │ │ ├── ChatControl.xaml │ │ │ ├── ChatControl.xaml.cs │ │ │ ├── Commands.cs │ │ │ ├── DeckStats.xaml │ │ │ ├── DeckStats.xaml.cs │ │ │ ├── DragOperations │ │ │ │ └── DragOperation.cs │ │ │ ├── FanPanel.cs │ │ │ ├── GroupControl.cs │ │ │ ├── GroupWindow.xaml │ │ │ ├── GroupWindow.xaml.cs │ │ │ ├── HslColor.cs │ │ │ ├── MarkerControl.xaml │ │ │ ├── MarkerControl.xaml.cs │ │ │ ├── NoteControl.xaml │ │ │ ├── NoteControl.xaml.cs │ │ │ ├── PileBaseControl.cs │ │ │ ├── PileCollapsedControl.xaml │ │ │ ├── PileCollapsedControl.xaml.cs │ │ │ ├── PileControl.xaml │ │ │ ├── PileControl.xaml.cs │ │ │ ├── PilePanel.cs │ │ │ ├── PlayerControl.xaml │ │ │ ├── PlayerControl.xaml.cs │ │ │ ├── Selection.cs │ │ │ ├── TableCanvas.cs │ │ │ ├── TableControl.xaml │ │ │ ├── TableControl.xaml.cs │ │ │ ├── VirtualizingTilePanel.cs │ │ │ └── WrapPanel.cs │ │ ├── Marker.cs │ │ ├── Phase.cs │ │ ├── Pile.cs │ │ ├── PlayDispatcher.cs │ │ ├── PlayDispatcherAction.cs │ │ ├── PlayWindow.xaml │ │ ├── PlayWindow.xaml.cs │ │ ├── Player.cs │ │ ├── Save │ │ │ ├── JodsEngineHistory.cs │ │ │ ├── Replay.cs │ │ │ ├── ReplayClient.cs │ │ │ ├── ReplayEngine.cs │ │ │ ├── ReplayEvent.cs │ │ │ ├── ReplayEventType.cs │ │ │ ├── ReplayReader.cs │ │ │ └── ReplayWriter.cs │ │ ├── State │ │ │ ├── CardSaveState.cs │ │ │ ├── CounterSaveState.cs │ │ │ ├── GameEngine.cs │ │ │ ├── GroupSaveState.cs │ │ │ ├── JodsEngineGameSaveState.cs │ │ │ ├── JodsEnginePlayerSaveState.cs │ │ │ ├── MarkerSaveState.cs │ │ │ └── SaveState.cs │ │ └── Table.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── Resources │ │ ├── 109_AllAnnotations_Error_24x24_72.png │ │ ├── Anchor.png │ │ ├── Avatar9_80.jpg │ │ ├── Back.jpg │ │ ├── CustomDataAgreement.txt │ │ ├── FileIcons │ │ │ ├── Deck.ico │ │ │ ├── Game.ico │ │ │ ├── Patch.ico │ │ │ └── Set.ico │ │ ├── Folder.png │ │ ├── Fonts │ │ │ └── Entypo.otf │ │ ├── Front.jpg │ │ ├── GravecorpAvatar.jpg │ │ ├── Icon.ico │ │ ├── Icons │ │ │ ├── About.png │ │ │ ├── LoadDeck.png │ │ │ ├── LoadLimited.png │ │ │ ├── Ok.png │ │ │ ├── Quit.png │ │ │ ├── Reset.png │ │ │ ├── Save.png │ │ │ ├── cards.png │ │ │ ├── console.png │ │ │ ├── diag.ico │ │ │ └── setting_tools.png │ │ ├── Markers │ │ │ ├── black.png │ │ │ ├── blue.png │ │ │ ├── brown.png │ │ │ ├── green.png │ │ │ ├── orange.png │ │ │ ├── purple.png │ │ │ ├── red.png │ │ │ ├── white.png │ │ │ └── yellow.png │ │ ├── Patch.png │ │ ├── PlayResources.xaml │ │ ├── Themes │ │ │ ├── BlueGlass │ │ │ │ ├── Button.xaml │ │ │ │ ├── CardRun.xaml │ │ │ │ ├── ChildWindow.xaml │ │ │ │ ├── CommonControls.xaml │ │ │ │ ├── Menu.xaml │ │ │ │ ├── NumericUpDown.xaml │ │ │ │ ├── Panel.xaml │ │ │ │ ├── ProgressBar.xaml │ │ │ │ ├── ScrollBar.xaml │ │ │ │ ├── Tabs.xaml │ │ │ │ └── Window.xaml │ │ │ ├── Brushes.xaml │ │ │ ├── ChildWindow.xaml │ │ │ ├── Full │ │ │ │ ├── BureauBlack.xaml │ │ │ │ ├── BureauBlue.xaml │ │ │ │ ├── ExpressionDark.xaml │ │ │ │ ├── ExpressionLight.xaml │ │ │ │ ├── ShinyBlue.xaml │ │ │ │ ├── ShinyRed.xaml │ │ │ │ └── WhistlerBlue.xaml │ │ │ ├── Global.xaml │ │ │ ├── Notifications.xaml │ │ │ ├── NumericUpDown.xaml │ │ │ └── Target.xaml │ │ ├── admin.png │ │ ├── back-button.png │ │ ├── background.png │ │ ├── chat.ico │ │ ├── chaticon.png │ │ ├── circle-back-button.png │ │ ├── close.png │ │ ├── closewindow.png │ │ ├── cross.png │ │ ├── custom-games-icon.png │ │ ├── d0c.jpeg │ │ ├── doorclose.wav │ │ ├── eye.png │ │ ├── gamemessage.wav │ │ ├── gamemode.png │ │ ├── github.png │ │ ├── greenbullet.png │ │ ├── greybullet.png │ │ ├── knockknock.wav │ │ ├── loading.gif │ │ ├── lock.png │ │ ├── log.ico │ │ ├── log2.ico │ │ ├── logo (1).png │ │ ├── logoback.png │ │ ├── logolarge.png │ │ ├── logowords.png │ │ ├── matchmaking-icon.png │ │ ├── messagenotify.wav │ │ ├── minimize.png │ │ ├── minmax.png │ │ ├── moderator.png │ │ ├── noimage.png │ │ ├── none.jpg │ │ ├── orangebullet.png │ │ ├── owner.png │ │ ├── people.png │ │ ├── pregamelobbyicon.png │ │ ├── ralig.png │ │ ├── randomname.png │ │ ├── search.png │ │ ├── smallsub.png │ │ ├── smith_user.png │ │ ├── soul1355.png │ │ ├── special.png │ │ ├── spectator-icon.png │ │ ├── statusAway.png │ │ ├── statusDND.png │ │ ├── statusOffline.png │ │ ├── statusOnline.png │ │ ├── sub.png │ │ ├── subscriberbenefits.txt │ │ ├── userjoinsroom.wav │ │ ├── usernoimage.png │ │ └── viewers.png │ ├── Scripting │ │ ├── ApiVersions.xml │ │ ├── CaseInsensitiveDict.py │ │ ├── Controls │ │ │ ├── CardDlg.xaml │ │ │ ├── CardDlg.xaml.cs │ │ │ ├── ChoiceDlg.xaml │ │ │ ├── ChoiceDlg.xaml.cs │ │ │ ├── Dialogs.cs │ │ │ ├── InputDlg.xaml │ │ │ ├── InputDlg.xaml.cs │ │ │ ├── MarkerDlg.xaml │ │ │ ├── MarkerDlg.xaml.cs │ │ │ ├── PackDlg.xaml │ │ │ ├── PackDlg.xaml.cs │ │ │ ├── SelectCardsDlg.xaml │ │ │ ├── SelectCardsDlg.xaml.cs │ │ │ ├── SelectMultiCardsDlg.xaml │ │ │ └── SelectMultiCardsDlg.xaml.cs │ │ ├── Engine.cs │ │ ├── ExecutionResult.cs │ │ ├── GameEvents.cs │ │ ├── GameEvents.tt │ │ ├── IScriptingEngine.cs │ │ ├── Lib │ │ │ ├── _abcoll.py │ │ │ ├── abc.py │ │ │ ├── bisect.py │ │ │ ├── collections.py │ │ │ ├── heapq.py │ │ │ └── keyword.py │ │ ├── OCounter.cs │ │ ├── OPlayer.cs │ │ ├── PythonAPI.py │ │ ├── PythonConverter.cs │ │ ├── ScriptApi.cs │ │ ├── ScriptApiOld.cs │ │ ├── ScriptJob.cs │ │ ├── ScriptSecurityException.cs │ │ ├── ScriptingInterfaces.cs │ │ └── Versions │ │ │ ├── 3.1.0.0.py │ │ │ ├── 3.1.0.1.py │ │ │ ├── 3.1.0.2.py │ │ │ ├── Script_3_1_0_0.cs │ │ │ ├── Script_3_1_0_1.cs │ │ │ └── Script_3_1_0_2.cs │ ├── Sleeves │ │ ├── Air-Travel.jpg │ │ ├── Canival.jpg │ │ ├── Dragon-Strategy.jpg │ │ ├── Face-In-The-Crowd.jpg │ │ ├── GGG.jpg │ │ ├── Homewrecker.jpg │ │ ├── Invent.jpg │ │ ├── Master-Ritualist.jpg │ │ ├── Monstrous-Lassitude.jpg │ │ ├── P-Warrior.jpg │ │ ├── Rudo-Shade.jpg │ │ ├── Straw-Man.jpg │ │ ├── Thabbashite-Assailant.jpg │ │ ├── The-Spoils.jpg │ │ ├── cb1.png │ │ └── cb2.png │ ├── SubscriptionModule.cs │ ├── UiMessages │ │ └── NotifyPropertyChanged.cs │ ├── Utils │ │ ├── BrushCache.cs │ │ ├── CacheTraceListener.cs │ │ ├── CompoundCall.cs │ │ ├── Converters │ │ │ ├── BooleanInverterConverter.cs │ │ │ ├── BooleanToVisibleHiddenConverter.cs │ │ │ ├── NullableBooleanConverter.cs │ │ │ ├── RichTextConverter.cs │ │ │ └── UriToSafeImageConverter.cs │ │ ├── CryptoRandom.cs │ │ ├── FileIcon.cs │ │ ├── GridViewSort.cs │ │ ├── ImageUtils.cs │ │ ├── ImportFile.cs │ │ ├── Log4NetLogger.cs │ │ ├── MouseClickHandler.cs │ │ ├── PasswordBoxAssistant.cs │ │ ├── SSLValidationHelper.cs │ │ ├── ShellLink.cs │ │ ├── Sounds.cs │ │ ├── TextBlockExtension.cs │ │ ├── UacHelper.cs │ │ ├── Win32.cs │ │ ├── XmlInstaller.cs │ │ ├── XmlSetParser.cs │ │ └── YouTube │ │ │ ├── YouTubeProvider.cs │ │ │ ├── YouTubeViewer.xaml │ │ │ └── YouTubeViewer.xaml.cs │ ├── ViewModels │ │ └── DataGameViewModel.cs │ ├── WindowManager.cs │ ├── Windows │ │ ├── AboutWindow.xaml │ │ ├── AboutWindow.xaml.cs │ │ ├── BrowserWindow.xaml │ │ ├── BrowserWindow.xaml.cs │ │ ├── DWindow.xaml │ │ ├── DWindow.xaml.cs │ │ ├── ErrorWindow.xaml │ │ ├── ErrorWindow.xaml.cs │ │ ├── GameLog.xaml │ │ ├── GameLog.xaml.cs │ │ ├── ImportImages.xaml │ │ ├── ImportImages.xaml.cs │ │ ├── LoadingWindow.xaml │ │ ├── LoadingWindow.xaml.cs │ │ ├── Options.xaml │ │ ├── Options.xaml.cs │ │ ├── PickCardFromList.xaml │ │ └── PickCardFromList.xaml.cs │ ├── app.Debug x86.config │ ├── app.Debug.config │ ├── app.config │ ├── app.manifest │ ├── logging.config │ └── packages.config ├── Octgn.Launcher │ ├── App.config │ ├── Launcher.cs │ ├── Main.Designer.cs │ ├── Main.cs │ ├── Main.resx │ ├── Octgn.Launcher.csproj │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── PublishProfiles │ │ │ └── FolderProfile.pubxml │ ├── Resources │ │ └── Icon.ico │ └── packages.config ├── Octgn.Library │ ├── Config.cs │ ├── ConfigFile.cs │ ├── Exceptions │ │ ├── DeckExceptions.cs │ │ └── UserMessageException.cs │ ├── ExtensionMethods │ │ ├── DirectoryInfoExtensionMethods.cs │ │ ├── EnumerableExtensionMethods.cs │ │ ├── ExtensionMethods.cs │ │ ├── FileInfoExtensionMethods.cs │ │ └── StringExtensionMethods.cs │ ├── FeedProvider.cs │ ├── ISimpleConfig.cs │ ├── LimitedMemoryAppender.cs │ ├── Localization │ │ ├── ILanguageDictionary.cs │ │ └── L.cs │ ├── Networking │ │ ├── GameBroadcastListener.cs │ │ ├── GameBroadcaster.cs │ │ ├── ISocket.cs │ │ ├── ISocketMessageProcessor.cs │ │ ├── NamedUrl.cs │ │ ├── ReconnectingSocketBase.cs │ │ ├── SocketBase.cs │ │ ├── SocketMessageProcessorBase.cs │ │ └── SocketReceiveBundle.cs │ ├── Octgn.Library.csproj │ ├── Paths.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Providers │ │ └── DataDirectoryProvider.cs │ ├── Randomness.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Resources │ │ ├── jargonlist.txt │ │ └── nounlist.txt │ ├── SavedPasswordManager.cs │ ├── Schemas │ │ ├── CardGenerator.cs │ │ ├── CardGenerator.xsd │ │ ├── CardSet.cs │ │ ├── CardSet.xsd │ │ ├── CardSet.xsx │ │ ├── Game.cs │ │ ├── Game.xsd │ │ ├── Game.xsx │ │ └── GameEvents.xsd │ ├── Scripting │ │ ├── GameEvents.xml │ │ └── ScriptingInterfaces.cs │ ├── Utils │ │ └── NetworkHelper.cs │ ├── X.cs │ ├── app.config │ └── packages.config ├── Octgn.LoadTester │ ├── App.config │ ├── LibraryCommunicationClientConfig.cs │ ├── Node.cs │ ├── Octgn.LoadTester.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Tester.cs ├── Octgn.LogExporter │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── LogFile.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Octgn.LogExporter.csproj │ ├── OctgnDetails.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── app.manifest │ └── icon.ico ├── Octgn.Online.CommunicationService.InstallerLib │ ├── EventSource.wxs │ ├── HeatGeneratedFileList.wxs │ ├── HeatGeneratedFileList.xslt │ ├── Octgn.Online.CommunicationService.InstallerLib.wixproj │ ├── Product.wxs │ └── SettingsDialog.wxs ├── Octgn.Online.CommunicationService │ ├── App.config │ ├── Data │ │ ├── DataContext.cs │ │ └── UserSubscriptionModel.cs │ ├── Log4NetLogger.cs │ ├── Migrations │ │ ├── 201710241809371_Initial.Designer.cs │ │ ├── 201710241809371_Initial.cs │ │ ├── 201710241809371_Initial.resx │ │ └── Configuration.cs │ ├── Octgn.Online.CommunicationService.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Service.cs │ └── packages.config ├── Octgn.Online.GameService.InstallerLib │ ├── EventSource.wxs │ ├── HeatGeneratedFileList.wxs │ ├── HeatGeneratedFileList.xslt │ ├── Octgn.Online.GameService.InstallerLib.wixproj │ └── Product.wxs ├── Octgn.Online.GameService.ServerLauncher │ ├── App.config │ ├── Octgn.Online.GameService.ServerLauncher.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── Octgn.Online.GameService │ ├── App.config │ ├── AppConfig.cs │ ├── GameServiceClient.cs │ ├── HostedGames.cs │ ├── NetworkHelper.cs │ ├── Octgn.Online.GameService.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── SlowCheetah │ │ │ └── SlowCheetah.Transforms.targets │ ├── SasUpdater.cs │ ├── Service.cs │ └── packages.config ├── Octgn.Online.Installer │ ├── Octgn.Online.Installer.wixproj │ ├── Product.wxs │ └── SASEventSource.wxs ├── Octgn.Online.StandAloneServer │ ├── App.config │ ├── Mono.Options.Options.cs │ ├── Octgn.Online.StandAloneServer.csproj │ ├── Octgn.Online.StandAloneServer.nuspec │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── Octgn.Online.Test │ ├── GameService │ │ └── NetworkHelperTests.cs │ ├── Octgn.Online.Test.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── app.config │ └── packages.config ├── Octgn.Online │ ├── Api │ │ ├── ApiClient.cs │ │ ├── ApiClientException.cs │ │ ├── ExtensionMethods.cs │ │ ├── Models │ │ │ ├── ApiSession.cs │ │ │ ├── ApiUser.cs │ │ │ ├── AuthorizedResponse.cs │ │ │ ├── ChangeEmailResult.cs │ │ │ ├── CreateSession.cs │ │ │ ├── CreateSessionResult.cs │ │ │ ├── DeleteDeckResult.cs │ │ │ ├── GameMessage.cs │ │ │ ├── IsSubbedResults.cs │ │ │ ├── LoginResult.cs │ │ │ ├── PutGameHistoryReq.cs │ │ │ ├── ReleaseInfo.cs │ │ │ ├── ReportUserRequest.cs │ │ │ ├── SetGameListRequest.cs │ │ │ ├── SharedDeckInfo.cs │ │ │ ├── SharedDeckUploadResult.cs │ │ │ ├── UserIconSetResult.cs │ │ │ └── WebhookQueueMessage.cs │ │ └── StatType.cs │ ├── ApiUserCache.cs │ ├── Client.cs │ ├── DefaultHandshaker.cs │ ├── ExtensionMethods.cs │ ├── Hosting │ │ ├── ClientHostingRPC.cs │ │ ├── EnumHostedGameStatus.cs │ │ ├── ExtensionMethods.cs │ │ ├── HostedGame.cs │ │ ├── HostedGameProcess.cs │ │ ├── HostedGameSource.cs │ │ ├── HostedGameStatus.cs │ │ ├── Hosting.cs │ │ └── IClientHostingRPC.cs │ ├── IClientConfig.cs │ ├── InternalsVisibleTo.cs │ └── Octgn.Online.csproj ├── Octgn.ProxyGenerator │ ├── BlockManager.cs │ ├── Definitions │ │ ├── BlockDefinition.cs │ │ ├── ConditionalDefinition.cs │ │ ├── LinkDefinition.cs │ │ ├── Property.cs │ │ └── TemplateDefinition.cs │ ├── Octgn.ProxyGenerator.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ProxyDefinition.cs │ ├── ProxyDeserializer.cs │ ├── ProxyGenerator.cs │ ├── Structs │ │ └── SectionStructs.cs │ ├── TemplateManager.cs │ ├── Util │ │ └── GraphicUtils.cs │ ├── app.config │ └── packages.config ├── Octgn.Server │ ├── BinaryParser.cs │ ├── BinaryParser.tt │ ├── BinaryStubs.cs │ ├── BinaryStubs.tt │ ├── Broadcaster.cs │ ├── Broadcaster.tt │ ├── CardOrientation.cs │ ├── Config.cs │ ├── GameContext.cs │ ├── GameState.cs │ ├── Handler.cs │ ├── IClientCalls.cs │ ├── IClientCalls.tt │ ├── Octgn.Server.csproj │ ├── Player.cs │ ├── PlayerCollection.cs │ ├── PlayerDisconnectedEventArgs.cs │ ├── PlayerSettings.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Protocol.xml │ ├── Server.cs │ ├── ServerSocket.cs │ ├── app.config │ ├── packages.config │ ├── protocol.cs │ └── protocol.xsd ├── Octgn.Test │ ├── App.config │ ├── Core │ │ └── GameFeedManagerTests.cs │ ├── DataNew │ │ └── FileDB │ │ │ └── CollectionDefinition.cs │ ├── Library │ │ └── Networking │ │ │ └── GameBroadcastingTests.cs │ ├── Octgn.Test.csproj │ ├── OctgnApp │ │ ├── Play │ │ │ └── State │ │ │ │ ├── GameSaveTests.cs │ │ │ │ └── StateSaveTests.cs │ │ └── Scripting │ │ │ ├── RemoteCallValidUseCasesTests.cs │ │ │ ├── SecurityTests.cs │ │ │ └── Versioning.cs │ ├── PlayGround.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── SlowCheetah │ │ │ └── SlowCheetah.Transforms.targets │ ├── Server │ │ ├── GameStatusResetTests.cs │ │ └── ServerPortReuseTests.cs │ ├── Utils │ │ └── HttpEcho.cs │ ├── VersionTest.cs │ └── packages.config ├── Octgn.Tools.O8buildgui │ ├── O8buildGUIForm.Designer.cs │ ├── O8buildGUIForm.cs │ ├── O8buildGUIForm.resx │ ├── Octgn.Tools.O8buildgui.csproj │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── app.config │ └── packages.config ├── Octgn.Tools.Proxytest │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Octgn.Tools.Proxytest.csproj │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── app.config │ └── packages.config ├── Octgn.WindowsDesktopUtilities │ ├── ConsoleUtils.cs │ ├── Octgn.WindowsDesktopUtilities.csproj │ ├── OctgnProgram.cs │ ├── OctgnServiceBase.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── Octgn │ ├── .nuget │ │ ├── .nuget │ │ │ └── NuGet.Config │ │ ├── NuGet.Config │ │ ├── NuGet.exe │ │ └── NuGet.targets │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppConfig.cs │ ├── CommandLineHandler.cs │ ├── Const.cs │ ├── Controls │ │ ├── AnimatedWrapPanel.cs │ │ ├── ChildWindow.cs │ │ ├── ChildWindowManager.cs │ │ ├── ConnectOfflineGame.xaml │ │ ├── ConnectOfflineGame.xaml.cs │ │ ├── ControlTemplates │ │ │ ├── UserListItem.cs │ │ │ └── UserListItem.xaml │ │ ├── DecorableWindow.cs │ │ ├── GameSelector.xaml │ │ ├── GameSelector.xaml.cs │ │ ├── HostGameSettings.xaml │ │ ├── HostGameSettings.xaml.cs │ │ ├── MissedMessagesBreak.xaml │ │ ├── MissedMessagesBreak.xaml.cs │ │ ├── NumericUpDown.cs │ │ ├── OpaqueClickableImage.cs │ │ ├── PopupWindowMessage.xaml │ │ ├── PopupWindowMessage.xaml.cs │ │ ├── RichTextBlock.cs │ │ ├── SubscribeMessageLargeMessage.xaml │ │ ├── SubscribeMessageLargeMessage.xaml.cs │ │ ├── TabCommands.cs │ │ ├── TextOrIcon.cs │ │ ├── Tooltip.cs │ │ ├── TopMostMessageBox.cs │ │ ├── UpdateBar.xaml │ │ ├── UpdateBar.xaml.cs │ │ ├── VirtualizingWrapPanel.cs │ │ ├── WaitingDialog.xaml │ │ ├── WaitingDialog.xaml.cs │ │ ├── WindowDecorator.cs │ │ └── WindowDecorators │ │ │ ├── NativeDecorator.cs │ │ │ ├── OctgnDecorator.cs │ │ │ └── OctgnDecoratorResources.xaml │ ├── CurrentReleaseVersion.txt │ ├── CurrentTestVersion.txt │ ├── CurrentVersion.txt │ ├── Definitions │ │ ├── ActionDef.cs │ │ ├── CounterDef.cs │ │ ├── DeckDef.cs │ │ ├── FontDef.cs │ │ ├── GameDef.cs │ │ ├── GlobalVariableDef.cs │ │ ├── IconDef.cs │ │ ├── LocalDef.cs │ │ ├── ScriptDef.cs │ │ └── VariableDef.cs │ ├── Effects │ │ └── GridLengthAnimation.cs │ ├── Extentions │ │ ├── BitmapImageExtensions.cs │ │ ├── ControlExtensions.cs │ │ ├── Conversion.cs │ │ ├── DeckExtensionMethods.cs │ │ ├── LinqExtensions.cs │ │ ├── String.cs │ │ └── WindowExtensionMethods.cs │ ├── GameUpdater.cs │ ├── InterProcess.cs │ ├── JodsEngineIntegration.cs │ ├── Launchers │ │ ├── DeckEditorLauncher.cs │ │ ├── ILauncher.cs │ │ ├── MainLauncher.cs │ │ ├── TableLauncher.cs │ │ └── UpdatingLauncher.cs │ ├── LibraryCommunicationClientConfig.cs │ ├── Octgn.csproj │ ├── Octgn.t4properties │ ├── Program.cs │ ├── Properties │ │ ├── Annotations.cs │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ └── SlowCheetah │ │ │ └── SlowCheetah.Transforms.targets │ ├── Resources │ │ ├── 109_AllAnnotations_Error_24x24_72.png │ │ ├── Anchor.png │ │ ├── Avatar9_80.jpg │ │ ├── Back.jpg │ │ ├── CustomDataAgreement.txt │ │ ├── FileIcons │ │ │ ├── Deck.ico │ │ │ ├── Game.ico │ │ │ ├── Patch.ico │ │ │ └── Set.ico │ │ ├── Folder.png │ │ ├── Fonts │ │ │ └── Entypo.otf │ │ ├── Front.jpg │ │ ├── GravecorpAvatar.jpg │ │ ├── Icon.ico │ │ ├── Icons │ │ │ ├── About.png │ │ │ ├── LoadDeck.png │ │ │ ├── LoadLimited.png │ │ │ ├── Ok.png │ │ │ ├── Quit.png │ │ │ ├── Reset.png │ │ │ ├── Save.png │ │ │ ├── cards.png │ │ │ ├── console.png │ │ │ ├── diag.ico │ │ │ └── setting_tools.png │ │ ├── LoadingWindowAds │ │ │ └── 0.jpg │ │ ├── Markers │ │ │ ├── black.png │ │ │ ├── blue.png │ │ │ ├── brown.png │ │ │ ├── green.png │ │ │ ├── orange.png │ │ │ ├── purple.png │ │ │ ├── red.png │ │ │ ├── white.png │ │ │ └── yellow.png │ │ ├── Patch.png │ │ ├── PlayResources.xaml │ │ ├── StartupMessages.txt │ │ ├── Themes │ │ │ ├── BlueGlass │ │ │ │ ├── Button.xaml │ │ │ │ ├── CardRun.xaml │ │ │ │ ├── ChildWindow.xaml │ │ │ │ ├── CommonControls.xaml │ │ │ │ ├── Menu.xaml │ │ │ │ ├── NumericUpDown.xaml │ │ │ │ ├── Panel.xaml │ │ │ │ ├── ProgressBar.xaml │ │ │ │ ├── ScrollBar.xaml │ │ │ │ ├── Tabs.xaml │ │ │ │ └── Window.xaml │ │ │ ├── Brushes.xaml │ │ │ ├── ChildWindow.xaml │ │ │ ├── Full │ │ │ │ ├── BureauBlack.xaml │ │ │ │ ├── BureauBlue.xaml │ │ │ │ ├── ExpressionDark.xaml │ │ │ │ ├── ExpressionLight.xaml │ │ │ │ ├── ShinyBlue.xaml │ │ │ │ ├── ShinyRed.xaml │ │ │ │ └── WhistlerBlue.xaml │ │ │ ├── Global.xaml │ │ │ ├── GridSplitter.xaml │ │ │ ├── Notifications.xaml │ │ │ ├── NumericUpDown.xaml │ │ │ └── Target.xaml │ │ ├── admin.png │ │ ├── back-button.png │ │ ├── background.png │ │ ├── chat.ico │ │ ├── chaticon.png │ │ ├── circle-back-button.png │ │ ├── close.png │ │ ├── closewindow.png │ │ ├── cross.png │ │ ├── custom-games-icon.png │ │ ├── d0c.jpeg │ │ ├── doorclose.wav │ │ ├── eye.png │ │ ├── gamemessage.wav │ │ ├── gamemode.png │ │ ├── github.png │ │ ├── greenbullet.png │ │ ├── greybullet.png │ │ ├── knockknock.wav │ │ ├── loading.gif │ │ ├── lock.png │ │ ├── log.ico │ │ ├── log2.ico │ │ ├── logo (1).png │ │ ├── logoback.png │ │ ├── logolarge.png │ │ ├── logowords.png │ │ ├── matchmaking-icon.png │ │ ├── messagenotify.wav │ │ ├── minimize.png │ │ ├── minmax.png │ │ ├── moderator.png │ │ ├── noimage.png │ │ ├── none.jpg │ │ ├── orangebullet.png │ │ ├── owner.png │ │ ├── people.png │ │ ├── pregamelobbyicon.png │ │ ├── ralig.png │ │ ├── randomname.png │ │ ├── search.png │ │ ├── smallsub.png │ │ ├── smith_user.png │ │ ├── soul1355.png │ │ ├── special.png │ │ ├── spectator-icon.png │ │ ├── statusAway.png │ │ ├── statusDND.png │ │ ├── statusOffline.png │ │ ├── statusOnline.png │ │ ├── sub.png │ │ ├── subscriberbenefits.txt │ │ ├── userjoinsroom.wav │ │ ├── usernoimage.png │ │ └── viewers.png │ ├── SubscriptionModule.cs │ ├── Tabs │ │ ├── ChallengeBoards │ │ │ ├── ChallengeBoards.xaml │ │ │ └── ChallengeBoards.xaml.cs │ │ ├── GameHistory │ │ │ ├── GameHistoryTab.xaml │ │ │ ├── GameHistoryTab.xaml.cs │ │ │ └── GameHistoryViewModel.cs │ │ ├── GameManagement │ │ │ ├── AddFeed.xaml │ │ │ ├── AddFeed.xaml.cs │ │ │ ├── FeedGameViewModel.cs │ │ │ ├── GameManagement.xaml │ │ │ └── GameManagement.xaml.cs │ │ ├── Login │ │ │ ├── LoginTab.xaml │ │ │ ├── LoginTab.xaml.cs │ │ │ ├── LoginTabViewModel.cs │ │ │ ├── NewsItemViewModel.cs │ │ │ └── NewsViewModel.cs │ │ ├── Play │ │ │ ├── HostedGameViewModel.cs │ │ │ ├── PlayTab.xaml │ │ │ └── PlayTab.xaml.cs │ │ ├── Profile │ │ │ ├── UserProfilePage.xaml │ │ │ └── UserProfilePage.xaml.cs │ │ └── Watch │ │ │ ├── WatchList.xaml │ │ │ └── WatchList.xaml.cs │ ├── UiMessages │ │ └── NotifyPropertyChanged.cs │ ├── UpdateManager.cs │ ├── Utils │ │ ├── BrushCache.cs │ │ ├── CacheTraceListener.cs │ │ ├── Converters │ │ │ ├── BooleanInverterConverter.cs │ │ │ ├── BooleanToVisibleHiddenConverter.cs │ │ │ ├── ConnectionStatusConverter.cs │ │ │ ├── NullableBooleanConverter.cs │ │ │ └── RichTextConverter.cs │ │ ├── CryptoRandom.cs │ │ ├── FileIcon.cs │ │ ├── GridViewSort.cs │ │ ├── ImportFile.cs │ │ ├── Log4NetLogger.cs │ │ ├── MouseClickHandler.cs │ │ ├── PasswordBoxAssistant.cs │ │ ├── SSLValidationHelper.cs │ │ ├── ShellLink.cs │ │ ├── Sounds.cs │ │ ├── TextBlockExtension.cs │ │ ├── UacHelper.cs │ │ ├── Win32.cs │ │ ├── XmlInstaller.cs │ │ ├── XmlSetParser.cs │ │ └── YouTube │ │ │ ├── YouTubeProvider.cs │ │ │ ├── YouTubeViewer.xaml │ │ │ └── YouTubeViewer.xaml.cs │ ├── ViewModels │ │ ├── DataGameViewModel.cs │ │ └── GameFeedViewModel.cs │ ├── WindowManager.cs │ ├── Windows │ │ ├── AboutWindow.xaml │ │ ├── AboutWindow.xaml.cs │ │ ├── BrowserWindow.xaml │ │ ├── BrowserWindow.xaml.cs │ │ ├── DWindow.xaml │ │ ├── DWindow.xaml.cs │ │ ├── Diagnostics.xaml │ │ ├── Diagnostics.xaml.cs │ │ ├── ErrorWindow.xaml │ │ ├── ErrorWindow.xaml.cs │ │ ├── GameHistoryWindow.xaml │ │ ├── GameHistoryWindow.xaml.cs │ │ ├── GrowlNotifications.xaml │ │ ├── GrowlNotifications.xaml.cs │ │ ├── Main.xaml │ │ ├── Main.xaml.cs │ │ ├── Options.xaml │ │ ├── Options.xaml.cs │ │ ├── UpdateChecker.xaml │ │ ├── UpdateChecker.xaml.cs │ │ ├── UpgradeMessage.xaml │ │ ├── UpgradeMessage.xaml.cs │ │ ├── UserProfileWindow.xaml │ │ └── UserProfileWindow.xaml.cs │ ├── app.Debug x86.config │ ├── app.Debug.config │ ├── app.config │ ├── app.manifest │ └── packages.config ├── Octide │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssetsTab │ │ ├── Asset.cs │ │ ├── AssetController.cs │ │ ├── AssetItemView.xaml │ │ ├── AssetItemView.xaml.cs │ │ ├── AssetsTabView.xaml │ │ ├── AssetsTabView.xaml.cs │ │ └── AssetsTabViewModel.cs │ ├── Controls │ │ ├── AssetControllerView.xaml │ │ ├── AssetControllerView.xaml.cs │ │ ├── EditableTextBlock.cs │ │ ├── EditableTextBlockAdorner.cs │ │ ├── ItemPropertiesView.xaml │ │ ├── ItemPropertiesView.xaml.cs │ │ ├── KeyInputTextBox.cs │ │ ├── OctideItemPropertyViewer.xaml │ │ ├── OctideItemPropertyViewer.xaml.cs │ │ ├── PropertyFieldControl.xaml │ │ └── PropertyFieldControl.xaml.cs │ ├── GameLoader.cs │ ├── GameTab │ │ ├── DeckSectionTab │ │ │ ├── DeckSectionItemViewModel.cs │ │ │ ├── DeckSectionView.xaml │ │ │ ├── DeckSectionView.xaml.cs │ │ │ └── DeckSectionViewModel.cs │ │ ├── DocumentTab │ │ │ ├── DocumentItemView.xaml │ │ │ ├── DocumentItemView.xaml.cs │ │ │ ├── DocumentItemViewModel.cs │ │ │ ├── DocumentTabView.xaml │ │ │ ├── DocumentTabView.xaml.cs │ │ │ └── DocumentTabViewModel.cs │ │ ├── GameFontsTab │ │ │ ├── GameFontItemModel.cs │ │ │ ├── GameFontTabView.xaml │ │ │ ├── GameFontTabView.xaml.cs │ │ │ └── GameFontTabViewModel.cs │ │ ├── GameModeTab │ │ │ ├── GameModeItemView.xaml │ │ │ ├── GameModeItemView.xaml.cs │ │ │ ├── GameModeItemViewModel.cs │ │ │ ├── GameModeTabView.xaml │ │ │ ├── GameModeTabView.xaml.cs │ │ │ └── GameModeTabViewModel.cs │ │ ├── InformationTab │ │ │ ├── InformationTabView.xaml │ │ │ ├── InformationTabView.xaml.cs │ │ │ └── InformationTabViewModel.cs │ │ ├── MarkerTab │ │ │ ├── MarkerItemView.xaml │ │ │ ├── MarkerItemView.xaml.cs │ │ │ ├── MarkerItemViewModel.cs │ │ │ ├── MarkerTabView.xaml │ │ │ ├── MarkerTabView.xaml.cs │ │ │ └── MarkerTabViewModel.cs │ │ ├── PropertyTab │ │ │ ├── PropertyItemView.xaml │ │ │ ├── PropertyItemView.xaml.cs │ │ │ ├── PropertyItemViewModel.cs │ │ │ ├── PropertyTabView.xaml │ │ │ ├── PropertyTabView.xaml.cs │ │ │ └── PropertyTabViewModel.cs │ │ ├── SoundTab │ │ │ ├── SoundItemView.xaml │ │ │ ├── SoundItemView.xaml.cs │ │ │ ├── SoundItemViewModel.cs │ │ │ ├── SoundTabView.xaml │ │ │ ├── SoundTabView.xaml.cs │ │ │ └── SoundTabViewModel.cs │ │ └── SymbolTab │ │ │ ├── SymbolItemView.xaml │ │ │ ├── SymbolItemView.xaml.cs │ │ │ ├── SymbolItemViewModel.cs │ │ │ ├── SymbolTabView.xaml │ │ │ ├── SymbolTabView.xaml.cs │ │ │ └── SymbolTabViewModel.cs │ ├── Messages │ │ ├── MouseWheelTableZoom.cs │ │ ├── PropertyChangeMessages.cs │ │ ├── ShowMainWindowMessage.cs │ │ └── WindowActionMessage.cs │ ├── NInjectServiceLocator.cs │ ├── Octide.csproj │ ├── PreviewTab │ │ ├── ActionMenu │ │ │ ├── ActionItemModel.cs │ │ │ ├── ActionItemView.xaml │ │ │ ├── ActionItemView.xaml.cs │ │ │ ├── ActionSeparatorItemModel.cs │ │ │ ├── ActionSeparatorItemView.xaml │ │ │ ├── ActionSeparatorItemView.xaml.cs │ │ │ ├── ActionSubmenuItemModel.cs │ │ │ ├── ActionSubmenuItemView.xaml │ │ │ ├── ActionSubmenuItemView.xaml.cs │ │ │ └── IBaseAction.cs │ │ ├── ActionMenuViewModel.cs │ │ ├── BaseGroupItemModel.cs │ │ ├── BoardItemModel.cs │ │ ├── BoardItemView.xaml │ │ ├── BoardItemView.xaml.cs │ │ ├── CounterItemModel.cs │ │ ├── CounterItemView.xaml │ │ ├── CounterItemView.xaml.cs │ │ ├── PhaseItemModel.cs │ │ ├── PhaseItemView.xaml │ │ ├── PhaseItemView.xaml.cs │ │ ├── PileItemModel.cs │ │ ├── PileItemView.cs │ │ ├── PileItemView.xaml │ │ ├── PreviewTabView.xaml │ │ ├── PreviewTabView.xaml.cs │ │ ├── PreviewTabViewModel.cs │ │ ├── SampleCardItemModel.cs │ │ ├── SizeItemModel.cs │ │ ├── SizeItemView.xaml │ │ ├── SizeItemView.xaml.cs │ │ ├── TableItemModel.cs │ │ ├── TableItemView.xaml │ │ └── TableItemView.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── ProxyTab │ │ ├── DragDropHandlers │ │ │ ├── LinkContainerDropHandler.cs │ │ │ ├── TemplateDragHandler.cs │ │ │ └── TemplateDropHandler.cs │ │ ├── OverlayDefinitionItemModel.cs │ │ ├── OverlayDefinitionItemView.xaml │ │ ├── OverlayDefinitionItemView.xaml.cs │ │ ├── ProxyTabView.xaml │ │ ├── ProxyTabView.xaml.cs │ │ ├── ProxyTabViewModel.cs │ │ ├── Templates │ │ │ ├── ArtOverlay.cs │ │ │ ├── BlockContainer.cs │ │ │ ├── Conditional.cs │ │ │ ├── IBaseBlock.cs │ │ │ ├── IBaseConditionalCase.cs │ │ │ ├── Link.cs │ │ │ ├── Match.cs │ │ │ ├── OverlayLinkContainer.cs │ │ │ ├── Switch.cs │ │ │ ├── TemplateItemModel.cs │ │ │ ├── TemplateItemView.xaml │ │ │ └── TemplateItemView.xaml.cs │ │ ├── TextBlockDefinitionItemModel.cs │ │ ├── TextBlockDefinitionItemView.xaml │ │ └── TextBlockDefinitionItemView.xaml.cs │ ├── Resources │ │ ├── About.png │ │ ├── actions.py │ │ ├── back.png │ │ ├── blank.png │ │ ├── deck.png │ │ ├── definition.xml │ │ ├── discard.png │ │ ├── front.png │ │ ├── hand.png │ │ ├── icon.ico │ │ ├── icon.jpg │ │ ├── proxydef.xml │ │ ├── score.png │ │ ├── set.xml │ │ └── wood.jpg │ ├── ScriptingTab │ │ ├── EventsTab │ │ │ ├── GameEventItemModel.cs │ │ │ ├── GameEventTabView.xaml │ │ │ ├── GameEventTabView.xaml.cs │ │ │ └── GameEventTabViewModel.cs │ │ ├── PythonTab │ │ │ ├── PythonTabView.xaml │ │ │ ├── PythonTabView.xaml.cs │ │ │ ├── PythonTabViewModel.cs │ │ │ └── ScriptItemModel.cs │ │ └── VariablesTab │ │ │ ├── GlobalVariableItemModel.cs │ │ │ ├── VariableTabView.xaml │ │ │ ├── VariableTabView.xaml.cs │ │ │ └── VariableTabViewModel.cs │ ├── SetTab │ │ ├── CardTab │ │ │ ├── Alternate.cs │ │ │ ├── AlternateItemView.xaml │ │ │ ├── AlternateItemView.xaml.cs │ │ │ ├── Card.cs │ │ │ ├── CardItemView.xaml │ │ │ ├── CardItemView.xaml.cs │ │ │ ├── Property.cs │ │ │ ├── ProxyItemView.xaml │ │ │ └── ProxyItemView.xaml.cs │ │ ├── PackageTab │ │ │ ├── DropHandlers.cs │ │ │ ├── Include.cs │ │ │ ├── Option.cs │ │ │ ├── Options.cs │ │ │ ├── Package.cs │ │ │ ├── PackageItemView.xaml │ │ │ ├── PackageItemView.xaml.cs │ │ │ ├── Pick.cs │ │ │ └── Property.cs │ │ ├── Set.cs │ │ ├── SetItemView.xaml │ │ ├── SetItemView.xaml.cs │ │ ├── SetTabView.xaml │ │ ├── SetTabView.xaml.cs │ │ └── SetTabViewModel.cs │ ├── SyntaxHighlighting │ │ └── Python.xshd │ ├── Theme │ │ ├── Colors.xaml │ │ ├── StyleTemplates.xaml │ │ └── Window.xaml │ ├── Utils │ │ ├── AsyncObservableCollection.cs │ │ ├── EnumBindingSourceExtension.cs │ │ ├── IdeBaseItem.cs │ │ ├── IdeObservableCollection.cs │ │ ├── ScrollViewerHelper.cs │ │ ├── TextOutline.cs │ │ ├── Utils.cs │ │ └── ValidationRules.cs │ ├── ViewModel │ │ ├── LoaderViewModel.cs │ │ ├── MainViewModel.cs │ │ ├── ViewModelLocator.cs │ │ └── WindowLocator.cs │ ├── Views │ │ ├── LoaderWindow.xaml │ │ ├── LoaderWindow.xaml.cs │ │ ├── MainWindow.xaml │ │ └── MainWindow.xaml.cs │ ├── app.config │ └── packages.config ├── WpfCircularProgressBar │ ├── App.config │ ├── App.xaml │ ├── AttachedViewModelBase.cs │ ├── CircularProgressBarViewModel.cs │ ├── GridUtils.cs │ ├── LinqToVisualTree.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── PiePiece.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── PropertyChangeNotifier.cs │ ├── SegmentedProgressBarViewModel.cs │ ├── Utils.cs │ └── WpfCircularProgressBar.csproj └── o8build │ ├── App.config │ ├── GameValidator.cs │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Set.cs │ ├── o8build.csproj │ └── packages.config ├── recentchanges.txt ├── recentchangesrelease.txt └── ss.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/workflows/copilot-setup-steps.yml.windows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/.github/workflows/copilot-setup-steps.yml.windows -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/.gitmodules -------------------------------------------------------------------------------- /.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/.nuget/NuGet.Config -------------------------------------------------------------------------------- /.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/.nuget/NuGet.exe -------------------------------------------------------------------------------- /.nuget/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/.nuget/packages.config -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "dotnet.preferCSharpExtension": true 3 | } -------------------------------------------------------------------------------- /Autoupdating XMLs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/Autoupdating XMLs.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/CONTENT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /EULA.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/EULA.rtf -------------------------------------------------------------------------------- /HACK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/HACK.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/LICENSE.md -------------------------------------------------------------------------------- /OCTGN.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/OCTGN.sln -------------------------------------------------------------------------------- /OCTGN.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/OCTGN.sln.DotSettings -------------------------------------------------------------------------------- /OCTGN.sln.licenseheader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/OCTGN.sln.licenseheader -------------------------------------------------------------------------------- /OCTGN.tss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/OCTGN.tss -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/README.md -------------------------------------------------------------------------------- /Run-RegenerateNetworkingFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/Run-RegenerateNetworkingFiles.ps1 -------------------------------------------------------------------------------- /THIRDPARTY.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/THIRDPARTY.MD -------------------------------------------------------------------------------- /Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/Version.cs -------------------------------------------------------------------------------- /chocolatey/dev/OctgnDevPackage-Express/tools/chocolateyInstall.ps1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /currentversion.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/currentversion.xml -------------------------------------------------------------------------------- /deploy/Heat-FileList-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/deploy/Heat-FileList-README.md -------------------------------------------------------------------------------- /deploy/Update-HeatFileList.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/deploy/Update-HeatFileList.ps1 -------------------------------------------------------------------------------- /deploy/currentversion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/deploy/currentversion.txt -------------------------------------------------------------------------------- /deploy/currentversiontest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/deploy/currentversiontest.txt -------------------------------------------------------------------------------- /deploy/update-heat-filelist.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/deploy/update-heat-filelist.bat -------------------------------------------------------------------------------- /dummychange.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/dummychange.txt -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/index.html -------------------------------------------------------------------------------- /nuget/Octgn.Library.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/nuget/Octgn.Library.nupkg -------------------------------------------------------------------------------- /nuget/Octgn.Library.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/nuget/Octgn.Library.nuspec -------------------------------------------------------------------------------- /octgnFX/Graphics/FilesIcons.design: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Graphics/FilesIcons.design -------------------------------------------------------------------------------- /octgnFX/Graphics/InstallerBanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Graphics/InstallerBanner.png -------------------------------------------------------------------------------- /octgnFX/Graphics/InstallerBundleDialog.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Graphics/InstallerBundleDialog.pdn -------------------------------------------------------------------------------- /octgnFX/Graphics/InstallerBundleDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Graphics/InstallerBundleDialog.png -------------------------------------------------------------------------------- /octgnFX/Graphics/InstallerDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Graphics/InstallerDialog.png -------------------------------------------------------------------------------- /octgnFX/Graphics/MainIcon.design: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Graphics/MainIcon.design -------------------------------------------------------------------------------- /octgnFX/Graphics/MainLogoWLetters.design: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Graphics/MainLogoWLetters.design -------------------------------------------------------------------------------- /octgnFX/Graphics/MainLogoWLetters.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Graphics/MainLogoWLetters.psd -------------------------------------------------------------------------------- /octgnFX/Graphics/gamemode.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Graphics/gamemode.pdn -------------------------------------------------------------------------------- /octgnFX/Graphics/logo plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Graphics/logo plain.png -------------------------------------------------------------------------------- /octgnFX/Graphics/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Graphics/logo.png -------------------------------------------------------------------------------- /octgnFX/Graphics/octide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Graphics/octide.png -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/DataManagers/CardManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/DataManagers/CardManager.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/DataManagers/GameManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/DataManagers/GameManager.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/DataManagers/PackManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/DataManagers/PackManager.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/DataManagers/SetManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/DataManagers/SetManager.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/Deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/Deploy.ps1 -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/EmptyPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/EmptyPackage.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/GameFeedManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/GameFeedManager.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/GameSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/GameSettings.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/Messenger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/Messenger.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/Model.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/Octgn.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/Octgn.Core.csproj -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/Play/GameMessageDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/Play/GameMessageDispatcher.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/Play/IPlayPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/Play/IPlayPlayer.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/Play/PlayerState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/Play/PlayerState.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/Play/Save/GameSaveState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/Play/Save/GameSaveState.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/Play/Save/History.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/Play/Save/History.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/Play/Save/IGameSaveState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/Play/Save/IGameSaveState.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/Play/Save/IHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/Play/Save/IHistory.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/Play/Save/IPlayerSaveState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/Play/Save/IPlayerSaveState.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/Play/Save/PlayerSaveState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/Play/Save/PlayerSaveState.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/Plugin/IDeckBuilderPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/Plugin/IDeckBuilderPlugin.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/Plugin/IPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/Plugin/IPlugin.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/Plugin/IPluginMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/Plugin/IPluginMenuItem.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/Plugin/PluginContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/Plugin/PluginContainer.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/Plugin/PluginManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/Plugin/PluginManager.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/Plugin/ProxyDomain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/Plugin/ProxyDomain.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/Prefs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/Prefs.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/Properties/Annotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/Properties/Annotations.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/StreamExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/StreamExtensionMethods.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/Tabletop/GameEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/Tabletop/GameEngine.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/Tabletop/GameState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/Tabletop/GameState.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/TaskContinuationHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/TaskContinuationHelpers.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/Util/BigInteger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/Util/BigInteger.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/Util/Crypto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/Util/Crypto.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/Util/Cryptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/Util/Cryptor.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/Util/FileDownloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/Util/FileDownloader.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/Util/TextUploader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/Util/TextUploader.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/Versioned.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/Versioned.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/ViewModelBase.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/app.config -------------------------------------------------------------------------------- /octgnFX/Octgn.Core/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Core/packages.config -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/CardPropertyComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/CardPropertyComparer.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/DbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/DbContext.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Def.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Def.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Entities/BackgroundStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Entities/BackgroundStyle.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Entities/Card.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Entities/Card.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Entities/CardSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Entities/CardSize.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Entities/Counter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Entities/Counter.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Entities/DataRectangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Entities/DataRectangle.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Entities/Deck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Entities/Deck.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Entities/DeckSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Entities/DeckSection.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Entities/Document.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Entities/Document.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Entities/Font.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Entities/Font.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Entities/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Entities/Game.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Entities/GameBoard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Entities/GameBoard.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Entities/GameEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Entities/GameEvent.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Entities/GameMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Entities/GameMarker.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Entities/GameMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Entities/GameMode.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Entities/GamePhase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Entities/GamePhase.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Entities/GameScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Entities/GameScript.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Entities/GameSound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Entities/GameSound.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Entities/GlobalVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Entities/GlobalVariable.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Entities/Group.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Entities/Group.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Entities/GroupViewState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Entities/GroupViewState.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Entities/GroupVisibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Entities/GroupVisibility.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Entities/ISleeve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Entities/ISleeve.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Entities/Include.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Entities/Include.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Entities/MultiCard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Entities/MultiCard.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Entities/Option.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Entities/Option.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Entities/OptionsList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Entities/OptionsList.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Entities/Pack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Entities/Pack.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Entities/PackContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Entities/PackContent.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Entities/Pick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Entities/Pick.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Entities/PickProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Entities/PickProperty.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Entities/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Entities/Player.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Entities/PropertyDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Entities/PropertyDef.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Entities/Section.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Entities/Section.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Entities/Set.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Entities/Set.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Entities/Sleeve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Entities/Sleeve.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Entities/SleeveSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Entities/SleeveSource.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Entities/Symbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Entities/Symbol.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/ExtensionMethods.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/FileDB/CollectionQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/FileDB/CollectionQuery.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/FileDB/FileDb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/FileDB/FileDb.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/FileDB/FullCacheProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/FileDB/FullCacheProvider.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/FileDB/ICacheProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/FileDB/ICacheProvider.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/FileDB/IFileDbSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/FileDB/IFileDbSerializer.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/FileDB/IPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/FileDB/IPart.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/FileDB/Part.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/FileDB/Part.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/FileDB/PartType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/FileDB/PartType.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/GameSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/GameSerializer.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/IDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/IDbContext.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/IDbContextCaching.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/IDbContextCaching.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Octgn.DataNew.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Octgn.DataNew.csproj -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/app.config -------------------------------------------------------------------------------- /octgnFX/Octgn.DataNew/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DataNew/packages.config -------------------------------------------------------------------------------- /octgnFX/Octgn.DeckBuilderPluginExample/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.DeckBuilderPluginExample/app.config -------------------------------------------------------------------------------- /octgnFX/Octgn.GameStudio/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.GameStudio/App.config -------------------------------------------------------------------------------- /octgnFX/Octgn.GameStudio/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.GameStudio/App.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn.GameStudio/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.GameStudio/App.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.GameStudio/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.GameStudio/MainWindow.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn.GameStudio/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.GameStudio/MainWindow.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.GameStudio/Octgn.GameStudio.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.GameStudio/Octgn.GameStudio.csproj -------------------------------------------------------------------------------- /octgnFX/Octgn.GameStudio/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.GameStudio/Properties/Resources.resx -------------------------------------------------------------------------------- /octgnFX/Octgn.GameWizard/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.GameWizard/App.config -------------------------------------------------------------------------------- /octgnFX/Octgn.GameWizard/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.GameWizard/App.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn.GameWizard/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.GameWizard/App.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.GameWizard/Controls/Field.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.GameWizard/Controls/Field.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.GameWizard/Controls/WizardPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.GameWizard/Controls/WizardPage.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.GameWizard/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.GameWizard/MainWindow.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn.GameWizard/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.GameWizard/MainWindow.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.GameWizard/Models/NewGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.GameWizard/Models/NewGame.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.GameWizard/Octgn.GameWizard.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.GameWizard/Octgn.GameWizard.csproj -------------------------------------------------------------------------------- /octgnFX/Octgn.GameWizard/Pages/BasicInfoPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.GameWizard/Pages/BasicInfoPage.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn.GameWizard/Pages/CreatePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.GameWizard/Pages/CreatePage.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn.GameWizard/Pages/CreatePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.GameWizard/Pages/CreatePage.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.GameWizard/Pages/FinalPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.GameWizard/Pages/FinalPage.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn.GameWizard/Pages/FinalPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.GameWizard/Pages/FinalPage.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.GameWizard/Pages/TableSidesPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.GameWizard/Pages/TableSidesPage.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn.GameWizard/Pages/WelcomePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.GameWizard/Pages/WelcomePage.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn.GameWizard/Pages/WelcomePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.GameWizard/Pages/WelcomePage.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.GameWizard/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.GameWizard/Properties/Resources.resx -------------------------------------------------------------------------------- /octgnFX/Octgn.GameWizard/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.GameWizard/Themes/Generic.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn.GameWizard/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.GameWizard/packages.config -------------------------------------------------------------------------------- /octgnFX/Octgn.GameWizard/wizard.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.GameWizard/wizard.ico -------------------------------------------------------------------------------- /octgnFX/Octgn.Installer/Octgn.Installer.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Installer/Octgn.Installer.wixproj -------------------------------------------------------------------------------- /octgnFX/Octgn.Installer/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Installer/Product.wxs -------------------------------------------------------------------------------- /octgnFX/Octgn.InstallerLib/Comp.Shell.DeckIcon.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.InstallerLib/Comp.Shell.DeckIcon.wxs -------------------------------------------------------------------------------- /octgnFX/Octgn.InstallerLib/Comp.StartMenu.Dev.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.InstallerLib/Comp.StartMenu.Dev.wxs -------------------------------------------------------------------------------- /octgnFX/Octgn.InstallerLib/OctgnInPath.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.InstallerLib/OctgnInPath.wxs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Annotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Annotations.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/App.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/App.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/AppConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/AppConfig.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/CommandLineHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/CommandLineHandler.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Const.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Const.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Controls/ChildWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Controls/ChildWindow.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Controls/NumericUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Controls/NumericUpDown.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Controls/RichTextBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Controls/RichTextBlock.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Controls/TabCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Controls/TabCommands.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Controls/TextOrIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Controls/TextOrIcon.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Controls/Tooltip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Controls/Tooltip.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/CurrentReleaseVersion.txt: -------------------------------------------------------------------------------- 1 | 3.1.165.381 -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/CurrentTestVersion.txt: -------------------------------------------------------------------------------- 1 | 3.1.164.381 -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/CurrentVersion.txt: -------------------------------------------------------------------------------- 1 | 3.1.165.381 -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/DeckBuilder/MetaDeck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/DeckBuilder/MetaDeck.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/DeckBuilder/SearchSave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/DeckBuilder/SearchSave.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/DoVersionStuff.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/DoVersionStuff.tt -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/DoVersionStuff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/DoVersionStuff.txt -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Extentions/Conversion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Extentions/Conversion.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Extentions/String.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Extentions/String.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Launchers/ILauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Launchers/ILauncher.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Launchers/LauncherBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Launchers/LauncherBase.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Loaders/ConfigLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Loaders/ConfigLoader.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Loaders/DiscordLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Loaders/DiscordLoader.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Loaders/GraphicsLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Loaders/GraphicsLoader.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Loaders/ILoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Loaders/ILoader.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Loaders/Loader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Loaders/Loader.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Loaders/NetworkLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Loaders/NetworkLoader.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Networking/BinaryStubs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Networking/BinaryStubs.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Networking/BinaryStubs.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Networking/BinaryStubs.tt -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Networking/Mute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Networking/Mute.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Octgn.JodsEngine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Octgn.JodsEngine.csproj -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Play/Actions/Action.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Play/Actions/Action.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Play/Actions/Create.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Play/Actions/Create.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Play/Actions/Move.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Play/Actions/Move.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Play/Actions/Rotate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Play/Actions/Rotate.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Play/Actions/Shake.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Play/Actions/Shake.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Play/Actions/Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Play/Actions/Target.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Play/Actions/Turn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Play/Actions/Turn.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Play/Card.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Play/Card.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Play/CardIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Play/CardIdentity.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Play/Counter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Play/Counter.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Play/DeveloperWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Play/DeveloperWindow.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Play/DragAdorner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Play/DragAdorner.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Play/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Play/Events.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Play/Group.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Play/Group.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Play/Gui/ArrowControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Play/Gui/ArrowControl.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Play/Gui/CardControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Play/Gui/CardControl.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Play/Gui/CardEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Play/Gui/CardEvents.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Play/Gui/CardScroller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Play/Gui/CardScroller.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Play/Gui/ChatControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Play/Gui/ChatControl.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Play/Gui/Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Play/Gui/Commands.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Play/Gui/DeckStats.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Play/Gui/DeckStats.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Play/Gui/FanPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Play/Gui/FanPanel.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Play/Gui/GroupControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Play/Gui/GroupControl.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Play/Gui/HslColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Play/Gui/HslColor.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Play/Gui/PilePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Play/Gui/PilePanel.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Play/Gui/Selection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Play/Gui/Selection.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Play/Gui/TableCanvas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Play/Gui/TableCanvas.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Play/Gui/WrapPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Play/Gui/WrapPanel.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Play/Marker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Play/Marker.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Play/Phase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Play/Phase.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Play/Pile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Play/Pile.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Play/PlayDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Play/PlayDispatcher.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Play/PlayWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Play/PlayWindow.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Play/PlayWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Play/PlayWindow.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Play/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Play/Player.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Play/Save/Replay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Play/Save/Replay.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Play/State/SaveState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Play/State/SaveState.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Play/Table.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Play/Table.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Program.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/Anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/Anchor.png -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/Back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/Back.jpg -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/Folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/Folder.png -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/Front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/Front.jpg -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/Icon.ico -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/Icons/Ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/Icons/Ok.png -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/Patch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/Patch.png -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/admin.png -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/chat.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/chat.ico -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/chaticon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/chaticon.png -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/close.png -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/cross.png -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/d0c.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/d0c.jpeg -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/doorclose.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/doorclose.wav -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/eye.png -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/gamemode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/gamemode.png -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/github.png -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/loading.gif -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/lock.png -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/log.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/log.ico -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/log2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/log2.ico -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/logo (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/logo (1).png -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/logoback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/logoback.png -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/logolarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/logolarge.png -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/logowords.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/logowords.png -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/minimize.png -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/minmax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/minmax.png -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/moderator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/moderator.png -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/noimage.png -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/none.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/none.jpg -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/owner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/owner.png -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/people.png -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/ralig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/ralig.png -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/search.png -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/smallsub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/smallsub.png -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/soul1355.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/soul1355.png -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/special.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/special.png -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/statusDND.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/statusDND.png -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/sub.png -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Resources/viewers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Resources/viewers.png -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Scripting/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Scripting/Engine.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Scripting/GameEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Scripting/GameEvents.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Scripting/GameEvents.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Scripting/GameEvents.tt -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Scripting/Lib/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Scripting/Lib/abc.py -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Scripting/Lib/bisect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Scripting/Lib/bisect.py -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Scripting/Lib/heapq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Scripting/Lib/heapq.py -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Scripting/OCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Scripting/OCounter.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Scripting/OPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Scripting/OPlayer.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Scripting/PythonAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Scripting/PythonAPI.py -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Scripting/ScriptApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Scripting/ScriptApi.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Scripting/ScriptJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Scripting/ScriptJob.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Sleeves/Air-Travel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Sleeves/Air-Travel.jpg -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Sleeves/Canival.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Sleeves/Canival.jpg -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Sleeves/GGG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Sleeves/GGG.jpg -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Sleeves/Homewrecker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Sleeves/Homewrecker.jpg -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Sleeves/Invent.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Sleeves/Invent.jpg -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Sleeves/P-Warrior.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Sleeves/P-Warrior.jpg -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Sleeves/Rudo-Shade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Sleeves/Rudo-Shade.jpg -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Sleeves/Straw-Man.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Sleeves/Straw-Man.jpg -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Sleeves/The-Spoils.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Sleeves/The-Spoils.jpg -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Sleeves/cb1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Sleeves/cb1.png -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Sleeves/cb2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Sleeves/cb2.png -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/SubscriptionModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/SubscriptionModule.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Utils/BrushCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Utils/BrushCache.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Utils/CompoundCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Utils/CompoundCall.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Utils/CryptoRandom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Utils/CryptoRandom.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Utils/FileIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Utils/FileIcon.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Utils/GridViewSort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Utils/GridViewSort.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Utils/ImageUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Utils/ImageUtils.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Utils/ImportFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Utils/ImportFile.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Utils/Log4NetLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Utils/Log4NetLogger.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Utils/ShellLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Utils/ShellLink.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Utils/Sounds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Utils/Sounds.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Utils/UacHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Utils/UacHelper.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Utils/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Utils/Win32.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Utils/XmlInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Utils/XmlInstaller.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Utils/XmlSetParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Utils/XmlSetParser.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/WindowManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/WindowManager.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Windows/DWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Windows/DWindow.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Windows/DWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Windows/DWindow.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Windows/GameLog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Windows/GameLog.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Windows/GameLog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Windows/GameLog.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Windows/Options.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Windows/Options.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/Windows/Options.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/Windows/Options.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/app.Debug x86.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/app.Debug x86.config -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/app.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/app.Debug.config -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/app.config -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/app.manifest -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/logging.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/logging.config -------------------------------------------------------------------------------- /octgnFX/Octgn.JodsEngine/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.JodsEngine/packages.config -------------------------------------------------------------------------------- /octgnFX/Octgn.Launcher/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Launcher/App.config -------------------------------------------------------------------------------- /octgnFX/Octgn.Launcher/Launcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Launcher/Launcher.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Launcher/Main.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Launcher/Main.Designer.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Launcher/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Launcher/Main.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Launcher/Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Launcher/Main.resx -------------------------------------------------------------------------------- /octgnFX/Octgn.Launcher/Octgn.Launcher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Launcher/Octgn.Launcher.csproj -------------------------------------------------------------------------------- /octgnFX/Octgn.Launcher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Launcher/Program.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Launcher/Resources/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Launcher/Resources/Icon.ico -------------------------------------------------------------------------------- /octgnFX/Octgn.Launcher/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Launcher/packages.config -------------------------------------------------------------------------------- /octgnFX/Octgn.Library/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Library/Config.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Library/ConfigFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Library/ConfigFile.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Library/FeedProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Library/FeedProvider.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Library/ISimpleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Library/ISimpleConfig.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Library/LimitedMemoryAppender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Library/LimitedMemoryAppender.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Library/Localization/L.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Library/Localization/L.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Library/Networking/ISocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Library/Networking/ISocket.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Library/Networking/NamedUrl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Library/Networking/NamedUrl.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Library/Networking/SocketBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Library/Networking/SocketBase.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Library/Octgn.Library.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Library/Octgn.Library.csproj -------------------------------------------------------------------------------- /octgnFX/Octgn.Library/Paths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Library/Paths.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Library/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Library/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Library/Randomness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Library/Randomness.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Library/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Library/Resources.Designer.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Library/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Library/Resources.resx -------------------------------------------------------------------------------- /octgnFX/Octgn.Library/Resources/jargonlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Library/Resources/jargonlist.txt -------------------------------------------------------------------------------- /octgnFX/Octgn.Library/Resources/nounlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Library/Resources/nounlist.txt -------------------------------------------------------------------------------- /octgnFX/Octgn.Library/SavedPasswordManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Library/SavedPasswordManager.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Library/Schemas/CardGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Library/Schemas/CardGenerator.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Library/Schemas/CardGenerator.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Library/Schemas/CardGenerator.xsd -------------------------------------------------------------------------------- /octgnFX/Octgn.Library/Schemas/CardSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Library/Schemas/CardSet.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Library/Schemas/CardSet.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Library/Schemas/CardSet.xsd -------------------------------------------------------------------------------- /octgnFX/Octgn.Library/Schemas/CardSet.xsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Library/Schemas/CardSet.xsx -------------------------------------------------------------------------------- /octgnFX/Octgn.Library/Schemas/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Library/Schemas/Game.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Library/Schemas/Game.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Library/Schemas/Game.xsd -------------------------------------------------------------------------------- /octgnFX/Octgn.Library/Schemas/Game.xsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Library/Schemas/Game.xsx -------------------------------------------------------------------------------- /octgnFX/Octgn.Library/Schemas/GameEvents.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Library/Schemas/GameEvents.xsd -------------------------------------------------------------------------------- /octgnFX/Octgn.Library/Scripting/GameEvents.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Library/Scripting/GameEvents.xml -------------------------------------------------------------------------------- /octgnFX/Octgn.Library/Utils/NetworkHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Library/Utils/NetworkHelper.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Library/X.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Library/X.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Library/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Library/app.config -------------------------------------------------------------------------------- /octgnFX/Octgn.Library/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Library/packages.config -------------------------------------------------------------------------------- /octgnFX/Octgn.LoadTester/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.LoadTester/App.config -------------------------------------------------------------------------------- /octgnFX/Octgn.LoadTester/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.LoadTester/Node.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.LoadTester/Octgn.LoadTester.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.LoadTester/Octgn.LoadTester.csproj -------------------------------------------------------------------------------- /octgnFX/Octgn.LoadTester/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.LoadTester/Program.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.LoadTester/Tester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.LoadTester/Tester.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.LogExporter/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.LogExporter/App.config -------------------------------------------------------------------------------- /octgnFX/Octgn.LogExporter/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.LogExporter/App.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn.LogExporter/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.LogExporter/App.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.LogExporter/LogFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.LogExporter/LogFile.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.LogExporter/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.LogExporter/MainWindow.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn.LogExporter/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.LogExporter/MainWindow.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.LogExporter/OctgnDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.LogExporter/OctgnDetails.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.LogExporter/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.LogExporter/app.manifest -------------------------------------------------------------------------------- /octgnFX/Octgn.LogExporter/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.LogExporter/icon.ico -------------------------------------------------------------------------------- /octgnFX/Octgn.Online.GameService/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Online.GameService/App.config -------------------------------------------------------------------------------- /octgnFX/Octgn.Online.GameService/AppConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Online.GameService/AppConfig.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Online.GameService/HostedGames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Online.GameService/HostedGames.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Online.GameService/SasUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Online.GameService/SasUpdater.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Online.GameService/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Online.GameService/Service.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Online.GameService/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Online.GameService/packages.config -------------------------------------------------------------------------------- /octgnFX/Octgn.Online.Installer/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Online.Installer/Product.wxs -------------------------------------------------------------------------------- /octgnFX/Octgn.Online.StandAloneServer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Online.StandAloneServer/App.config -------------------------------------------------------------------------------- /octgnFX/Octgn.Online.StandAloneServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Online.StandAloneServer/Program.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Online.Test/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Online.Test/app.config -------------------------------------------------------------------------------- /octgnFX/Octgn.Online.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Online.Test/packages.config -------------------------------------------------------------------------------- /octgnFX/Octgn.Online/Api/ApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Online/Api/ApiClient.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Online/Api/ApiClientException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Online/Api/ApiClientException.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Online/Api/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Online/Api/ExtensionMethods.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Online/Api/Models/ApiSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Online/Api/Models/ApiSession.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Online/Api/Models/ApiUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Online/Api/Models/ApiUser.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Online/Api/Models/CreateSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Online/Api/Models/CreateSession.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Online/Api/Models/GameMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Online/Api/Models/GameMessage.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Online/Api/Models/LoginResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Online/Api/Models/LoginResult.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Online/Api/Models/ReleaseInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Online/Api/Models/ReleaseInfo.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Online/Api/StatType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Online/Api/StatType.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Online/ApiUserCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Online/ApiUserCache.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Online/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Online/Client.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Online/DefaultHandshaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Online/DefaultHandshaker.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Online/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Online/ExtensionMethods.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Online/Hosting/ClientHostingRPC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Online/Hosting/ClientHostingRPC.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Online/Hosting/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Online/Hosting/ExtensionMethods.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Online/Hosting/HostedGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Online/Hosting/HostedGame.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Online/Hosting/HostedGameSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Online/Hosting/HostedGameSource.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Online/Hosting/HostedGameStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Online/Hosting/HostedGameStatus.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Online/Hosting/Hosting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Online/Hosting/Hosting.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Online/IClientConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Online/IClientConfig.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Online/InternalsVisibleTo.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | 3 | [assembly: InternalsVisibleTo("Octgn.Site")] -------------------------------------------------------------------------------- /octgnFX/Octgn.Online/Octgn.Online.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Online/Octgn.Online.csproj -------------------------------------------------------------------------------- /octgnFX/Octgn.ProxyGenerator/BlockManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.ProxyGenerator/BlockManager.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.ProxyGenerator/ProxyDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.ProxyGenerator/ProxyDefinition.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.ProxyGenerator/ProxyGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.ProxyGenerator/ProxyGenerator.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.ProxyGenerator/TemplateManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.ProxyGenerator/TemplateManager.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.ProxyGenerator/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.ProxyGenerator/app.config -------------------------------------------------------------------------------- /octgnFX/Octgn.ProxyGenerator/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.ProxyGenerator/packages.config -------------------------------------------------------------------------------- /octgnFX/Octgn.Server/BinaryParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Server/BinaryParser.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Server/BinaryParser.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Server/BinaryParser.tt -------------------------------------------------------------------------------- /octgnFX/Octgn.Server/BinaryStubs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Server/BinaryStubs.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Server/BinaryStubs.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Server/BinaryStubs.tt -------------------------------------------------------------------------------- /octgnFX/Octgn.Server/Broadcaster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Server/Broadcaster.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Server/Broadcaster.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Server/Broadcaster.tt -------------------------------------------------------------------------------- /octgnFX/Octgn.Server/CardOrientation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Server/CardOrientation.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Server/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Server/Config.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Server/GameContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Server/GameContext.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Server/GameState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Server/GameState.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Server/Handler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Server/Handler.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Server/IClientCalls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Server/IClientCalls.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Server/IClientCalls.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Server/IClientCalls.tt -------------------------------------------------------------------------------- /octgnFX/Octgn.Server/Octgn.Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Server/Octgn.Server.csproj -------------------------------------------------------------------------------- /octgnFX/Octgn.Server/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Server/Player.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Server/PlayerCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Server/PlayerCollection.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Server/PlayerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Server/PlayerSettings.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Server/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Server/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Server/Protocol.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Server/Protocol.xml -------------------------------------------------------------------------------- /octgnFX/Octgn.Server/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Server/Server.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Server/ServerSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Server/ServerSocket.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Server/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Server/app.config -------------------------------------------------------------------------------- /octgnFX/Octgn.Server/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Server/packages.config -------------------------------------------------------------------------------- /octgnFX/Octgn.Server/protocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Server/protocol.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Server/protocol.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Server/protocol.xsd -------------------------------------------------------------------------------- /octgnFX/Octgn.Test/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Test/App.config -------------------------------------------------------------------------------- /octgnFX/Octgn.Test/Core/GameFeedManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Test/Core/GameFeedManagerTests.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Test/Octgn.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Test/Octgn.Test.csproj -------------------------------------------------------------------------------- /octgnFX/Octgn.Test/PlayGround.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Test/PlayGround.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Test/Utils/HttpEcho.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Test/Utils/HttpEcho.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Test/VersionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Test/VersionTest.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Test/packages.config -------------------------------------------------------------------------------- /octgnFX/Octgn.Tools.O8buildgui/O8buildGUIForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Tools.O8buildgui/O8buildGUIForm.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Tools.O8buildgui/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Tools.O8buildgui/Program.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Tools.O8buildgui/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Tools.O8buildgui/app.config -------------------------------------------------------------------------------- /octgnFX/Octgn.Tools.O8buildgui/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Tools.O8buildgui/packages.config -------------------------------------------------------------------------------- /octgnFX/Octgn.Tools.Proxytest/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Tools.Proxytest/Form1.Designer.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Tools.Proxytest/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Tools.Proxytest/Form1.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Tools.Proxytest/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Tools.Proxytest/Form1.resx -------------------------------------------------------------------------------- /octgnFX/Octgn.Tools.Proxytest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Tools.Proxytest/Program.cs -------------------------------------------------------------------------------- /octgnFX/Octgn.Tools.Proxytest/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Tools.Proxytest/app.config -------------------------------------------------------------------------------- /octgnFX/Octgn.Tools.Proxytest/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn.Tools.Proxytest/packages.config -------------------------------------------------------------------------------- /octgnFX/Octgn/.nuget/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/.nuget/.nuget/NuGet.Config -------------------------------------------------------------------------------- /octgnFX/Octgn/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/.nuget/NuGet.Config -------------------------------------------------------------------------------- /octgnFX/Octgn/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/.nuget/NuGet.exe -------------------------------------------------------------------------------- /octgnFX/Octgn/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/.nuget/NuGet.targets -------------------------------------------------------------------------------- /octgnFX/Octgn/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/App.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/App.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/AppConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/AppConfig.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/CommandLineHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/CommandLineHandler.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Const.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Const.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Controls/AnimatedWrapPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Controls/AnimatedWrapPanel.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Controls/ChildWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Controls/ChildWindow.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Controls/ChildWindowManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Controls/ChildWindowManager.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Controls/ConnectOfflineGame.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Controls/ConnectOfflineGame.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn/Controls/DecorableWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Controls/DecorableWindow.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Controls/GameSelector.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Controls/GameSelector.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn/Controls/GameSelector.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Controls/GameSelector.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Controls/HostGameSettings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Controls/HostGameSettings.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn/Controls/HostGameSettings.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Controls/HostGameSettings.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Controls/MissedMessagesBreak.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Controls/MissedMessagesBreak.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn/Controls/NumericUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Controls/NumericUpDown.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Controls/OpaqueClickableImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Controls/OpaqueClickableImage.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Controls/PopupWindowMessage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Controls/PopupWindowMessage.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn/Controls/RichTextBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Controls/RichTextBlock.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Controls/TabCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Controls/TabCommands.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Controls/TextOrIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Controls/TextOrIcon.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Controls/Tooltip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Controls/Tooltip.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Controls/TopMostMessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Controls/TopMostMessageBox.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Controls/UpdateBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Controls/UpdateBar.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn/Controls/UpdateBar.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Controls/UpdateBar.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Controls/VirtualizingWrapPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Controls/VirtualizingWrapPanel.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Controls/WaitingDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Controls/WaitingDialog.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn/Controls/WaitingDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Controls/WaitingDialog.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Controls/WindowDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Controls/WindowDecorator.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/CurrentReleaseVersion.txt: -------------------------------------------------------------------------------- 1 | 3.1.165.381 -------------------------------------------------------------------------------- /octgnFX/Octgn/CurrentTestVersion.txt: -------------------------------------------------------------------------------- 1 | 3.1.164.381 -------------------------------------------------------------------------------- /octgnFX/Octgn/CurrentVersion.txt: -------------------------------------------------------------------------------- 1 | 3.1.165.381 -------------------------------------------------------------------------------- /octgnFX/Octgn/Definitions/ActionDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Definitions/ActionDef.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Definitions/CounterDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Definitions/CounterDef.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Definitions/DeckDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Definitions/DeckDef.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Definitions/FontDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Definitions/FontDef.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Definitions/GameDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Definitions/GameDef.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Definitions/GlobalVariableDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Definitions/GlobalVariableDef.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Definitions/IconDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Definitions/IconDef.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Definitions/LocalDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Definitions/LocalDef.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Definitions/ScriptDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Definitions/ScriptDef.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Definitions/VariableDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Definitions/VariableDef.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Effects/GridLengthAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Effects/GridLengthAnimation.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Extentions/ControlExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Extentions/ControlExtensions.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Extentions/Conversion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Extentions/Conversion.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Extentions/DeckExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Extentions/DeckExtensionMethods.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Extentions/LinqExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Extentions/LinqExtensions.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Extentions/String.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Extentions/String.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/GameUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/GameUpdater.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/InterProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/InterProcess.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/JodsEngineIntegration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/JodsEngineIntegration.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Launchers/DeckEditorLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Launchers/DeckEditorLauncher.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Launchers/ILauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Launchers/ILauncher.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Launchers/MainLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Launchers/MainLauncher.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Launchers/TableLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Launchers/TableLauncher.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Launchers/UpdatingLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Launchers/UpdatingLauncher.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Octgn.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Octgn.csproj -------------------------------------------------------------------------------- /octgnFX/Octgn/Octgn.t4properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Octgn.t4properties -------------------------------------------------------------------------------- /octgnFX/Octgn/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Program.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Properties/Annotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Properties/Annotations.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Properties/Resources.resx -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/Anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/Anchor.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/Avatar9_80.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/Avatar9_80.jpg -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/Back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/Back.jpg -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/CustomDataAgreement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/CustomDataAgreement.txt -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/FileIcons/Deck.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/FileIcons/Deck.ico -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/FileIcons/Game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/FileIcons/Game.ico -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/FileIcons/Patch.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/FileIcons/Patch.ico -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/FileIcons/Set.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/FileIcons/Set.ico -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/Folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/Folder.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/Fonts/Entypo.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/Fonts/Entypo.otf -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/Front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/Front.jpg -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/GravecorpAvatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/GravecorpAvatar.jpg -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/Icon.ico -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/Icons/About.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/Icons/About.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/Icons/LoadDeck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/Icons/LoadDeck.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/Icons/LoadLimited.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/Icons/LoadLimited.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/Icons/Ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/Icons/Ok.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/Icons/Quit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/Icons/Quit.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/Icons/Reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/Icons/Reset.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/Icons/Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/Icons/Save.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/Icons/cards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/Icons/cards.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/Icons/console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/Icons/console.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/Icons/diag.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/Icons/diag.ico -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/Icons/setting_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/Icons/setting_tools.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/LoadingWindowAds/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/LoadingWindowAds/0.jpg -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/Markers/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/Markers/black.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/Markers/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/Markers/blue.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/Markers/brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/Markers/brown.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/Markers/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/Markers/green.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/Markers/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/Markers/orange.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/Markers/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/Markers/purple.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/Markers/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/Markers/red.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/Markers/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/Markers/white.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/Markers/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/Markers/yellow.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/Patch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/Patch.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/PlayResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/PlayResources.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/StartupMessages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/StartupMessages.txt -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/Themes/Brushes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/Themes/Brushes.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/Themes/ChildWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/Themes/ChildWindow.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/Themes/Global.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/Themes/Global.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/Themes/GridSplitter.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/Themes/GridSplitter.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/Themes/Target.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/Themes/Target.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/admin.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/back-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/back-button.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/background.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/chat.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/chat.ico -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/chaticon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/chaticon.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/circle-back-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/circle-back-button.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/close.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/closewindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/closewindow.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/cross.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/custom-games-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/custom-games-icon.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/d0c.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/d0c.jpeg -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/doorclose.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/doorclose.wav -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/eye.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/gamemessage.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/gamemessage.wav -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/gamemode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/gamemode.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/github.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/greenbullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/greenbullet.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/greybullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/greybullet.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/knockknock.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/knockknock.wav -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/loading.gif -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/lock.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/log.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/log.ico -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/log2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/log2.ico -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/logo (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/logo (1).png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/logoback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/logoback.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/logolarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/logolarge.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/logowords.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/logowords.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/matchmaking-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/matchmaking-icon.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/messagenotify.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/messagenotify.wav -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/minimize.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/minmax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/minmax.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/moderator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/moderator.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/noimage.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/none.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/none.jpg -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/orangebullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/orangebullet.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/owner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/owner.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/people.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/pregamelobbyicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/pregamelobbyicon.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/ralig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/ralig.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/randomname.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/randomname.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/search.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/smallsub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/smallsub.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/smith_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/smith_user.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/soul1355.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/soul1355.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/special.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/special.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/spectator-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/spectator-icon.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/statusAway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/statusAway.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/statusDND.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/statusDND.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/statusOffline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/statusOffline.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/statusOnline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/statusOnline.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/sub.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/subscriberbenefits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/subscriberbenefits.txt -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/userjoinsroom.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/userjoinsroom.wav -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/usernoimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/usernoimage.png -------------------------------------------------------------------------------- /octgnFX/Octgn/Resources/viewers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Resources/viewers.png -------------------------------------------------------------------------------- /octgnFX/Octgn/SubscriptionModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/SubscriptionModule.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Tabs/GameManagement/AddFeed.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Tabs/GameManagement/AddFeed.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn/Tabs/Login/LoginTab.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Tabs/Login/LoginTab.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn/Tabs/Login/LoginTab.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Tabs/Login/LoginTab.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Tabs/Login/LoginTabViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Tabs/Login/LoginTabViewModel.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Tabs/Login/NewsItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Tabs/Login/NewsItemViewModel.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Tabs/Login/NewsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Tabs/Login/NewsViewModel.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Tabs/Play/HostedGameViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Tabs/Play/HostedGameViewModel.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Tabs/Play/PlayTab.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Tabs/Play/PlayTab.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn/Tabs/Play/PlayTab.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Tabs/Play/PlayTab.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Tabs/Profile/UserProfilePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Tabs/Profile/UserProfilePage.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn/Tabs/Watch/WatchList.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Tabs/Watch/WatchList.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn/Tabs/Watch/WatchList.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Tabs/Watch/WatchList.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/UpdateManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/UpdateManager.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Utils/BrushCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Utils/BrushCache.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Utils/CacheTraceListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Utils/CacheTraceListener.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Utils/CryptoRandom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Utils/CryptoRandom.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Utils/FileIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Utils/FileIcon.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Utils/GridViewSort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Utils/GridViewSort.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Utils/ImportFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Utils/ImportFile.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Utils/Log4NetLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Utils/Log4NetLogger.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Utils/MouseClickHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Utils/MouseClickHandler.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Utils/PasswordBoxAssistant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Utils/PasswordBoxAssistant.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Utils/SSLValidationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Utils/SSLValidationHelper.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Utils/ShellLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Utils/ShellLink.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Utils/Sounds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Utils/Sounds.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Utils/TextBlockExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Utils/TextBlockExtension.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Utils/UacHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Utils/UacHelper.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Utils/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Utils/Win32.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Utils/XmlInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Utils/XmlInstaller.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Utils/XmlSetParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Utils/XmlSetParser.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Utils/YouTube/YouTubeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Utils/YouTube/YouTubeProvider.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Utils/YouTube/YouTubeViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Utils/YouTube/YouTubeViewer.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn/ViewModels/DataGameViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/ViewModels/DataGameViewModel.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/ViewModels/GameFeedViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/ViewModels/GameFeedViewModel.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/WindowManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/WindowManager.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Windows/AboutWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Windows/AboutWindow.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn/Windows/AboutWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Windows/AboutWindow.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Windows/BrowserWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Windows/BrowserWindow.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn/Windows/BrowserWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Windows/BrowserWindow.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Windows/DWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Windows/DWindow.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn/Windows/DWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Windows/DWindow.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Windows/Diagnostics.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Windows/Diagnostics.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn/Windows/Diagnostics.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Windows/Diagnostics.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Windows/ErrorWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Windows/ErrorWindow.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn/Windows/ErrorWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Windows/ErrorWindow.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Windows/GameHistoryWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Windows/GameHistoryWindow.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn/Windows/GameHistoryWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Windows/GameHistoryWindow.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Windows/GrowlNotifications.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Windows/GrowlNotifications.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn/Windows/GrowlNotifications.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Windows/GrowlNotifications.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Windows/Main.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Windows/Main.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn/Windows/Main.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Windows/Main.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Windows/Options.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Windows/Options.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn/Windows/Options.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Windows/Options.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Windows/UpdateChecker.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Windows/UpdateChecker.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn/Windows/UpdateChecker.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Windows/UpdateChecker.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Windows/UpgradeMessage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Windows/UpgradeMessage.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn/Windows/UpgradeMessage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Windows/UpgradeMessage.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/Windows/UserProfileWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Windows/UserProfileWindow.xaml -------------------------------------------------------------------------------- /octgnFX/Octgn/Windows/UserProfileWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/Windows/UserProfileWindow.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octgn/app.Debug x86.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/app.Debug x86.config -------------------------------------------------------------------------------- /octgnFX/Octgn/app.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/app.Debug.config -------------------------------------------------------------------------------- /octgnFX/Octgn/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/app.config -------------------------------------------------------------------------------- /octgnFX/Octgn/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/app.manifest -------------------------------------------------------------------------------- /octgnFX/Octgn/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octgn/packages.config -------------------------------------------------------------------------------- /octgnFX/Octide/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/App.xaml -------------------------------------------------------------------------------- /octgnFX/Octide/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/App.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octide/AssetsTab/Asset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/AssetsTab/Asset.cs -------------------------------------------------------------------------------- /octgnFX/Octide/AssetsTab/AssetController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/AssetsTab/AssetController.cs -------------------------------------------------------------------------------- /octgnFX/Octide/AssetsTab/AssetItemView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/AssetsTab/AssetItemView.xaml -------------------------------------------------------------------------------- /octgnFX/Octide/AssetsTab/AssetItemView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/AssetsTab/AssetItemView.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octide/AssetsTab/AssetsTabView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/AssetsTab/AssetsTabView.xaml -------------------------------------------------------------------------------- /octgnFX/Octide/AssetsTab/AssetsTabView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/AssetsTab/AssetsTabView.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octide/AssetsTab/AssetsTabViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/AssetsTab/AssetsTabViewModel.cs -------------------------------------------------------------------------------- /octgnFX/Octide/Controls/AssetControllerView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Controls/AssetControllerView.xaml -------------------------------------------------------------------------------- /octgnFX/Octide/Controls/EditableTextBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Controls/EditableTextBlock.cs -------------------------------------------------------------------------------- /octgnFX/Octide/Controls/ItemPropertiesView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Controls/ItemPropertiesView.xaml -------------------------------------------------------------------------------- /octgnFX/Octide/Controls/KeyInputTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Controls/KeyInputTextBox.cs -------------------------------------------------------------------------------- /octgnFX/Octide/GameLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/GameLoader.cs -------------------------------------------------------------------------------- /octgnFX/Octide/Messages/MouseWheelTableZoom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Messages/MouseWheelTableZoom.cs -------------------------------------------------------------------------------- /octgnFX/Octide/Messages/ShowMainWindowMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Messages/ShowMainWindowMessage.cs -------------------------------------------------------------------------------- /octgnFX/Octide/Messages/WindowActionMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Messages/WindowActionMessage.cs -------------------------------------------------------------------------------- /octgnFX/Octide/NInjectServiceLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/NInjectServiceLocator.cs -------------------------------------------------------------------------------- /octgnFX/Octide/Octide.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Octide.csproj -------------------------------------------------------------------------------- /octgnFX/Octide/PreviewTab/ActionMenuViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/PreviewTab/ActionMenuViewModel.cs -------------------------------------------------------------------------------- /octgnFX/Octide/PreviewTab/BaseGroupItemModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/PreviewTab/BaseGroupItemModel.cs -------------------------------------------------------------------------------- /octgnFX/Octide/PreviewTab/BoardItemModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/PreviewTab/BoardItemModel.cs -------------------------------------------------------------------------------- /octgnFX/Octide/PreviewTab/BoardItemView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/PreviewTab/BoardItemView.xaml -------------------------------------------------------------------------------- /octgnFX/Octide/PreviewTab/BoardItemView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/PreviewTab/BoardItemView.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octide/PreviewTab/CounterItemModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/PreviewTab/CounterItemModel.cs -------------------------------------------------------------------------------- /octgnFX/Octide/PreviewTab/CounterItemView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/PreviewTab/CounterItemView.xaml -------------------------------------------------------------------------------- /octgnFX/Octide/PreviewTab/PhaseItemModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/PreviewTab/PhaseItemModel.cs -------------------------------------------------------------------------------- /octgnFX/Octide/PreviewTab/PhaseItemView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/PreviewTab/PhaseItemView.xaml -------------------------------------------------------------------------------- /octgnFX/Octide/PreviewTab/PhaseItemView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/PreviewTab/PhaseItemView.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octide/PreviewTab/PileItemModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/PreviewTab/PileItemModel.cs -------------------------------------------------------------------------------- /octgnFX/Octide/PreviewTab/PileItemView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/PreviewTab/PileItemView.cs -------------------------------------------------------------------------------- /octgnFX/Octide/PreviewTab/PileItemView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/PreviewTab/PileItemView.xaml -------------------------------------------------------------------------------- /octgnFX/Octide/PreviewTab/PreviewTabView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/PreviewTab/PreviewTabView.xaml -------------------------------------------------------------------------------- /octgnFX/Octide/PreviewTab/PreviewTabView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/PreviewTab/PreviewTabView.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octide/PreviewTab/PreviewTabViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/PreviewTab/PreviewTabViewModel.cs -------------------------------------------------------------------------------- /octgnFX/Octide/PreviewTab/SampleCardItemModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/PreviewTab/SampleCardItemModel.cs -------------------------------------------------------------------------------- /octgnFX/Octide/PreviewTab/SizeItemModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/PreviewTab/SizeItemModel.cs -------------------------------------------------------------------------------- /octgnFX/Octide/PreviewTab/SizeItemView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/PreviewTab/SizeItemView.xaml -------------------------------------------------------------------------------- /octgnFX/Octide/PreviewTab/SizeItemView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/PreviewTab/SizeItemView.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octide/PreviewTab/TableItemModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/PreviewTab/TableItemModel.cs -------------------------------------------------------------------------------- /octgnFX/Octide/PreviewTab/TableItemView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/PreviewTab/TableItemView.xaml -------------------------------------------------------------------------------- /octgnFX/Octide/PreviewTab/TableItemView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/PreviewTab/TableItemView.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octide/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /octgnFX/Octide/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /octgnFX/Octide/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Properties/Resources.resx -------------------------------------------------------------------------------- /octgnFX/Octide/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /octgnFX/Octide/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Properties/Settings.settings -------------------------------------------------------------------------------- /octgnFX/Octide/ProxyTab/ProxyTabView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/ProxyTab/ProxyTabView.xaml -------------------------------------------------------------------------------- /octgnFX/Octide/ProxyTab/ProxyTabView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/ProxyTab/ProxyTabView.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octide/ProxyTab/ProxyTabViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/ProxyTab/ProxyTabViewModel.cs -------------------------------------------------------------------------------- /octgnFX/Octide/ProxyTab/Templates/ArtOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/ProxyTab/Templates/ArtOverlay.cs -------------------------------------------------------------------------------- /octgnFX/Octide/ProxyTab/Templates/Conditional.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/ProxyTab/Templates/Conditional.cs -------------------------------------------------------------------------------- /octgnFX/Octide/ProxyTab/Templates/IBaseBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/ProxyTab/Templates/IBaseBlock.cs -------------------------------------------------------------------------------- /octgnFX/Octide/ProxyTab/Templates/Link.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/ProxyTab/Templates/Link.cs -------------------------------------------------------------------------------- /octgnFX/Octide/ProxyTab/Templates/Match.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/ProxyTab/Templates/Match.cs -------------------------------------------------------------------------------- /octgnFX/Octide/ProxyTab/Templates/Switch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/ProxyTab/Templates/Switch.cs -------------------------------------------------------------------------------- /octgnFX/Octide/Resources/About.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Resources/About.png -------------------------------------------------------------------------------- /octgnFX/Octide/Resources/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Resources/actions.py -------------------------------------------------------------------------------- /octgnFX/Octide/Resources/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Resources/back.png -------------------------------------------------------------------------------- /octgnFX/Octide/Resources/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Resources/blank.png -------------------------------------------------------------------------------- /octgnFX/Octide/Resources/deck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Resources/deck.png -------------------------------------------------------------------------------- /octgnFX/Octide/Resources/definition.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Resources/definition.xml -------------------------------------------------------------------------------- /octgnFX/Octide/Resources/discard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Resources/discard.png -------------------------------------------------------------------------------- /octgnFX/Octide/Resources/front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Resources/front.png -------------------------------------------------------------------------------- /octgnFX/Octide/Resources/hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Resources/hand.png -------------------------------------------------------------------------------- /octgnFX/Octide/Resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Resources/icon.ico -------------------------------------------------------------------------------- /octgnFX/Octide/Resources/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Resources/icon.jpg -------------------------------------------------------------------------------- /octgnFX/Octide/Resources/proxydef.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Resources/proxydef.xml -------------------------------------------------------------------------------- /octgnFX/Octide/Resources/score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Resources/score.png -------------------------------------------------------------------------------- /octgnFX/Octide/Resources/set.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Resources/set.xml -------------------------------------------------------------------------------- /octgnFX/Octide/Resources/wood.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Resources/wood.jpg -------------------------------------------------------------------------------- /octgnFX/Octide/SetTab/CardTab/Alternate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/SetTab/CardTab/Alternate.cs -------------------------------------------------------------------------------- /octgnFX/Octide/SetTab/CardTab/Card.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/SetTab/CardTab/Card.cs -------------------------------------------------------------------------------- /octgnFX/Octide/SetTab/CardTab/CardItemView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/SetTab/CardTab/CardItemView.xaml -------------------------------------------------------------------------------- /octgnFX/Octide/SetTab/CardTab/Property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/SetTab/CardTab/Property.cs -------------------------------------------------------------------------------- /octgnFX/Octide/SetTab/CardTab/ProxyItemView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/SetTab/CardTab/ProxyItemView.xaml -------------------------------------------------------------------------------- /octgnFX/Octide/SetTab/PackageTab/DropHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/SetTab/PackageTab/DropHandlers.cs -------------------------------------------------------------------------------- /octgnFX/Octide/SetTab/PackageTab/Include.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/SetTab/PackageTab/Include.cs -------------------------------------------------------------------------------- /octgnFX/Octide/SetTab/PackageTab/Option.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/SetTab/PackageTab/Option.cs -------------------------------------------------------------------------------- /octgnFX/Octide/SetTab/PackageTab/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/SetTab/PackageTab/Options.cs -------------------------------------------------------------------------------- /octgnFX/Octide/SetTab/PackageTab/Package.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/SetTab/PackageTab/Package.cs -------------------------------------------------------------------------------- /octgnFX/Octide/SetTab/PackageTab/Pick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/SetTab/PackageTab/Pick.cs -------------------------------------------------------------------------------- /octgnFX/Octide/SetTab/PackageTab/Property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/SetTab/PackageTab/Property.cs -------------------------------------------------------------------------------- /octgnFX/Octide/SetTab/Set.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/SetTab/Set.cs -------------------------------------------------------------------------------- /octgnFX/Octide/SetTab/SetItemView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/SetTab/SetItemView.xaml -------------------------------------------------------------------------------- /octgnFX/Octide/SetTab/SetItemView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/SetTab/SetItemView.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octide/SetTab/SetTabView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/SetTab/SetTabView.xaml -------------------------------------------------------------------------------- /octgnFX/Octide/SetTab/SetTabView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/SetTab/SetTabView.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octide/SetTab/SetTabViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/SetTab/SetTabViewModel.cs -------------------------------------------------------------------------------- /octgnFX/Octide/SyntaxHighlighting/Python.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/SyntaxHighlighting/Python.xshd -------------------------------------------------------------------------------- /octgnFX/Octide/Theme/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Theme/Colors.xaml -------------------------------------------------------------------------------- /octgnFX/Octide/Theme/StyleTemplates.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Theme/StyleTemplates.xaml -------------------------------------------------------------------------------- /octgnFX/Octide/Theme/Window.xaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /octgnFX/Octide/Utils/IdeBaseItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Utils/IdeBaseItem.cs -------------------------------------------------------------------------------- /octgnFX/Octide/Utils/IdeObservableCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Utils/IdeObservableCollection.cs -------------------------------------------------------------------------------- /octgnFX/Octide/Utils/ScrollViewerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Utils/ScrollViewerHelper.cs -------------------------------------------------------------------------------- /octgnFX/Octide/Utils/TextOutline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Utils/TextOutline.cs -------------------------------------------------------------------------------- /octgnFX/Octide/Utils/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Utils/Utils.cs -------------------------------------------------------------------------------- /octgnFX/Octide/Utils/ValidationRules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Utils/ValidationRules.cs -------------------------------------------------------------------------------- /octgnFX/Octide/ViewModel/LoaderViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/ViewModel/LoaderViewModel.cs -------------------------------------------------------------------------------- /octgnFX/Octide/ViewModel/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/ViewModel/MainViewModel.cs -------------------------------------------------------------------------------- /octgnFX/Octide/ViewModel/ViewModelLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/ViewModel/ViewModelLocator.cs -------------------------------------------------------------------------------- /octgnFX/Octide/ViewModel/WindowLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/ViewModel/WindowLocator.cs -------------------------------------------------------------------------------- /octgnFX/Octide/Views/LoaderWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Views/LoaderWindow.xaml -------------------------------------------------------------------------------- /octgnFX/Octide/Views/LoaderWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Views/LoaderWindow.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octide/Views/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Views/MainWindow.xaml -------------------------------------------------------------------------------- /octgnFX/Octide/Views/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/Views/MainWindow.xaml.cs -------------------------------------------------------------------------------- /octgnFX/Octide/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/app.config -------------------------------------------------------------------------------- /octgnFX/Octide/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/Octide/packages.config -------------------------------------------------------------------------------- /octgnFX/WpfCircularProgressBar/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/WpfCircularProgressBar/App.config -------------------------------------------------------------------------------- /octgnFX/WpfCircularProgressBar/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/WpfCircularProgressBar/App.xaml -------------------------------------------------------------------------------- /octgnFX/WpfCircularProgressBar/GridUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/WpfCircularProgressBar/GridUtils.cs -------------------------------------------------------------------------------- /octgnFX/WpfCircularProgressBar/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/WpfCircularProgressBar/MainWindow.xaml -------------------------------------------------------------------------------- /octgnFX/WpfCircularProgressBar/PiePiece.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/WpfCircularProgressBar/PiePiece.cs -------------------------------------------------------------------------------- /octgnFX/WpfCircularProgressBar/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/WpfCircularProgressBar/Utils.cs -------------------------------------------------------------------------------- /octgnFX/o8build/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/o8build/App.config -------------------------------------------------------------------------------- /octgnFX/o8build/GameValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/o8build/GameValidator.cs -------------------------------------------------------------------------------- /octgnFX/o8build/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/o8build/Program.cs -------------------------------------------------------------------------------- /octgnFX/o8build/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/o8build/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /octgnFX/o8build/Set.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/o8build/Set.cs -------------------------------------------------------------------------------- /octgnFX/o8build/o8build.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/o8build/o8build.csproj -------------------------------------------------------------------------------- /octgnFX/o8build/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octgn/OCTGN/HEAD/octgnFX/o8build/packages.config -------------------------------------------------------------------------------- /recentchanges.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /recentchangesrelease.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ss.txt: -------------------------------------------------------------------------------- 1 | up --------------------------------------------------------------------------------