├── .gitattributes ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Jenkins ├── jenkins-grab-se.ps1 └── release.ps1 ├── Jenkinsfile ├── LICENSE ├── NLog-user.config ├── NLog.config ├── NOTICE ├── README.md ├── Setup (run before opening solution).bat ├── Torch.API ├── ConnectionState.cs ├── Event │ ├── EventHandlerAttribute.cs │ ├── IEvent.cs │ ├── IEventHandler.cs │ └── IEventManager.cs ├── IPlayer.cs ├── IServerControls.cs ├── ITorchBase.cs ├── ITorchConfig.cs ├── InformationalVersion.cs ├── Managers │ ├── DependencyManagerExtensions.cs │ ├── DependencyProviderExtensions.cs │ ├── IChatManagerClient.cs │ ├── IChatManagerServer.cs │ ├── IDependencyManager.cs │ ├── IDependencyProvider.cs │ ├── IManager.cs │ ├── IMultiplayerManagerBase.cs │ ├── IMultiplayerManagerClient.cs │ ├── IMultiplayerManagerServer.cs │ ├── INetworkManager.cs │ └── IPluginManager.cs ├── ModAPI │ ├── Ingame │ │ └── GridExtensions.cs │ └── TorchAPI.cs ├── Plugins │ ├── ITorchPlugin.cs │ ├── IWpfPlugin.cs │ └── PluginAttribute.cs ├── Properties │ └── AssemblyInfo.cs ├── ServerState.cs ├── Session │ ├── GameSaveResult.cs │ ├── ITorchSession.cs │ ├── ITorchSessionManager.cs │ └── TorchSessionState.cs ├── Torch.API.csproj ├── TorchBranchType.cs ├── TorchGameState.cs ├── UGCServiceType.cs ├── Utils │ ├── ColorUtils.cs │ └── StringUtils.cs ├── WebAPI │ ├── JenkinsQuery.cs │ └── PluginQuery.cs └── packages.config ├── Torch.Client.Tests ├── Properties │ └── AssemblyInfo.cs ├── Torch.Client.Tests.csproj ├── TorchClientReflectionTest.cs ├── app.config └── packages.config ├── Torch.Mod ├── Messages │ ├── DialogMessage.cs │ ├── JoinServerMessage.cs │ ├── MessageBase.cs │ ├── NotificationMessage.cs │ ├── ShowDebugShape.cs │ └── VoxelResetMessage.cs ├── ModCommunication.cs ├── Torch.Mod.projitems ├── Torch.Mod.shproj └── TorchModCore.cs ├── Torch.Server.Tests ├── Properties │ └── AssemblyInfo.cs ├── Torch.Server.Tests.csproj ├── TorchServerReflectionTest.cs ├── TorchServerSessionSettingsTest.cs ├── app.config └── packages.config ├── Torch.Server ├── Commands │ └── WhitelistCommands.cs ├── FlowDocumentTarget.cs ├── Initializer.cs ├── ListBoxExtensions.cs ├── Managers │ ├── EntityControlManager.cs │ ├── GameUpdateManager.cs │ ├── InstanceManager.cs │ ├── MultiplayerManagerDedicated.cs │ ├── MultiplayerManagerDedicatedEventShim.cs │ ├── MultiplayerManagerDedicatedPatchShim.cs │ ├── RemoteAPIManager.cs │ └── UpdateManager.cs ├── MultiTextWriter.cs ├── NativeMethods.cs ├── Patches │ ├── NlogCustomTarget.cs │ ├── PortCheckingPatch.cs │ ├── PromotePatch.cs │ ├── ServerResponsePatch.cs │ ├── SteamLoginPatch.cs │ └── WorldLoadExceptionPatch.cs ├── Program.cs ├── Properties │ ├── Annotations.cs │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── RichTextBoxWriter.cs ├── ServerManager.cs ├── Themes │ ├── Dark Theme Animated.xaml │ ├── Dark Theme.xaml │ ├── Light Theme Animated.xaml │ └── Light Theme.xaml ├── Torch.Server.csproj ├── TorchConfig.cs ├── TorchServer.cs ├── TorchService.cs ├── TorchServiceInstaller.cs ├── ViewModels │ ├── BlockLimitViewModel.cs │ ├── CheckpointViewModel.cs │ ├── ConfigDedicatedViewModel.cs │ ├── Entities │ │ ├── Blocks │ │ │ ├── BlockViewModel.cs │ │ │ ├── BlockViewModelGenerator.cs │ │ │ └── PropertyViewModel.cs │ │ ├── CharacterViewModel.cs │ │ ├── EntityControlViewModel.cs │ │ ├── EntityViewModel.cs │ │ ├── FactionViewModel.cs │ │ ├── FloatingObjectViewModel.cs │ │ ├── GridViewModel.cs │ │ ├── IEntityModel.cs │ │ ├── PlayerViewModel.cs │ │ └── VoxelMapViewModel.cs │ ├── EntityTreeViewModel.cs │ ├── ILazyLoad.cs │ ├── ModItemInfo.cs │ ├── PluginManagerViewModel.cs │ ├── PluginViewModel.cs │ ├── SessionSettingsViewModel.cs │ ├── SessionSettingsViewModel1.cs │ ├── SteamUserViewModel.cs │ └── WorldConfigurationViewModel.cs ├── Views │ ├── AddWorkshopItemsDialog.xaml │ ├── AddWorkshopItemsDialog.xaml.cs │ ├── ChatControl.xaml │ ├── ChatControl.xaml.cs │ ├── ConfigControl.xaml │ ├── ConfigControl.xaml.cs │ ├── Converters │ │ ├── BooleanAndConverter.cs │ │ ├── DefinitionToIdConverter.cs │ │ ├── InverseBooleanConverter.cs │ │ ├── ListConverter.cs │ │ ├── ListConverterWorkshopId.cs │ │ ├── ModToIdConverter.cs │ │ ├── StringBuilderConverter.cs │ │ ├── StringIdConverter.cs │ │ └── Vector3DConverter.cs │ ├── Entities │ │ ├── Blocks │ │ │ ├── BlockView.xaml │ │ │ ├── BlockView.xaml.cs │ │ │ ├── PropertyView.xaml │ │ │ └── PropertyView.xaml.cs │ │ ├── CharacterView.xaml │ │ ├── CharacterView.xaml.cs │ │ ├── EntityControlHost.xaml │ │ ├── EntityControlHost.xaml.cs │ │ ├── EntityControlsView.xaml │ │ ├── EntityControlsView.xaml.cs │ │ ├── FactionView.xaml │ │ ├── FactionView.xaml.cs │ │ ├── FloatingObjectsView.xaml │ │ ├── FloatingObjectsView.xaml.cs │ │ ├── GridView.xaml │ │ ├── GridView.xaml.cs │ │ ├── PlayerView.xaml │ │ ├── PlayerView.xaml.cs │ │ ├── VoxelMapView.xaml │ │ └── VoxelMapView.xaml.cs │ ├── EntitiesControl.xaml │ ├── EntitiesControl.xaml.cs │ ├── Extensions.cs │ ├── LogEventViewer.xaml │ ├── LogEventViewer.xaml.cs │ ├── LogMessageWindow.xaml │ ├── LogMessageWindow.xaml.cs │ ├── ModListControl.xaml │ ├── ModListControl.xaml.cs │ ├── ModsControl.xaml │ ├── ModsControl.xaml.cs │ ├── PlayerListControl.xaml │ ├── PlayerListControl.xaml.cs │ ├── PluginBrowser.xaml │ ├── PluginBrowser.xaml.cs │ ├── PluginDownloader.xaml │ ├── PluginDownloader.xaml.cs │ ├── PluginsControl.xaml │ ├── PluginsControl.xaml.cs │ ├── Resources.xaml │ ├── RoleEditor.xaml │ ├── RoleEditor.xaml.cs │ ├── SessionSettingsView.xaml │ ├── SessionSettingsView.xaml.cs │ ├── ThemeControl.xaml │ ├── ThemeControl.xaml.cs │ ├── TorchUI.xaml │ ├── TorchUI.xaml.cs │ ├── ValidationRules │ │ ├── ListConverterValidationRule.cs │ │ └── NumberValidationRule.cs │ ├── WorldGeneratorDialog.xaml │ ├── WorldGeneratorDialog.xaml.cs │ ├── WorldSelectControl.xaml │ └── WorldSelectControl.xaml.cs ├── app.config ├── packages.config └── torchicon.ico ├── Torch.Tests ├── PatchTest.cs ├── Properties │ └── AssemblyInfo.cs ├── ReflectionSystemTest.cs ├── ReflectionTestManager.cs ├── TestUtils.cs ├── Torch.Tests.csproj ├── TorchReflectionTest.cs ├── app.config └── packages.config ├── Torch.sln ├── Torch.sln.DotSettings ├── Torch ├── Collections │ ├── BinaryMinHeap.cs │ ├── KeyTree.cs │ ├── MTObservableCollection.cs │ ├── MtObservableCollectionBase.cs │ ├── MtObservableEvent.cs │ ├── MtObservableList.cs │ ├── MtObservableSortedDictionary.cs │ ├── RollingAverage.cs │ ├── SortedView.cs │ ├── SystemSortedView.cs │ ├── TransformComparer.cs │ └── TransformEnumerator.cs ├── CommandLine.cs ├── Commands │ ├── CategoryAttribute.cs │ ├── Command.cs │ ├── CommandAttribute.cs │ ├── CommandContext.cs │ ├── CommandManager.cs │ ├── CommandModule.cs │ ├── CommandTree.cs │ ├── ConsoleCommandContext.cs │ ├── Permissions │ │ ├── PermissionAttribute.cs │ │ └── PermissonsSystem.cs │ └── TorchCommands.cs ├── Event │ ├── EventList.cs │ ├── EventManager.cs │ ├── EventShimAttribute.cs │ └── IEventList.cs ├── Extensions │ ├── DispatcherExtensions.cs │ ├── ICollectionExtensions.cs │ ├── LinqExtensions.cs │ ├── MyPlayerCollectionExtensions.cs │ └── StringExtensions.cs ├── Managers │ ├── ChatManager │ │ ├── ChatManagerClient.cs │ │ └── ChatManagerServer.cs │ ├── DependencyManager.cs │ ├── EntityManager.cs │ ├── FilesystemManager.cs │ ├── Manager.cs │ ├── MultiplayerManagerBase.cs │ ├── NetworkManager │ │ └── NetworkManager.cs │ └── PatchManager │ │ ├── AssemblyMemory.cs │ │ ├── DecoratedMethod.cs │ │ ├── EmitExtensions.cs │ │ ├── MSIL │ │ ├── ITokenResolver.cs │ │ ├── MsilArgument.cs │ │ ├── MsilInstruction.cs │ │ ├── MsilInstructionExtensions.cs │ │ ├── MsilLabel.cs │ │ ├── MsilLocal.cs │ │ ├── MsilOperand.cs │ │ ├── MsilOperandBrTarget.cs │ │ ├── MsilOperandInline.cs │ │ ├── MsilOperandSwitch.cs │ │ └── MsilTryCatchOperation.cs │ │ ├── MethodRewritePattern.cs │ │ ├── NativeLibrary.cs │ │ ├── PatchContext.cs │ │ ├── PatchManager.cs │ │ ├── PatchPriorityAttribute.cs │ │ ├── PatchShimAttribute.cs │ │ ├── PatchUtilities.cs │ │ └── Transpile │ │ ├── LoggingILGenerator.cs │ │ ├── MethodContext.cs │ │ └── MethodTranspiler.cs ├── MySteamServiceWrapper.cs ├── Patches │ ├── AutoSavePatch.cs │ ├── FactionPatch.cs │ ├── GameAnalyticsPatch.cs │ ├── GameStatePatchShim.cs │ ├── KeenLogPatch.cs │ ├── MessageSizeLimitPatch.cs │ ├── ModsDownloadingPatch.cs │ ├── PhysicsMemoryPatch.cs │ ├── SessionDownloadPatch.cs │ └── TorchAsyncSaving.cs ├── Persistent.cs ├── Plugins │ ├── PluginDependency.cs │ ├── PluginManager.cs │ └── PluginManifest.cs ├── Properties │ └── AssemblyInfo.cs ├── Session │ ├── TorchSession.cs │ └── TorchSessionManager.cs ├── Torch.csproj ├── TorchBase.cs ├── TorchPluginBase.cs ├── Utils │ ├── DotEnv.cs │ ├── MiscExtensions.cs │ ├── ModItemUtils.cs │ ├── Reflected │ │ ├── ReflectedEventReplaceAttribute.cs │ │ ├── ReflectedEventReplacer.cs │ │ ├── ReflectedFieldInfoAttribute.cs │ │ ├── ReflectedGetterAttribute.cs │ │ ├── ReflectedLazyAttribute.cs │ │ ├── ReflectedManager.cs │ │ ├── ReflectedMemberAttribute.cs │ │ ├── ReflectedMethodAttribute.cs │ │ ├── ReflectedMethodInfoAttribute.cs │ │ ├── ReflectedPropertyInfoAttribute.cs │ │ ├── ReflectedSetterAttribute.cs │ │ └── ReflectedStaticMethodAttribute.cs │ ├── Reflection.cs │ ├── SteamWorkshopTools │ │ ├── KeyValueExtensions.cs │ │ ├── PublishedItemDetails.cs │ │ └── WebAPI.cs │ ├── SynchronizationExtensions.cs │ ├── TorchAssemblyResolver.cs │ └── TorchLauncher.cs ├── VRageGame.cs ├── ViewModels │ ├── ModViewModel.cs │ ├── PlayerViewModel.cs │ ├── PluginViewModel.cs │ └── ViewModel.cs ├── Views │ ├── CollectionEditor.xaml │ ├── CollectionEditor.xaml.cs │ ├── DictionaryEditor.xaml │ ├── DictionaryEditor.xaml.cs │ ├── DisplayAttribute.cs │ ├── EmbeddedCollectionEditor.xaml │ ├── EmbeddedCollectionEditor.xaml.cs │ ├── FlagsEditor.xaml │ ├── FlagsEditor.xaml.cs │ ├── ObjectCollectionEditor.xaml │ ├── ObjectCollectionEditor.xaml.cs │ ├── ObjectEditor.xaml │ ├── ObjectEditor.xaml.cs │ ├── PropertyGrid.xaml │ └── PropertyGrid.xaml.cs ├── app.config └── packages.config ├── TransformOnBuild.targets ├── Versioning ├── AssemblyVersion.cs └── version.ps1 └── torchicon.ico /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Jenkins/jenkins-grab-se.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Jenkins/jenkins-grab-se.ps1 -------------------------------------------------------------------------------- /Jenkins/release.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Jenkins/release.ps1 -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/LICENSE -------------------------------------------------------------------------------- /NLog-user.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/NLog-user.config -------------------------------------------------------------------------------- /NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/NLog.config -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/README.md -------------------------------------------------------------------------------- /Setup (run before opening solution).bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Setup (run before opening solution).bat -------------------------------------------------------------------------------- /Torch.API/ConnectionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/ConnectionState.cs -------------------------------------------------------------------------------- /Torch.API/Event/EventHandlerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/Event/EventHandlerAttribute.cs -------------------------------------------------------------------------------- /Torch.API/Event/IEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/Event/IEvent.cs -------------------------------------------------------------------------------- /Torch.API/Event/IEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/Event/IEventHandler.cs -------------------------------------------------------------------------------- /Torch.API/Event/IEventManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/Event/IEventManager.cs -------------------------------------------------------------------------------- /Torch.API/IPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/IPlayer.cs -------------------------------------------------------------------------------- /Torch.API/IServerControls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/IServerControls.cs -------------------------------------------------------------------------------- /Torch.API/ITorchBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/ITorchBase.cs -------------------------------------------------------------------------------- /Torch.API/ITorchConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/ITorchConfig.cs -------------------------------------------------------------------------------- /Torch.API/InformationalVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/InformationalVersion.cs -------------------------------------------------------------------------------- /Torch.API/Managers/DependencyManagerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/Managers/DependencyManagerExtensions.cs -------------------------------------------------------------------------------- /Torch.API/Managers/DependencyProviderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/Managers/DependencyProviderExtensions.cs -------------------------------------------------------------------------------- /Torch.API/Managers/IChatManagerClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/Managers/IChatManagerClient.cs -------------------------------------------------------------------------------- /Torch.API/Managers/IChatManagerServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/Managers/IChatManagerServer.cs -------------------------------------------------------------------------------- /Torch.API/Managers/IDependencyManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/Managers/IDependencyManager.cs -------------------------------------------------------------------------------- /Torch.API/Managers/IDependencyProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/Managers/IDependencyProvider.cs -------------------------------------------------------------------------------- /Torch.API/Managers/IManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/Managers/IManager.cs -------------------------------------------------------------------------------- /Torch.API/Managers/IMultiplayerManagerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/Managers/IMultiplayerManagerBase.cs -------------------------------------------------------------------------------- /Torch.API/Managers/IMultiplayerManagerClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/Managers/IMultiplayerManagerClient.cs -------------------------------------------------------------------------------- /Torch.API/Managers/IMultiplayerManagerServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/Managers/IMultiplayerManagerServer.cs -------------------------------------------------------------------------------- /Torch.API/Managers/INetworkManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/Managers/INetworkManager.cs -------------------------------------------------------------------------------- /Torch.API/Managers/IPluginManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/Managers/IPluginManager.cs -------------------------------------------------------------------------------- /Torch.API/ModAPI/Ingame/GridExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/ModAPI/Ingame/GridExtensions.cs -------------------------------------------------------------------------------- /Torch.API/ModAPI/TorchAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/ModAPI/TorchAPI.cs -------------------------------------------------------------------------------- /Torch.API/Plugins/ITorchPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/Plugins/ITorchPlugin.cs -------------------------------------------------------------------------------- /Torch.API/Plugins/IWpfPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/Plugins/IWpfPlugin.cs -------------------------------------------------------------------------------- /Torch.API/Plugins/PluginAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/Plugins/PluginAttribute.cs -------------------------------------------------------------------------------- /Torch.API/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Torch.API/ServerState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/ServerState.cs -------------------------------------------------------------------------------- /Torch.API/Session/GameSaveResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/Session/GameSaveResult.cs -------------------------------------------------------------------------------- /Torch.API/Session/ITorchSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/Session/ITorchSession.cs -------------------------------------------------------------------------------- /Torch.API/Session/ITorchSessionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/Session/ITorchSessionManager.cs -------------------------------------------------------------------------------- /Torch.API/Session/TorchSessionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/Session/TorchSessionState.cs -------------------------------------------------------------------------------- /Torch.API/Torch.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/Torch.API.csproj -------------------------------------------------------------------------------- /Torch.API/TorchBranchType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/TorchBranchType.cs -------------------------------------------------------------------------------- /Torch.API/TorchGameState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/TorchGameState.cs -------------------------------------------------------------------------------- /Torch.API/UGCServiceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/UGCServiceType.cs -------------------------------------------------------------------------------- /Torch.API/Utils/ColorUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/Utils/ColorUtils.cs -------------------------------------------------------------------------------- /Torch.API/Utils/StringUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/Utils/StringUtils.cs -------------------------------------------------------------------------------- /Torch.API/WebAPI/JenkinsQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/WebAPI/JenkinsQuery.cs -------------------------------------------------------------------------------- /Torch.API/WebAPI/PluginQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/WebAPI/PluginQuery.cs -------------------------------------------------------------------------------- /Torch.API/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.API/packages.config -------------------------------------------------------------------------------- /Torch.Client.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Client.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Torch.Client.Tests/Torch.Client.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Client.Tests/Torch.Client.Tests.csproj -------------------------------------------------------------------------------- /Torch.Client.Tests/TorchClientReflectionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Client.Tests/TorchClientReflectionTest.cs -------------------------------------------------------------------------------- /Torch.Client.Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Client.Tests/app.config -------------------------------------------------------------------------------- /Torch.Client.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Client.Tests/packages.config -------------------------------------------------------------------------------- /Torch.Mod/Messages/DialogMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Mod/Messages/DialogMessage.cs -------------------------------------------------------------------------------- /Torch.Mod/Messages/JoinServerMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Mod/Messages/JoinServerMessage.cs -------------------------------------------------------------------------------- /Torch.Mod/Messages/MessageBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Mod/Messages/MessageBase.cs -------------------------------------------------------------------------------- /Torch.Mod/Messages/NotificationMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Mod/Messages/NotificationMessage.cs -------------------------------------------------------------------------------- /Torch.Mod/Messages/ShowDebugShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Mod/Messages/ShowDebugShape.cs -------------------------------------------------------------------------------- /Torch.Mod/Messages/VoxelResetMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Mod/Messages/VoxelResetMessage.cs -------------------------------------------------------------------------------- /Torch.Mod/ModCommunication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Mod/ModCommunication.cs -------------------------------------------------------------------------------- /Torch.Mod/Torch.Mod.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Mod/Torch.Mod.projitems -------------------------------------------------------------------------------- /Torch.Mod/Torch.Mod.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Mod/Torch.Mod.shproj -------------------------------------------------------------------------------- /Torch.Mod/TorchModCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Mod/TorchModCore.cs -------------------------------------------------------------------------------- /Torch.Server.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Torch.Server.Tests/Torch.Server.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server.Tests/Torch.Server.Tests.csproj -------------------------------------------------------------------------------- /Torch.Server.Tests/TorchServerReflectionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server.Tests/TorchServerReflectionTest.cs -------------------------------------------------------------------------------- /Torch.Server.Tests/TorchServerSessionSettingsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server.Tests/TorchServerSessionSettingsTest.cs -------------------------------------------------------------------------------- /Torch.Server.Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server.Tests/app.config -------------------------------------------------------------------------------- /Torch.Server.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server.Tests/packages.config -------------------------------------------------------------------------------- /Torch.Server/Commands/WhitelistCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Commands/WhitelistCommands.cs -------------------------------------------------------------------------------- /Torch.Server/FlowDocumentTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/FlowDocumentTarget.cs -------------------------------------------------------------------------------- /Torch.Server/Initializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Initializer.cs -------------------------------------------------------------------------------- /Torch.Server/ListBoxExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/ListBoxExtensions.cs -------------------------------------------------------------------------------- /Torch.Server/Managers/EntityControlManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Managers/EntityControlManager.cs -------------------------------------------------------------------------------- /Torch.Server/Managers/GameUpdateManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Managers/GameUpdateManager.cs -------------------------------------------------------------------------------- /Torch.Server/Managers/InstanceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Managers/InstanceManager.cs -------------------------------------------------------------------------------- /Torch.Server/Managers/MultiplayerManagerDedicated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Managers/MultiplayerManagerDedicated.cs -------------------------------------------------------------------------------- /Torch.Server/Managers/MultiplayerManagerDedicatedEventShim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Managers/MultiplayerManagerDedicatedEventShim.cs -------------------------------------------------------------------------------- /Torch.Server/Managers/MultiplayerManagerDedicatedPatchShim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Managers/MultiplayerManagerDedicatedPatchShim.cs -------------------------------------------------------------------------------- /Torch.Server/Managers/RemoteAPIManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Managers/RemoteAPIManager.cs -------------------------------------------------------------------------------- /Torch.Server/Managers/UpdateManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Managers/UpdateManager.cs -------------------------------------------------------------------------------- /Torch.Server/MultiTextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/MultiTextWriter.cs -------------------------------------------------------------------------------- /Torch.Server/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/NativeMethods.cs -------------------------------------------------------------------------------- /Torch.Server/Patches/NlogCustomTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Patches/NlogCustomTarget.cs -------------------------------------------------------------------------------- /Torch.Server/Patches/PortCheckingPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Patches/PortCheckingPatch.cs -------------------------------------------------------------------------------- /Torch.Server/Patches/PromotePatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Patches/PromotePatch.cs -------------------------------------------------------------------------------- /Torch.Server/Patches/ServerResponsePatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Patches/ServerResponsePatch.cs -------------------------------------------------------------------------------- /Torch.Server/Patches/SteamLoginPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Patches/SteamLoginPatch.cs -------------------------------------------------------------------------------- /Torch.Server/Patches/WorldLoadExceptionPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Patches/WorldLoadExceptionPatch.cs -------------------------------------------------------------------------------- /Torch.Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Program.cs -------------------------------------------------------------------------------- /Torch.Server/Properties/Annotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Properties/Annotations.cs -------------------------------------------------------------------------------- /Torch.Server/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Torch.Server/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Torch.Server/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Properties/Resources.resx -------------------------------------------------------------------------------- /Torch.Server/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Torch.Server/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Properties/Settings.settings -------------------------------------------------------------------------------- /Torch.Server/RichTextBoxWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/RichTextBoxWriter.cs -------------------------------------------------------------------------------- /Torch.Server/ServerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/ServerManager.cs -------------------------------------------------------------------------------- /Torch.Server/Themes/Dark Theme Animated.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Themes/Dark Theme Animated.xaml -------------------------------------------------------------------------------- /Torch.Server/Themes/Dark Theme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Themes/Dark Theme.xaml -------------------------------------------------------------------------------- /Torch.Server/Themes/Light Theme Animated.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Themes/Light Theme Animated.xaml -------------------------------------------------------------------------------- /Torch.Server/Themes/Light Theme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Themes/Light Theme.xaml -------------------------------------------------------------------------------- /Torch.Server/Torch.Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Torch.Server.csproj -------------------------------------------------------------------------------- /Torch.Server/TorchConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/TorchConfig.cs -------------------------------------------------------------------------------- /Torch.Server/TorchServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/TorchServer.cs -------------------------------------------------------------------------------- /Torch.Server/TorchService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/TorchService.cs -------------------------------------------------------------------------------- /Torch.Server/TorchServiceInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/TorchServiceInstaller.cs -------------------------------------------------------------------------------- /Torch.Server/ViewModels/BlockLimitViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/ViewModels/BlockLimitViewModel.cs -------------------------------------------------------------------------------- /Torch.Server/ViewModels/CheckpointViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/ViewModels/CheckpointViewModel.cs -------------------------------------------------------------------------------- /Torch.Server/ViewModels/ConfigDedicatedViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/ViewModels/ConfigDedicatedViewModel.cs -------------------------------------------------------------------------------- /Torch.Server/ViewModels/Entities/Blocks/BlockViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/ViewModels/Entities/Blocks/BlockViewModel.cs -------------------------------------------------------------------------------- /Torch.Server/ViewModels/Entities/Blocks/BlockViewModelGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/ViewModels/Entities/Blocks/BlockViewModelGenerator.cs -------------------------------------------------------------------------------- /Torch.Server/ViewModels/Entities/Blocks/PropertyViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/ViewModels/Entities/Blocks/PropertyViewModel.cs -------------------------------------------------------------------------------- /Torch.Server/ViewModels/Entities/CharacterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/ViewModels/Entities/CharacterViewModel.cs -------------------------------------------------------------------------------- /Torch.Server/ViewModels/Entities/EntityControlViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/ViewModels/Entities/EntityControlViewModel.cs -------------------------------------------------------------------------------- /Torch.Server/ViewModels/Entities/EntityViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/ViewModels/Entities/EntityViewModel.cs -------------------------------------------------------------------------------- /Torch.Server/ViewModels/Entities/FactionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/ViewModels/Entities/FactionViewModel.cs -------------------------------------------------------------------------------- /Torch.Server/ViewModels/Entities/FloatingObjectViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/ViewModels/Entities/FloatingObjectViewModel.cs -------------------------------------------------------------------------------- /Torch.Server/ViewModels/Entities/GridViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/ViewModels/Entities/GridViewModel.cs -------------------------------------------------------------------------------- /Torch.Server/ViewModels/Entities/IEntityModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/ViewModels/Entities/IEntityModel.cs -------------------------------------------------------------------------------- /Torch.Server/ViewModels/Entities/PlayerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/ViewModels/Entities/PlayerViewModel.cs -------------------------------------------------------------------------------- /Torch.Server/ViewModels/Entities/VoxelMapViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/ViewModels/Entities/VoxelMapViewModel.cs -------------------------------------------------------------------------------- /Torch.Server/ViewModels/EntityTreeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/ViewModels/EntityTreeViewModel.cs -------------------------------------------------------------------------------- /Torch.Server/ViewModels/ILazyLoad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/ViewModels/ILazyLoad.cs -------------------------------------------------------------------------------- /Torch.Server/ViewModels/ModItemInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/ViewModels/ModItemInfo.cs -------------------------------------------------------------------------------- /Torch.Server/ViewModels/PluginManagerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/ViewModels/PluginManagerViewModel.cs -------------------------------------------------------------------------------- /Torch.Server/ViewModels/PluginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/ViewModels/PluginViewModel.cs -------------------------------------------------------------------------------- /Torch.Server/ViewModels/SessionSettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/ViewModels/SessionSettingsViewModel.cs -------------------------------------------------------------------------------- /Torch.Server/ViewModels/SessionSettingsViewModel1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/ViewModels/SessionSettingsViewModel1.cs -------------------------------------------------------------------------------- /Torch.Server/ViewModels/SteamUserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/ViewModels/SteamUserViewModel.cs -------------------------------------------------------------------------------- /Torch.Server/ViewModels/WorldConfigurationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/ViewModels/WorldConfigurationViewModel.cs -------------------------------------------------------------------------------- /Torch.Server/Views/AddWorkshopItemsDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/AddWorkshopItemsDialog.xaml -------------------------------------------------------------------------------- /Torch.Server/Views/AddWorkshopItemsDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/AddWorkshopItemsDialog.xaml.cs -------------------------------------------------------------------------------- /Torch.Server/Views/ChatControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/ChatControl.xaml -------------------------------------------------------------------------------- /Torch.Server/Views/ChatControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/ChatControl.xaml.cs -------------------------------------------------------------------------------- /Torch.Server/Views/ConfigControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/ConfigControl.xaml -------------------------------------------------------------------------------- /Torch.Server/Views/ConfigControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/ConfigControl.xaml.cs -------------------------------------------------------------------------------- /Torch.Server/Views/Converters/BooleanAndConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/Converters/BooleanAndConverter.cs -------------------------------------------------------------------------------- /Torch.Server/Views/Converters/DefinitionToIdConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/Converters/DefinitionToIdConverter.cs -------------------------------------------------------------------------------- /Torch.Server/Views/Converters/InverseBooleanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/Converters/InverseBooleanConverter.cs -------------------------------------------------------------------------------- /Torch.Server/Views/Converters/ListConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/Converters/ListConverter.cs -------------------------------------------------------------------------------- /Torch.Server/Views/Converters/ListConverterWorkshopId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/Converters/ListConverterWorkshopId.cs -------------------------------------------------------------------------------- /Torch.Server/Views/Converters/ModToIdConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/Converters/ModToIdConverter.cs -------------------------------------------------------------------------------- /Torch.Server/Views/Converters/StringBuilderConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/Converters/StringBuilderConverter.cs -------------------------------------------------------------------------------- /Torch.Server/Views/Converters/StringIdConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/Converters/StringIdConverter.cs -------------------------------------------------------------------------------- /Torch.Server/Views/Converters/Vector3DConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/Converters/Vector3DConverter.cs -------------------------------------------------------------------------------- /Torch.Server/Views/Entities/Blocks/BlockView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/Entities/Blocks/BlockView.xaml -------------------------------------------------------------------------------- /Torch.Server/Views/Entities/Blocks/BlockView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/Entities/Blocks/BlockView.xaml.cs -------------------------------------------------------------------------------- /Torch.Server/Views/Entities/Blocks/PropertyView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/Entities/Blocks/PropertyView.xaml -------------------------------------------------------------------------------- /Torch.Server/Views/Entities/Blocks/PropertyView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/Entities/Blocks/PropertyView.xaml.cs -------------------------------------------------------------------------------- /Torch.Server/Views/Entities/CharacterView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/Entities/CharacterView.xaml -------------------------------------------------------------------------------- /Torch.Server/Views/Entities/CharacterView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/Entities/CharacterView.xaml.cs -------------------------------------------------------------------------------- /Torch.Server/Views/Entities/EntityControlHost.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/Entities/EntityControlHost.xaml -------------------------------------------------------------------------------- /Torch.Server/Views/Entities/EntityControlHost.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/Entities/EntityControlHost.xaml.cs -------------------------------------------------------------------------------- /Torch.Server/Views/Entities/EntityControlsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/Entities/EntityControlsView.xaml -------------------------------------------------------------------------------- /Torch.Server/Views/Entities/EntityControlsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/Entities/EntityControlsView.xaml.cs -------------------------------------------------------------------------------- /Torch.Server/Views/Entities/FactionView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/Entities/FactionView.xaml -------------------------------------------------------------------------------- /Torch.Server/Views/Entities/FactionView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/Entities/FactionView.xaml.cs -------------------------------------------------------------------------------- /Torch.Server/Views/Entities/FloatingObjectsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/Entities/FloatingObjectsView.xaml -------------------------------------------------------------------------------- /Torch.Server/Views/Entities/FloatingObjectsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/Entities/FloatingObjectsView.xaml.cs -------------------------------------------------------------------------------- /Torch.Server/Views/Entities/GridView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/Entities/GridView.xaml -------------------------------------------------------------------------------- /Torch.Server/Views/Entities/GridView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/Entities/GridView.xaml.cs -------------------------------------------------------------------------------- /Torch.Server/Views/Entities/PlayerView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/Entities/PlayerView.xaml -------------------------------------------------------------------------------- /Torch.Server/Views/Entities/PlayerView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/Entities/PlayerView.xaml.cs -------------------------------------------------------------------------------- /Torch.Server/Views/Entities/VoxelMapView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/Entities/VoxelMapView.xaml -------------------------------------------------------------------------------- /Torch.Server/Views/Entities/VoxelMapView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/Entities/VoxelMapView.xaml.cs -------------------------------------------------------------------------------- /Torch.Server/Views/EntitiesControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/EntitiesControl.xaml -------------------------------------------------------------------------------- /Torch.Server/Views/EntitiesControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/EntitiesControl.xaml.cs -------------------------------------------------------------------------------- /Torch.Server/Views/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/Extensions.cs -------------------------------------------------------------------------------- /Torch.Server/Views/LogEventViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/LogEventViewer.xaml -------------------------------------------------------------------------------- /Torch.Server/Views/LogEventViewer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/LogEventViewer.xaml.cs -------------------------------------------------------------------------------- /Torch.Server/Views/LogMessageWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/LogMessageWindow.xaml -------------------------------------------------------------------------------- /Torch.Server/Views/LogMessageWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/LogMessageWindow.xaml.cs -------------------------------------------------------------------------------- /Torch.Server/Views/ModListControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/ModListControl.xaml -------------------------------------------------------------------------------- /Torch.Server/Views/ModListControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/ModListControl.xaml.cs -------------------------------------------------------------------------------- /Torch.Server/Views/ModsControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/ModsControl.xaml -------------------------------------------------------------------------------- /Torch.Server/Views/ModsControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/ModsControl.xaml.cs -------------------------------------------------------------------------------- /Torch.Server/Views/PlayerListControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/PlayerListControl.xaml -------------------------------------------------------------------------------- /Torch.Server/Views/PlayerListControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/PlayerListControl.xaml.cs -------------------------------------------------------------------------------- /Torch.Server/Views/PluginBrowser.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/PluginBrowser.xaml -------------------------------------------------------------------------------- /Torch.Server/Views/PluginBrowser.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/PluginBrowser.xaml.cs -------------------------------------------------------------------------------- /Torch.Server/Views/PluginDownloader.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/PluginDownloader.xaml -------------------------------------------------------------------------------- /Torch.Server/Views/PluginDownloader.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/PluginDownloader.xaml.cs -------------------------------------------------------------------------------- /Torch.Server/Views/PluginsControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/PluginsControl.xaml -------------------------------------------------------------------------------- /Torch.Server/Views/PluginsControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/PluginsControl.xaml.cs -------------------------------------------------------------------------------- /Torch.Server/Views/Resources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/Resources.xaml -------------------------------------------------------------------------------- /Torch.Server/Views/RoleEditor.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/RoleEditor.xaml -------------------------------------------------------------------------------- /Torch.Server/Views/RoleEditor.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/RoleEditor.xaml.cs -------------------------------------------------------------------------------- /Torch.Server/Views/SessionSettingsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/SessionSettingsView.xaml -------------------------------------------------------------------------------- /Torch.Server/Views/SessionSettingsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/SessionSettingsView.xaml.cs -------------------------------------------------------------------------------- /Torch.Server/Views/ThemeControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/ThemeControl.xaml -------------------------------------------------------------------------------- /Torch.Server/Views/ThemeControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/ThemeControl.xaml.cs -------------------------------------------------------------------------------- /Torch.Server/Views/TorchUI.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/TorchUI.xaml -------------------------------------------------------------------------------- /Torch.Server/Views/TorchUI.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/TorchUI.xaml.cs -------------------------------------------------------------------------------- /Torch.Server/Views/ValidationRules/ListConverterValidationRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/ValidationRules/ListConverterValidationRule.cs -------------------------------------------------------------------------------- /Torch.Server/Views/ValidationRules/NumberValidationRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/ValidationRules/NumberValidationRule.cs -------------------------------------------------------------------------------- /Torch.Server/Views/WorldGeneratorDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/WorldGeneratorDialog.xaml -------------------------------------------------------------------------------- /Torch.Server/Views/WorldGeneratorDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/WorldGeneratorDialog.xaml.cs -------------------------------------------------------------------------------- /Torch.Server/Views/WorldSelectControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/WorldSelectControl.xaml -------------------------------------------------------------------------------- /Torch.Server/Views/WorldSelectControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/Views/WorldSelectControl.xaml.cs -------------------------------------------------------------------------------- /Torch.Server/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/app.config -------------------------------------------------------------------------------- /Torch.Server/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/packages.config -------------------------------------------------------------------------------- /Torch.Server/torchicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Server/torchicon.ico -------------------------------------------------------------------------------- /Torch.Tests/PatchTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Tests/PatchTest.cs -------------------------------------------------------------------------------- /Torch.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Torch.Tests/ReflectionSystemTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Tests/ReflectionSystemTest.cs -------------------------------------------------------------------------------- /Torch.Tests/ReflectionTestManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Tests/ReflectionTestManager.cs -------------------------------------------------------------------------------- /Torch.Tests/TestUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Tests/TestUtils.cs -------------------------------------------------------------------------------- /Torch.Tests/Torch.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Tests/Torch.Tests.csproj -------------------------------------------------------------------------------- /Torch.Tests/TorchReflectionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Tests/TorchReflectionTest.cs -------------------------------------------------------------------------------- /Torch.Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Tests/app.config -------------------------------------------------------------------------------- /Torch.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.Tests/packages.config -------------------------------------------------------------------------------- /Torch.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.sln -------------------------------------------------------------------------------- /Torch.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch.sln.DotSettings -------------------------------------------------------------------------------- /Torch/Collections/BinaryMinHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Collections/BinaryMinHeap.cs -------------------------------------------------------------------------------- /Torch/Collections/KeyTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Collections/KeyTree.cs -------------------------------------------------------------------------------- /Torch/Collections/MTObservableCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Collections/MTObservableCollection.cs -------------------------------------------------------------------------------- /Torch/Collections/MtObservableCollectionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Collections/MtObservableCollectionBase.cs -------------------------------------------------------------------------------- /Torch/Collections/MtObservableEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Collections/MtObservableEvent.cs -------------------------------------------------------------------------------- /Torch/Collections/MtObservableList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Collections/MtObservableList.cs -------------------------------------------------------------------------------- /Torch/Collections/MtObservableSortedDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Collections/MtObservableSortedDictionary.cs -------------------------------------------------------------------------------- /Torch/Collections/RollingAverage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Collections/RollingAverage.cs -------------------------------------------------------------------------------- /Torch/Collections/SortedView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Collections/SortedView.cs -------------------------------------------------------------------------------- /Torch/Collections/SystemSortedView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Collections/SystemSortedView.cs -------------------------------------------------------------------------------- /Torch/Collections/TransformComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Collections/TransformComparer.cs -------------------------------------------------------------------------------- /Torch/Collections/TransformEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Collections/TransformEnumerator.cs -------------------------------------------------------------------------------- /Torch/CommandLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/CommandLine.cs -------------------------------------------------------------------------------- /Torch/Commands/CategoryAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Commands/CategoryAttribute.cs -------------------------------------------------------------------------------- /Torch/Commands/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Commands/Command.cs -------------------------------------------------------------------------------- /Torch/Commands/CommandAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Commands/CommandAttribute.cs -------------------------------------------------------------------------------- /Torch/Commands/CommandContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Commands/CommandContext.cs -------------------------------------------------------------------------------- /Torch/Commands/CommandManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Commands/CommandManager.cs -------------------------------------------------------------------------------- /Torch/Commands/CommandModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Commands/CommandModule.cs -------------------------------------------------------------------------------- /Torch/Commands/CommandTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Commands/CommandTree.cs -------------------------------------------------------------------------------- /Torch/Commands/ConsoleCommandContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Commands/ConsoleCommandContext.cs -------------------------------------------------------------------------------- /Torch/Commands/Permissions/PermissionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Commands/Permissions/PermissionAttribute.cs -------------------------------------------------------------------------------- /Torch/Commands/Permissions/PermissonsSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Commands/Permissions/PermissonsSystem.cs -------------------------------------------------------------------------------- /Torch/Commands/TorchCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Commands/TorchCommands.cs -------------------------------------------------------------------------------- /Torch/Event/EventList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Event/EventList.cs -------------------------------------------------------------------------------- /Torch/Event/EventManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Event/EventManager.cs -------------------------------------------------------------------------------- /Torch/Event/EventShimAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Event/EventShimAttribute.cs -------------------------------------------------------------------------------- /Torch/Event/IEventList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Event/IEventList.cs -------------------------------------------------------------------------------- /Torch/Extensions/DispatcherExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Extensions/DispatcherExtensions.cs -------------------------------------------------------------------------------- /Torch/Extensions/ICollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Extensions/ICollectionExtensions.cs -------------------------------------------------------------------------------- /Torch/Extensions/LinqExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Extensions/LinqExtensions.cs -------------------------------------------------------------------------------- /Torch/Extensions/MyPlayerCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Extensions/MyPlayerCollectionExtensions.cs -------------------------------------------------------------------------------- /Torch/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /Torch/Managers/ChatManager/ChatManagerClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Managers/ChatManager/ChatManagerClient.cs -------------------------------------------------------------------------------- /Torch/Managers/ChatManager/ChatManagerServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Managers/ChatManager/ChatManagerServer.cs -------------------------------------------------------------------------------- /Torch/Managers/DependencyManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Managers/DependencyManager.cs -------------------------------------------------------------------------------- /Torch/Managers/EntityManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Managers/EntityManager.cs -------------------------------------------------------------------------------- /Torch/Managers/FilesystemManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Managers/FilesystemManager.cs -------------------------------------------------------------------------------- /Torch/Managers/Manager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Managers/Manager.cs -------------------------------------------------------------------------------- /Torch/Managers/MultiplayerManagerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Managers/MultiplayerManagerBase.cs -------------------------------------------------------------------------------- /Torch/Managers/NetworkManager/NetworkManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Managers/NetworkManager/NetworkManager.cs -------------------------------------------------------------------------------- /Torch/Managers/PatchManager/AssemblyMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Managers/PatchManager/AssemblyMemory.cs -------------------------------------------------------------------------------- /Torch/Managers/PatchManager/DecoratedMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Managers/PatchManager/DecoratedMethod.cs -------------------------------------------------------------------------------- /Torch/Managers/PatchManager/EmitExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Managers/PatchManager/EmitExtensions.cs -------------------------------------------------------------------------------- /Torch/Managers/PatchManager/MSIL/ITokenResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Managers/PatchManager/MSIL/ITokenResolver.cs -------------------------------------------------------------------------------- /Torch/Managers/PatchManager/MSIL/MsilArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Managers/PatchManager/MSIL/MsilArgument.cs -------------------------------------------------------------------------------- /Torch/Managers/PatchManager/MSIL/MsilInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Managers/PatchManager/MSIL/MsilInstruction.cs -------------------------------------------------------------------------------- /Torch/Managers/PatchManager/MSIL/MsilInstructionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Managers/PatchManager/MSIL/MsilInstructionExtensions.cs -------------------------------------------------------------------------------- /Torch/Managers/PatchManager/MSIL/MsilLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Managers/PatchManager/MSIL/MsilLabel.cs -------------------------------------------------------------------------------- /Torch/Managers/PatchManager/MSIL/MsilLocal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Managers/PatchManager/MSIL/MsilLocal.cs -------------------------------------------------------------------------------- /Torch/Managers/PatchManager/MSIL/MsilOperand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Managers/PatchManager/MSIL/MsilOperand.cs -------------------------------------------------------------------------------- /Torch/Managers/PatchManager/MSIL/MsilOperandBrTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Managers/PatchManager/MSIL/MsilOperandBrTarget.cs -------------------------------------------------------------------------------- /Torch/Managers/PatchManager/MSIL/MsilOperandInline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Managers/PatchManager/MSIL/MsilOperandInline.cs -------------------------------------------------------------------------------- /Torch/Managers/PatchManager/MSIL/MsilOperandSwitch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Managers/PatchManager/MSIL/MsilOperandSwitch.cs -------------------------------------------------------------------------------- /Torch/Managers/PatchManager/MSIL/MsilTryCatchOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Managers/PatchManager/MSIL/MsilTryCatchOperation.cs -------------------------------------------------------------------------------- /Torch/Managers/PatchManager/MethodRewritePattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Managers/PatchManager/MethodRewritePattern.cs -------------------------------------------------------------------------------- /Torch/Managers/PatchManager/NativeLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Managers/PatchManager/NativeLibrary.cs -------------------------------------------------------------------------------- /Torch/Managers/PatchManager/PatchContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Managers/PatchManager/PatchContext.cs -------------------------------------------------------------------------------- /Torch/Managers/PatchManager/PatchManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Managers/PatchManager/PatchManager.cs -------------------------------------------------------------------------------- /Torch/Managers/PatchManager/PatchPriorityAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Managers/PatchManager/PatchPriorityAttribute.cs -------------------------------------------------------------------------------- /Torch/Managers/PatchManager/PatchShimAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Managers/PatchManager/PatchShimAttribute.cs -------------------------------------------------------------------------------- /Torch/Managers/PatchManager/PatchUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Managers/PatchManager/PatchUtilities.cs -------------------------------------------------------------------------------- /Torch/Managers/PatchManager/Transpile/LoggingILGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Managers/PatchManager/Transpile/LoggingILGenerator.cs -------------------------------------------------------------------------------- /Torch/Managers/PatchManager/Transpile/MethodContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Managers/PatchManager/Transpile/MethodContext.cs -------------------------------------------------------------------------------- /Torch/Managers/PatchManager/Transpile/MethodTranspiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Managers/PatchManager/Transpile/MethodTranspiler.cs -------------------------------------------------------------------------------- /Torch/MySteamServiceWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/MySteamServiceWrapper.cs -------------------------------------------------------------------------------- /Torch/Patches/AutoSavePatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Patches/AutoSavePatch.cs -------------------------------------------------------------------------------- /Torch/Patches/FactionPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Patches/FactionPatch.cs -------------------------------------------------------------------------------- /Torch/Patches/GameAnalyticsPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Patches/GameAnalyticsPatch.cs -------------------------------------------------------------------------------- /Torch/Patches/GameStatePatchShim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Patches/GameStatePatchShim.cs -------------------------------------------------------------------------------- /Torch/Patches/KeenLogPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Patches/KeenLogPatch.cs -------------------------------------------------------------------------------- /Torch/Patches/MessageSizeLimitPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Patches/MessageSizeLimitPatch.cs -------------------------------------------------------------------------------- /Torch/Patches/ModsDownloadingPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Patches/ModsDownloadingPatch.cs -------------------------------------------------------------------------------- /Torch/Patches/PhysicsMemoryPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Patches/PhysicsMemoryPatch.cs -------------------------------------------------------------------------------- /Torch/Patches/SessionDownloadPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Patches/SessionDownloadPatch.cs -------------------------------------------------------------------------------- /Torch/Patches/TorchAsyncSaving.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Patches/TorchAsyncSaving.cs -------------------------------------------------------------------------------- /Torch/Persistent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Persistent.cs -------------------------------------------------------------------------------- /Torch/Plugins/PluginDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Plugins/PluginDependency.cs -------------------------------------------------------------------------------- /Torch/Plugins/PluginManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Plugins/PluginManager.cs -------------------------------------------------------------------------------- /Torch/Plugins/PluginManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Plugins/PluginManifest.cs -------------------------------------------------------------------------------- /Torch/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Torch/Session/TorchSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Session/TorchSession.cs -------------------------------------------------------------------------------- /Torch/Session/TorchSessionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Session/TorchSessionManager.cs -------------------------------------------------------------------------------- /Torch/Torch.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Torch.csproj -------------------------------------------------------------------------------- /Torch/TorchBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/TorchBase.cs -------------------------------------------------------------------------------- /Torch/TorchPluginBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/TorchPluginBase.cs -------------------------------------------------------------------------------- /Torch/Utils/DotEnv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Utils/DotEnv.cs -------------------------------------------------------------------------------- /Torch/Utils/MiscExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Utils/MiscExtensions.cs -------------------------------------------------------------------------------- /Torch/Utils/ModItemUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Utils/ModItemUtils.cs -------------------------------------------------------------------------------- /Torch/Utils/Reflected/ReflectedEventReplaceAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Utils/Reflected/ReflectedEventReplaceAttribute.cs -------------------------------------------------------------------------------- /Torch/Utils/Reflected/ReflectedEventReplacer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Utils/Reflected/ReflectedEventReplacer.cs -------------------------------------------------------------------------------- /Torch/Utils/Reflected/ReflectedFieldInfoAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Utils/Reflected/ReflectedFieldInfoAttribute.cs -------------------------------------------------------------------------------- /Torch/Utils/Reflected/ReflectedGetterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Utils/Reflected/ReflectedGetterAttribute.cs -------------------------------------------------------------------------------- /Torch/Utils/Reflected/ReflectedLazyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Utils/Reflected/ReflectedLazyAttribute.cs -------------------------------------------------------------------------------- /Torch/Utils/Reflected/ReflectedManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Utils/Reflected/ReflectedManager.cs -------------------------------------------------------------------------------- /Torch/Utils/Reflected/ReflectedMemberAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Utils/Reflected/ReflectedMemberAttribute.cs -------------------------------------------------------------------------------- /Torch/Utils/Reflected/ReflectedMethodAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Utils/Reflected/ReflectedMethodAttribute.cs -------------------------------------------------------------------------------- /Torch/Utils/Reflected/ReflectedMethodInfoAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Utils/Reflected/ReflectedMethodInfoAttribute.cs -------------------------------------------------------------------------------- /Torch/Utils/Reflected/ReflectedPropertyInfoAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Utils/Reflected/ReflectedPropertyInfoAttribute.cs -------------------------------------------------------------------------------- /Torch/Utils/Reflected/ReflectedSetterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Utils/Reflected/ReflectedSetterAttribute.cs -------------------------------------------------------------------------------- /Torch/Utils/Reflected/ReflectedStaticMethodAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Utils/Reflected/ReflectedStaticMethodAttribute.cs -------------------------------------------------------------------------------- /Torch/Utils/Reflection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Utils/Reflection.cs -------------------------------------------------------------------------------- /Torch/Utils/SteamWorkshopTools/KeyValueExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Utils/SteamWorkshopTools/KeyValueExtensions.cs -------------------------------------------------------------------------------- /Torch/Utils/SteamWorkshopTools/PublishedItemDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Utils/SteamWorkshopTools/PublishedItemDetails.cs -------------------------------------------------------------------------------- /Torch/Utils/SteamWorkshopTools/WebAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Utils/SteamWorkshopTools/WebAPI.cs -------------------------------------------------------------------------------- /Torch/Utils/SynchronizationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Utils/SynchronizationExtensions.cs -------------------------------------------------------------------------------- /Torch/Utils/TorchAssemblyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Utils/TorchAssemblyResolver.cs -------------------------------------------------------------------------------- /Torch/Utils/TorchLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Utils/TorchLauncher.cs -------------------------------------------------------------------------------- /Torch/VRageGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/VRageGame.cs -------------------------------------------------------------------------------- /Torch/ViewModels/ModViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/ViewModels/ModViewModel.cs -------------------------------------------------------------------------------- /Torch/ViewModels/PlayerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/ViewModels/PlayerViewModel.cs -------------------------------------------------------------------------------- /Torch/ViewModels/PluginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/ViewModels/PluginViewModel.cs -------------------------------------------------------------------------------- /Torch/ViewModels/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/ViewModels/ViewModel.cs -------------------------------------------------------------------------------- /Torch/Views/CollectionEditor.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Views/CollectionEditor.xaml -------------------------------------------------------------------------------- /Torch/Views/CollectionEditor.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Views/CollectionEditor.xaml.cs -------------------------------------------------------------------------------- /Torch/Views/DictionaryEditor.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Views/DictionaryEditor.xaml -------------------------------------------------------------------------------- /Torch/Views/DictionaryEditor.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Views/DictionaryEditor.xaml.cs -------------------------------------------------------------------------------- /Torch/Views/DisplayAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Views/DisplayAttribute.cs -------------------------------------------------------------------------------- /Torch/Views/EmbeddedCollectionEditor.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Views/EmbeddedCollectionEditor.xaml -------------------------------------------------------------------------------- /Torch/Views/EmbeddedCollectionEditor.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Views/EmbeddedCollectionEditor.xaml.cs -------------------------------------------------------------------------------- /Torch/Views/FlagsEditor.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Views/FlagsEditor.xaml -------------------------------------------------------------------------------- /Torch/Views/FlagsEditor.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Views/FlagsEditor.xaml.cs -------------------------------------------------------------------------------- /Torch/Views/ObjectCollectionEditor.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Views/ObjectCollectionEditor.xaml -------------------------------------------------------------------------------- /Torch/Views/ObjectCollectionEditor.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Views/ObjectCollectionEditor.xaml.cs -------------------------------------------------------------------------------- /Torch/Views/ObjectEditor.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Views/ObjectEditor.xaml -------------------------------------------------------------------------------- /Torch/Views/ObjectEditor.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Views/ObjectEditor.xaml.cs -------------------------------------------------------------------------------- /Torch/Views/PropertyGrid.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Views/PropertyGrid.xaml -------------------------------------------------------------------------------- /Torch/Views/PropertyGrid.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/Views/PropertyGrid.xaml.cs -------------------------------------------------------------------------------- /Torch/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/app.config -------------------------------------------------------------------------------- /Torch/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Torch/packages.config -------------------------------------------------------------------------------- /TransformOnBuild.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/TransformOnBuild.targets -------------------------------------------------------------------------------- /Versioning/AssemblyVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Versioning/AssemblyVersion.cs -------------------------------------------------------------------------------- /Versioning/version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/Versioning/version.ps1 -------------------------------------------------------------------------------- /torchicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorchAPI/Torch/HEAD/torchicon.ico --------------------------------------------------------------------------------