├── .editorconfig ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── Rocket.Unturned.Launcher ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── Rocket.Unturned.Launcher.csproj ├── Rocket.Unturned.sln ├── Rocket.Unturned ├── Chat │ └── UnturnedChat.cs ├── Commands │ ├── CommandAdmin.cs │ ├── CommandBroadcast.cs │ ├── CommandCompass.cs │ ├── CommandEffect.cs │ ├── CommandExit.cs │ ├── CommandGod.cs │ ├── CommandHeal.cs │ ├── CommandHelp.cs │ ├── CommandHome.cs │ ├── CommandI.cs │ ├── CommandInvestigate.cs │ ├── CommandMore.cs │ ├── CommandP.cs │ ├── CommandRocket.cs │ ├── CommandTp.cs │ ├── CommandTphere.cs │ ├── CommandUnadmin.cs │ ├── CommandV.cs │ ├── CommandVanish.cs │ ├── UnturnedCommandExtensions.cs │ └── UnturnedCommands.cs ├── Docker │ ├── Dockerfile │ ├── bash │ │ ├── start.sh │ │ └── update.sh │ └── credentials │ │ ├── STEAM_PASSWORD │ │ └── STEAM_USERNAME ├── Effects │ └── UnturnedEffectManager.cs ├── Enumerations │ └── InventoryGroup.cs ├── Environment.cs ├── Events │ ├── UnturnedEvents.cs │ └── UnturnedPlayerEvents.cs ├── Extensions │ └── SteamPlayerExtension.cs ├── Items │ └── UnturnedItems.cs ├── Permissions │ └── UnturnedPermissions.cs ├── Player │ ├── UnturnedPlayer.cs │ ├── UnturnedPlayerComponent.cs │ ├── UnturnedPlayerFeatures.cs │ └── UnturnedPlayerMovement.cs ├── Plugins │ └── PluginUnturnedPlayerComponentManager.cs ├── Properties │ └── AssemblyInfo.cs ├── Rocket.Unturned.csproj ├── Rocket.Unturned.nuspec ├── Rocket.Unturned │ ├── English.dat │ └── Rocket.Unturned.module ├── Scripts │ ├── Linux │ │ ├── README │ │ ├── start.sh │ │ └── update.sh │ └── Windows │ │ ├── MyFirstRocketServer.bat │ │ ├── start.bat │ │ └── update.bat ├── Serialisation │ └── UnturnedSettings.cs ├── Skills │ └── UnturnedSkill.cs ├── U.cs ├── UnturnedConsole.cs ├── UnturnedConsoleWriter.cs ├── Utils │ └── AutomaticSaveWatchdog.cs ├── build.sh ├── dev │ ├── Game.exe │ ├── Mono.Cecil.dll │ ├── Mono.CompilerServices.SymbolWriter.dll │ └── pdb2mdb.exe ├── lib │ ├── .gitkeep │ ├── Assembly-CSharp.dll │ ├── Rocket.API.dll │ ├── Rocket.Core.dll │ ├── SDG.NetTransport.dll │ ├── UnityEngine.CoreModule.dll │ ├── UnityEngine.PhysicsModule.dll │ ├── UnityEngine.dll │ └── com.rlabrecque.steamworks.net.dll └── nuget │ └── nuget.exe └── Rocket ├── .gitignore ├── Rocket.API ├── Collections │ └── TranslationList.cs ├── ConsolePlayer.cs ├── Extensions │ ├── GameObjectExtension.cs │ └── RocketCommandExtensions.cs ├── IAsset.cs ├── IDefaultable.cs ├── IRocketCommand.cs ├── IRocketImplementation.cs ├── IRocketImplementationEvents.cs ├── IRocketPermissionsProvider.cs ├── IRocketPlayer.cs ├── IRocketPlugin.cs ├── IRocketPluginConfiguration.cs ├── NoPermissionsForCommandException.cs ├── Properties │ └── AssemblyInfo.cs ├── README ├── Rocket.API.csproj ├── RocketPlayer.cs ├── Serialisation │ ├── Command.cs │ ├── RocketPermissions.cs │ └── RocketPermissionsGroup.cs ├── WrongUsageOfCommandException.cs └── lib │ └── UnityEngine.dll ├── Rocket.Core.Tests ├── Mock │ ├── TestingCommand.cs │ └── TestingPlayer.cs ├── Permissions.config.xml ├── Properties │ └── AssemblyInfo.cs ├── Rocket.Core.Tests.csproj ├── RocketPermissionsManagerTest.cs └── lib │ └── nunit.framework.dll ├── Rocket.Core ├── Assets │ ├── Asset.cs │ ├── WebXMLFileAsset.cs │ └── XMLFileAsset.cs ├── Commands │ ├── CommandRFlush.cs │ ├── CommandRKick.cs │ ├── CommandRWho.cs │ ├── RocketCommandAttribute.cs │ ├── RocketCommandCooldown.cs │ └── RocketCommandManager.cs ├── Debugger.cs ├── Environment.cs ├── Extensions │ ├── IRocketPlayerExtension.cs │ ├── MonoBehaviourExtension.cs │ └── MulticastDelegateExtension.cs ├── Logging │ ├── AsyncLoggerQueue.cs │ ├── ELogType.cs │ ├── LogEntry.cs │ └── Logger.cs ├── Permissions │ ├── RocketPermissionsHelper.cs │ └── RocketPermissionsManager.cs ├── Plugins │ ├── RocketPlugin.cs │ └── RocketPluginManager.cs ├── Properties │ └── AssemblyInfo.cs ├── R.cs ├── RCON │ ├── RCONConnection.cs │ └── RCONServer.cs ├── Rocket.Core.csproj ├── Rocket.Core.nuspec ├── Serialization │ ├── RocketCommands.cs │ └── RocketSettings.cs ├── Steam │ ├── Profile.cs │ └── Steam.cs ├── Utils │ ├── AutomaticShutdownWatchdog.cs │ ├── RocketDispatcher.cs │ ├── RocketHelper.cs │ └── RocketWebClient.cs ├── lib │ └── UnityEngine.dll └── nuget │ └── nuget.exe ├── Rocket.sln ├── dev ├── Mono.Cecil.dll ├── Mono.CompilerServices.SymbolWriter.dll └── pdb2mdb.exe └── docs ├── API └── Introduction.md ├── Core └── Introduction.md ├── Games └── Unturned.md ├── RocketPlugin.md └── index.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/README.md -------------------------------------------------------------------------------- /Rocket.Unturned.Launcher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned.Launcher/Program.cs -------------------------------------------------------------------------------- /Rocket.Unturned.Launcher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned.Launcher/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Rocket.Unturned.Launcher/Rocket.Unturned.Launcher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned.Launcher/Rocket.Unturned.Launcher.csproj -------------------------------------------------------------------------------- /Rocket.Unturned.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned.sln -------------------------------------------------------------------------------- /Rocket.Unturned/Chat/UnturnedChat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Chat/UnturnedChat.cs -------------------------------------------------------------------------------- /Rocket.Unturned/Commands/CommandAdmin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Commands/CommandAdmin.cs -------------------------------------------------------------------------------- /Rocket.Unturned/Commands/CommandBroadcast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Commands/CommandBroadcast.cs -------------------------------------------------------------------------------- /Rocket.Unturned/Commands/CommandCompass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Commands/CommandCompass.cs -------------------------------------------------------------------------------- /Rocket.Unturned/Commands/CommandEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Commands/CommandEffect.cs -------------------------------------------------------------------------------- /Rocket.Unturned/Commands/CommandExit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Commands/CommandExit.cs -------------------------------------------------------------------------------- /Rocket.Unturned/Commands/CommandGod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Commands/CommandGod.cs -------------------------------------------------------------------------------- /Rocket.Unturned/Commands/CommandHeal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Commands/CommandHeal.cs -------------------------------------------------------------------------------- /Rocket.Unturned/Commands/CommandHelp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Commands/CommandHelp.cs -------------------------------------------------------------------------------- /Rocket.Unturned/Commands/CommandHome.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Commands/CommandHome.cs -------------------------------------------------------------------------------- /Rocket.Unturned/Commands/CommandI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Commands/CommandI.cs -------------------------------------------------------------------------------- /Rocket.Unturned/Commands/CommandInvestigate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Commands/CommandInvestigate.cs -------------------------------------------------------------------------------- /Rocket.Unturned/Commands/CommandMore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Commands/CommandMore.cs -------------------------------------------------------------------------------- /Rocket.Unturned/Commands/CommandP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Commands/CommandP.cs -------------------------------------------------------------------------------- /Rocket.Unturned/Commands/CommandRocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Commands/CommandRocket.cs -------------------------------------------------------------------------------- /Rocket.Unturned/Commands/CommandTp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Commands/CommandTp.cs -------------------------------------------------------------------------------- /Rocket.Unturned/Commands/CommandTphere.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Commands/CommandTphere.cs -------------------------------------------------------------------------------- /Rocket.Unturned/Commands/CommandUnadmin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Commands/CommandUnadmin.cs -------------------------------------------------------------------------------- /Rocket.Unturned/Commands/CommandV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Commands/CommandV.cs -------------------------------------------------------------------------------- /Rocket.Unturned/Commands/CommandVanish.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Commands/CommandVanish.cs -------------------------------------------------------------------------------- /Rocket.Unturned/Commands/UnturnedCommandExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Commands/UnturnedCommandExtensions.cs -------------------------------------------------------------------------------- /Rocket.Unturned/Commands/UnturnedCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Commands/UnturnedCommands.cs -------------------------------------------------------------------------------- /Rocket.Unturned/Docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Docker/Dockerfile -------------------------------------------------------------------------------- /Rocket.Unturned/Docker/bash/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Docker/bash/start.sh -------------------------------------------------------------------------------- /Rocket.Unturned/Docker/bash/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Docker/bash/update.sh -------------------------------------------------------------------------------- /Rocket.Unturned/Docker/credentials/STEAM_PASSWORD: -------------------------------------------------------------------------------- 1 | [ENTER_STEAM_PASSWORD] 2 | -------------------------------------------------------------------------------- /Rocket.Unturned/Docker/credentials/STEAM_USERNAME: -------------------------------------------------------------------------------- 1 | [ENTER_STEAM_USERNAME] 2 | -------------------------------------------------------------------------------- /Rocket.Unturned/Effects/UnturnedEffectManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Effects/UnturnedEffectManager.cs -------------------------------------------------------------------------------- /Rocket.Unturned/Enumerations/InventoryGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Enumerations/InventoryGroup.cs -------------------------------------------------------------------------------- /Rocket.Unturned/Environment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Environment.cs -------------------------------------------------------------------------------- /Rocket.Unturned/Events/UnturnedEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Events/UnturnedEvents.cs -------------------------------------------------------------------------------- /Rocket.Unturned/Events/UnturnedPlayerEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Events/UnturnedPlayerEvents.cs -------------------------------------------------------------------------------- /Rocket.Unturned/Extensions/SteamPlayerExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Extensions/SteamPlayerExtension.cs -------------------------------------------------------------------------------- /Rocket.Unturned/Items/UnturnedItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Items/UnturnedItems.cs -------------------------------------------------------------------------------- /Rocket.Unturned/Permissions/UnturnedPermissions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Permissions/UnturnedPermissions.cs -------------------------------------------------------------------------------- /Rocket.Unturned/Player/UnturnedPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Player/UnturnedPlayer.cs -------------------------------------------------------------------------------- /Rocket.Unturned/Player/UnturnedPlayerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Player/UnturnedPlayerComponent.cs -------------------------------------------------------------------------------- /Rocket.Unturned/Player/UnturnedPlayerFeatures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Player/UnturnedPlayerFeatures.cs -------------------------------------------------------------------------------- /Rocket.Unturned/Player/UnturnedPlayerMovement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Player/UnturnedPlayerMovement.cs -------------------------------------------------------------------------------- /Rocket.Unturned/Plugins/PluginUnturnedPlayerComponentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Plugins/PluginUnturnedPlayerComponentManager.cs -------------------------------------------------------------------------------- /Rocket.Unturned/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Rocket.Unturned/Rocket.Unturned.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Rocket.Unturned.csproj -------------------------------------------------------------------------------- /Rocket.Unturned/Rocket.Unturned.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Rocket.Unturned.nuspec -------------------------------------------------------------------------------- /Rocket.Unturned/Rocket.Unturned/English.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Rocket.Unturned/English.dat -------------------------------------------------------------------------------- /Rocket.Unturned/Rocket.Unturned/Rocket.Unturned.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Rocket.Unturned/Rocket.Unturned.module -------------------------------------------------------------------------------- /Rocket.Unturned/Scripts/Linux/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Scripts/Linux/README -------------------------------------------------------------------------------- /Rocket.Unturned/Scripts/Linux/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Scripts/Linux/start.sh -------------------------------------------------------------------------------- /Rocket.Unturned/Scripts/Linux/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Scripts/Linux/update.sh -------------------------------------------------------------------------------- /Rocket.Unturned/Scripts/Windows/MyFirstRocketServer.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | start.bat MyFirstRocketServer 3 | -------------------------------------------------------------------------------- /Rocket.Unturned/Scripts/Windows/start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Scripts/Windows/start.bat -------------------------------------------------------------------------------- /Rocket.Unturned/Scripts/Windows/update.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Scripts/Windows/update.bat -------------------------------------------------------------------------------- /Rocket.Unturned/Serialisation/UnturnedSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Serialisation/UnturnedSettings.cs -------------------------------------------------------------------------------- /Rocket.Unturned/Skills/UnturnedSkill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Skills/UnturnedSkill.cs -------------------------------------------------------------------------------- /Rocket.Unturned/U.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/U.cs -------------------------------------------------------------------------------- /Rocket.Unturned/UnturnedConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/UnturnedConsole.cs -------------------------------------------------------------------------------- /Rocket.Unturned/UnturnedConsoleWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/UnturnedConsoleWriter.cs -------------------------------------------------------------------------------- /Rocket.Unturned/Utils/AutomaticSaveWatchdog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/Utils/AutomaticSaveWatchdog.cs -------------------------------------------------------------------------------- /Rocket.Unturned/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/build.sh -------------------------------------------------------------------------------- /Rocket.Unturned/dev/Game.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/dev/Game.exe -------------------------------------------------------------------------------- /Rocket.Unturned/dev/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/dev/Mono.Cecil.dll -------------------------------------------------------------------------------- /Rocket.Unturned/dev/Mono.CompilerServices.SymbolWriter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/dev/Mono.CompilerServices.SymbolWriter.dll -------------------------------------------------------------------------------- /Rocket.Unturned/dev/pdb2mdb.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/dev/pdb2mdb.exe -------------------------------------------------------------------------------- /Rocket.Unturned/lib/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Rocket.Unturned/lib/Assembly-CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/lib/Assembly-CSharp.dll -------------------------------------------------------------------------------- /Rocket.Unturned/lib/Rocket.API.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/lib/Rocket.API.dll -------------------------------------------------------------------------------- /Rocket.Unturned/lib/Rocket.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/lib/Rocket.Core.dll -------------------------------------------------------------------------------- /Rocket.Unturned/lib/SDG.NetTransport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/lib/SDG.NetTransport.dll -------------------------------------------------------------------------------- /Rocket.Unturned/lib/UnityEngine.CoreModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/lib/UnityEngine.CoreModule.dll -------------------------------------------------------------------------------- /Rocket.Unturned/lib/UnityEngine.PhysicsModule.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/lib/UnityEngine.PhysicsModule.dll -------------------------------------------------------------------------------- /Rocket.Unturned/lib/UnityEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/lib/UnityEngine.dll -------------------------------------------------------------------------------- /Rocket.Unturned/lib/com.rlabrecque.steamworks.net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/lib/com.rlabrecque.steamworks.net.dll -------------------------------------------------------------------------------- /Rocket.Unturned/nuget/nuget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket.Unturned/nuget/nuget.exe -------------------------------------------------------------------------------- /Rocket/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/.gitignore -------------------------------------------------------------------------------- /Rocket/Rocket.API/Collections/TranslationList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.API/Collections/TranslationList.cs -------------------------------------------------------------------------------- /Rocket/Rocket.API/ConsolePlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.API/ConsolePlayer.cs -------------------------------------------------------------------------------- /Rocket/Rocket.API/Extensions/GameObjectExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.API/Extensions/GameObjectExtension.cs -------------------------------------------------------------------------------- /Rocket/Rocket.API/Extensions/RocketCommandExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.API/Extensions/RocketCommandExtensions.cs -------------------------------------------------------------------------------- /Rocket/Rocket.API/IAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.API/IAsset.cs -------------------------------------------------------------------------------- /Rocket/Rocket.API/IDefaultable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.API/IDefaultable.cs -------------------------------------------------------------------------------- /Rocket/Rocket.API/IRocketCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.API/IRocketCommand.cs -------------------------------------------------------------------------------- /Rocket/Rocket.API/IRocketImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.API/IRocketImplementation.cs -------------------------------------------------------------------------------- /Rocket/Rocket.API/IRocketImplementationEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.API/IRocketImplementationEvents.cs -------------------------------------------------------------------------------- /Rocket/Rocket.API/IRocketPermissionsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.API/IRocketPermissionsProvider.cs -------------------------------------------------------------------------------- /Rocket/Rocket.API/IRocketPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.API/IRocketPlayer.cs -------------------------------------------------------------------------------- /Rocket/Rocket.API/IRocketPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.API/IRocketPlugin.cs -------------------------------------------------------------------------------- /Rocket/Rocket.API/IRocketPluginConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.API/IRocketPluginConfiguration.cs -------------------------------------------------------------------------------- /Rocket/Rocket.API/NoPermissionsForCommandException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.API/NoPermissionsForCommandException.cs -------------------------------------------------------------------------------- /Rocket/Rocket.API/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.API/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Rocket/Rocket.API/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.API/README -------------------------------------------------------------------------------- /Rocket/Rocket.API/Rocket.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.API/Rocket.API.csproj -------------------------------------------------------------------------------- /Rocket/Rocket.API/RocketPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.API/RocketPlayer.cs -------------------------------------------------------------------------------- /Rocket/Rocket.API/Serialisation/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.API/Serialisation/Command.cs -------------------------------------------------------------------------------- /Rocket/Rocket.API/Serialisation/RocketPermissions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.API/Serialisation/RocketPermissions.cs -------------------------------------------------------------------------------- /Rocket/Rocket.API/Serialisation/RocketPermissionsGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.API/Serialisation/RocketPermissionsGroup.cs -------------------------------------------------------------------------------- /Rocket/Rocket.API/WrongUsageOfCommandException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.API/WrongUsageOfCommandException.cs -------------------------------------------------------------------------------- /Rocket/Rocket.API/lib/UnityEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.API/lib/UnityEngine.dll -------------------------------------------------------------------------------- /Rocket/Rocket.Core.Tests/Mock/TestingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core.Tests/Mock/TestingCommand.cs -------------------------------------------------------------------------------- /Rocket/Rocket.Core.Tests/Mock/TestingPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core.Tests/Mock/TestingPlayer.cs -------------------------------------------------------------------------------- /Rocket/Rocket.Core.Tests/Permissions.config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core.Tests/Permissions.config.xml -------------------------------------------------------------------------------- /Rocket/Rocket.Core.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Rocket/Rocket.Core.Tests/Rocket.Core.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core.Tests/Rocket.Core.Tests.csproj -------------------------------------------------------------------------------- /Rocket/Rocket.Core.Tests/RocketPermissionsManagerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core.Tests/RocketPermissionsManagerTest.cs -------------------------------------------------------------------------------- /Rocket/Rocket.Core.Tests/lib/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core.Tests/lib/nunit.framework.dll -------------------------------------------------------------------------------- /Rocket/Rocket.Core/Assets/Asset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core/Assets/Asset.cs -------------------------------------------------------------------------------- /Rocket/Rocket.Core/Assets/WebXMLFileAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core/Assets/WebXMLFileAsset.cs -------------------------------------------------------------------------------- /Rocket/Rocket.Core/Assets/XMLFileAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core/Assets/XMLFileAsset.cs -------------------------------------------------------------------------------- /Rocket/Rocket.Core/Commands/CommandRFlush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core/Commands/CommandRFlush.cs -------------------------------------------------------------------------------- /Rocket/Rocket.Core/Commands/CommandRKick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core/Commands/CommandRKick.cs -------------------------------------------------------------------------------- /Rocket/Rocket.Core/Commands/CommandRWho.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core/Commands/CommandRWho.cs -------------------------------------------------------------------------------- /Rocket/Rocket.Core/Commands/RocketCommandAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core/Commands/RocketCommandAttribute.cs -------------------------------------------------------------------------------- /Rocket/Rocket.Core/Commands/RocketCommandCooldown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core/Commands/RocketCommandCooldown.cs -------------------------------------------------------------------------------- /Rocket/Rocket.Core/Commands/RocketCommandManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core/Commands/RocketCommandManager.cs -------------------------------------------------------------------------------- /Rocket/Rocket.Core/Debugger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core/Debugger.cs -------------------------------------------------------------------------------- /Rocket/Rocket.Core/Environment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core/Environment.cs -------------------------------------------------------------------------------- /Rocket/Rocket.Core/Extensions/IRocketPlayerExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core/Extensions/IRocketPlayerExtension.cs -------------------------------------------------------------------------------- /Rocket/Rocket.Core/Extensions/MonoBehaviourExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core/Extensions/MonoBehaviourExtension.cs -------------------------------------------------------------------------------- /Rocket/Rocket.Core/Extensions/MulticastDelegateExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core/Extensions/MulticastDelegateExtension.cs -------------------------------------------------------------------------------- /Rocket/Rocket.Core/Logging/AsyncLoggerQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core/Logging/AsyncLoggerQueue.cs -------------------------------------------------------------------------------- /Rocket/Rocket.Core/Logging/ELogType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core/Logging/ELogType.cs -------------------------------------------------------------------------------- /Rocket/Rocket.Core/Logging/LogEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core/Logging/LogEntry.cs -------------------------------------------------------------------------------- /Rocket/Rocket.Core/Logging/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core/Logging/Logger.cs -------------------------------------------------------------------------------- /Rocket/Rocket.Core/Permissions/RocketPermissionsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core/Permissions/RocketPermissionsHelper.cs -------------------------------------------------------------------------------- /Rocket/Rocket.Core/Permissions/RocketPermissionsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core/Permissions/RocketPermissionsManager.cs -------------------------------------------------------------------------------- /Rocket/Rocket.Core/Plugins/RocketPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core/Plugins/RocketPlugin.cs -------------------------------------------------------------------------------- /Rocket/Rocket.Core/Plugins/RocketPluginManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core/Plugins/RocketPluginManager.cs -------------------------------------------------------------------------------- /Rocket/Rocket.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Rocket/Rocket.Core/R.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core/R.cs -------------------------------------------------------------------------------- /Rocket/Rocket.Core/RCON/RCONConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core/RCON/RCONConnection.cs -------------------------------------------------------------------------------- /Rocket/Rocket.Core/RCON/RCONServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core/RCON/RCONServer.cs -------------------------------------------------------------------------------- /Rocket/Rocket.Core/Rocket.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core/Rocket.Core.csproj -------------------------------------------------------------------------------- /Rocket/Rocket.Core/Rocket.Core.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core/Rocket.Core.nuspec -------------------------------------------------------------------------------- /Rocket/Rocket.Core/Serialization/RocketCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core/Serialization/RocketCommands.cs -------------------------------------------------------------------------------- /Rocket/Rocket.Core/Serialization/RocketSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core/Serialization/RocketSettings.cs -------------------------------------------------------------------------------- /Rocket/Rocket.Core/Steam/Profile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core/Steam/Profile.cs -------------------------------------------------------------------------------- /Rocket/Rocket.Core/Steam/Steam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core/Steam/Steam.cs -------------------------------------------------------------------------------- /Rocket/Rocket.Core/Utils/AutomaticShutdownWatchdog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core/Utils/AutomaticShutdownWatchdog.cs -------------------------------------------------------------------------------- /Rocket/Rocket.Core/Utils/RocketDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core/Utils/RocketDispatcher.cs -------------------------------------------------------------------------------- /Rocket/Rocket.Core/Utils/RocketHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core/Utils/RocketHelper.cs -------------------------------------------------------------------------------- /Rocket/Rocket.Core/Utils/RocketWebClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core/Utils/RocketWebClient.cs -------------------------------------------------------------------------------- /Rocket/Rocket.Core/lib/UnityEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core/lib/UnityEngine.dll -------------------------------------------------------------------------------- /Rocket/Rocket.Core/nuget/nuget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.Core/nuget/nuget.exe -------------------------------------------------------------------------------- /Rocket/Rocket.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/Rocket.sln -------------------------------------------------------------------------------- /Rocket/dev/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/dev/Mono.Cecil.dll -------------------------------------------------------------------------------- /Rocket/dev/Mono.CompilerServices.SymbolWriter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/dev/Mono.CompilerServices.SymbolWriter.dll -------------------------------------------------------------------------------- /Rocket/dev/pdb2mdb.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/dev/pdb2mdb.exe -------------------------------------------------------------------------------- /Rocket/docs/API/Introduction.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Rocket/docs/Core/Introduction.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Rocket/docs/Games/Unturned.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/docs/Games/Unturned.md -------------------------------------------------------------------------------- /Rocket/docs/RocketPlugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartlyDressedGames/Legally-Distinct-Missile/HEAD/Rocket/docs/RocketPlugin.md -------------------------------------------------------------------------------- /Rocket/docs/index.md: -------------------------------------------------------------------------------- 1 | # Introduction 2 | 3 | Welcome to the RocketMod Documentation. 4 | --------------------------------------------------------------------------------