├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json └── tasks.json ├── AUTHORS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── COPYING ├── D2Mod.sln ├── Makefile ├── OpenRA.Mods.D2 ├── AudioLoaders │ ├── AudLoader.cs │ └── VocLoader.cs ├── FileFormats │ ├── AudReader.cs │ ├── LCWCompression.cs │ ├── WsaReader.cs │ └── XORDeltaCompression.cs ├── FileSystem │ └── Pak.cs ├── Graphics │ ├── D2BuildingPlacementRenderable.cs │ └── D2ChromeProvider.cs ├── ImportData │ ├── D2ImportOriginalMaps.cs │ ├── D2MapImporter.cs │ ├── D2MapSeed.cs │ └── D2UnpackContent.cs ├── LoadScreens │ └── D2LoadScreen.cs ├── MapUtils │ └── D2MapUtils.cs ├── MathExtention │ └── D2MathExtention.cs ├── OpenRA.Mods.D2.csproj ├── Properties │ └── launchSettings.json ├── SpriteLoaders │ ├── CpsD2Loader.cs │ ├── IcnD2Loader.cs │ ├── ShpD2Loader.cs │ ├── ShpTDLoader.cs │ └── WsaLoader.cs ├── Traits │ ├── Buildings │ │ ├── D2Building.cs │ │ ├── D2Concrete.cs │ │ ├── D2ConcreteOwners.cs │ │ └── D2PlaceBuildingPreview.cs │ ├── D2AffectsShroud.cs │ ├── D2RevealsShroud.cs │ ├── PaletteEffects │ │ └── D2WindtrapPaletteEffect.cs │ ├── Render │ │ ├── D2LeavesTracks.cs │ │ └── WithTilesetBody.cs │ └── World │ │ ├── D2BuildableTerrainLayer.cs │ │ ├── D2ResourceRenderer.cs │ │ ├── D2Selection.cs │ │ ├── D2ShroudRenderer.cs │ │ └── D2TerrainLayer.cs ├── UtilityCommands │ └── D2ImportMapD2Command.cs └── Widgets │ ├── D2ButtonWidget.cs │ ├── D2ImageWidget.cs │ ├── D2LineWidget.cs │ ├── D2PanelWidget.cs │ ├── D2ProgressBarWidget.cs │ ├── D2SpriteWidget.cs │ ├── D2WidgetUtils.cs │ ├── Logic │ ├── D2AssetBrowserLogic.cs │ ├── D2MissionBrowserLogic.cs │ └── Ingame │ │ └── D2IngameActorLogic.cs │ └── WsaPlayerWidget.cs ├── README.md ├── fetch-engine.sh ├── launch-dedicated.cmd ├── launch-dedicated.sh ├── launch-game.cmd ├── launch-game.sh ├── make.cmd ├── make.ps1 ├── mod.config ├── mods └── d2 │ ├── AUTHORS │ ├── audio │ ├── music.yaml │ ├── notifications.yaml │ └── voices.yaml │ ├── bits │ ├── scripts │ │ └── campaign-global.lua │ └── transparent.shp │ ├── chrome.yaml │ ├── chrome │ ├── assetbrowser.yaml │ ├── ingame-observer.yaml │ ├── ingame-player.yaml │ └── missionbrowser.yaml │ ├── cursors.yaml │ ├── hotkeys.yaml │ ├── icon.png │ ├── installer │ ├── d2k-a.yaml │ ├── d2k-b.yaml │ ├── d2k-c.yaml │ ├── d2k-d.yaml │ ├── d2k-e.yaml │ ├── downloads.yaml │ └── gruntmods.yaml │ ├── maps │ ├── map1 │ │ ├── map.bin │ │ ├── map.png │ │ └── map.yaml │ ├── oh-gap.oramap │ ├── scena001 │ │ ├── map.bin │ │ ├── map.png │ │ ├── map.yaml │ │ ├── rules.yaml │ │ └── scena001.lua │ ├── scena002 │ │ ├── map.bin │ │ ├── map.png │ │ ├── map.yaml │ │ ├── rules.yaml │ │ ├── scena002-AI.lua │ │ └── scena002.lua │ └── shellmap │ │ ├── map.bin │ │ ├── map.png │ │ └── map.yaml │ ├── metrics.yaml │ ├── missions.yaml │ ├── mod.yaml │ ├── rules │ ├── ai.yaml │ ├── aircrafthusk.yaml │ ├── arrakis.yaml │ ├── autotarget.yaml │ ├── barracks.yaml │ ├── building.yaml │ ├── campaign-rules.yaml │ ├── campaign-tooltips.yaml │ ├── carryall.yaml │ ├── colorpicker.yaml │ ├── combat_tank.yaml │ ├── concrete.yaml │ ├── construction_yard.yaml │ ├── defaults.yaml │ ├── defense.yaml │ ├── devastator.yaml │ ├── deviator.yaml │ ├── fremen.yaml │ ├── frigate.yaml │ ├── gun_turret.yaml │ ├── harvester.yaml │ ├── heavy_factory.yaml │ ├── high_tech_factory.yaml │ ├── husk.yaml │ ├── husks.yaml │ ├── infantry.yaml │ ├── light_factory.yaml │ ├── light_inf.yaml │ ├── light_squad.yaml │ ├── mcv.yaml │ ├── misc.yaml │ ├── missile_tank.yaml │ ├── ornithopter.yaml │ ├── outpost.yaml │ ├── palace.yaml │ ├── palettes.yaml │ ├── plane.yaml │ ├── player.yaml │ ├── powerdown.yaml │ ├── quad.yaml │ ├── raider.yaml │ ├── refinery.yaml │ ├── repair_pad.yaml │ ├── research_centre.yaml │ ├── rocket_turret.yaml │ ├── saboteur.yaml │ ├── sandworm.yaml │ ├── sardaukar.yaml │ ├── siege_tank.yaml │ ├── silo.yaml │ ├── sonic_tank.yaml │ ├── spicebloom.yaml │ ├── starport.yaml │ ├── starport_items.yaml │ ├── tank.yaml │ ├── trike.yaml │ ├── trooper.yaml │ ├── trooper_squad.yaml │ ├── vechicle.yaml │ ├── vechiclehusk.yaml │ ├── wall.yaml │ ├── wind_trap.yaml │ ├── wor.yaml │ └── world.yaml │ ├── sequences │ ├── atomic.yaml │ ├── barracks.yaml │ ├── bombs.yaml │ ├── carryall.yaml │ ├── colorpicker.yaml │ ├── combat_tank.yaml │ ├── concrete.yaml │ ├── conyard.yaml │ ├── craters.yaml │ ├── devastator.yaml │ ├── deviator.yaml │ ├── explosion.yaml │ ├── fire.yaml │ ├── fremen.yaml │ ├── frigate.yaml │ ├── gun_turret.yaml │ ├── guns_fire.yaml │ ├── harvester.yaml │ ├── heavy_factory.yaml │ ├── high_tech_factory.yaml │ ├── icon.yaml │ ├── light_factory.yaml │ ├── light_inf.yaml │ ├── light_squad.yaml │ ├── mcv.yaml │ ├── misc.yaml │ ├── missile_tank.yaml │ ├── ornithopter.yaml │ ├── outpost.yaml │ ├── overlay.yaml │ ├── palace.yaml │ ├── quad.yaml │ ├── raider.yaml │ ├── refinery.yaml │ ├── repair_pad.yaml │ ├── research.yaml │ ├── rocket_turret.yaml │ ├── saboteur.yaml │ ├── sandworm.yaml │ ├── sardaukar.yaml │ ├── shroud.yaml │ ├── sides.yaml │ ├── siege_tank.yaml │ ├── silo.yaml │ ├── smoke.yaml │ ├── sonic_tank.yaml │ ├── spice.yaml │ ├── spicebloom.yaml │ ├── starport.yaml │ ├── tracks.yaml │ ├── trails.yaml │ ├── trike.yaml │ ├── trooper.yaml │ ├── trooper_squad.yaml │ ├── wall.yaml │ ├── wind_trap.yaml │ └── wor.yaml │ ├── tilesets │ └── arrakis2.yaml │ └── weapons │ ├── largeguns.yaml │ ├── missiles.yaml │ ├── other.yaml │ ├── smallguns.yaml │ ├── spicebloom.yaml │ └── squads.yaml ├── omnisharp.json ├── packaging ├── artwork │ ├── icon_1024x1024.png │ ├── icon_128x128.png │ ├── icon_16x16.png │ ├── icon_24x24.png │ ├── icon_256x256.png │ ├── icon_32x32.png │ ├── icon_48x48.png │ ├── icon_512x512.png │ ├── icon_64x64.png │ ├── macos-background-2x.png │ └── macos-background.png ├── functions.sh ├── linux │ └── buildpackage.sh ├── macos │ └── buildpackage.sh ├── package-all.sh └── windows │ ├── buildpackage.nsi │ └── buildpackage.sh ├── utility.cmd └── utility.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | ./mods/d2/AUTHORS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/COPYING -------------------------------------------------------------------------------- /D2Mod.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/D2Mod.sln -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/Makefile -------------------------------------------------------------------------------- /OpenRA.Mods.D2/AudioLoaders/AudLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/AudioLoaders/AudLoader.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/AudioLoaders/VocLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/AudioLoaders/VocLoader.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/FileFormats/AudReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/FileFormats/AudReader.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/FileFormats/LCWCompression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/FileFormats/LCWCompression.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/FileFormats/WsaReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/FileFormats/WsaReader.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/FileFormats/XORDeltaCompression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/FileFormats/XORDeltaCompression.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/FileSystem/Pak.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/FileSystem/Pak.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/Graphics/D2BuildingPlacementRenderable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/Graphics/D2BuildingPlacementRenderable.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/Graphics/D2ChromeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/Graphics/D2ChromeProvider.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/ImportData/D2ImportOriginalMaps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/ImportData/D2ImportOriginalMaps.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/ImportData/D2MapImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/ImportData/D2MapImporter.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/ImportData/D2MapSeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/ImportData/D2MapSeed.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/ImportData/D2UnpackContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/ImportData/D2UnpackContent.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/LoadScreens/D2LoadScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/LoadScreens/D2LoadScreen.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/MapUtils/D2MapUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/MapUtils/D2MapUtils.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/MathExtention/D2MathExtention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/MathExtention/D2MathExtention.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/OpenRA.Mods.D2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/OpenRA.Mods.D2.csproj -------------------------------------------------------------------------------- /OpenRA.Mods.D2/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/Properties/launchSettings.json -------------------------------------------------------------------------------- /OpenRA.Mods.D2/SpriteLoaders/CpsD2Loader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/SpriteLoaders/CpsD2Loader.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/SpriteLoaders/IcnD2Loader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/SpriteLoaders/IcnD2Loader.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/SpriteLoaders/ShpD2Loader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/SpriteLoaders/ShpD2Loader.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/SpriteLoaders/ShpTDLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/SpriteLoaders/ShpTDLoader.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/SpriteLoaders/WsaLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/SpriteLoaders/WsaLoader.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/Traits/Buildings/D2Building.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/Traits/Buildings/D2Building.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/Traits/Buildings/D2Concrete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/Traits/Buildings/D2Concrete.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/Traits/Buildings/D2ConcreteOwners.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/Traits/Buildings/D2ConcreteOwners.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/Traits/Buildings/D2PlaceBuildingPreview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/Traits/Buildings/D2PlaceBuildingPreview.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/Traits/D2AffectsShroud.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/Traits/D2AffectsShroud.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/Traits/D2RevealsShroud.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/Traits/D2RevealsShroud.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/Traits/PaletteEffects/D2WindtrapPaletteEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/Traits/PaletteEffects/D2WindtrapPaletteEffect.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/Traits/Render/D2LeavesTracks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/Traits/Render/D2LeavesTracks.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/Traits/Render/WithTilesetBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/Traits/Render/WithTilesetBody.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/Traits/World/D2BuildableTerrainLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/Traits/World/D2BuildableTerrainLayer.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/Traits/World/D2ResourceRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/Traits/World/D2ResourceRenderer.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/Traits/World/D2Selection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/Traits/World/D2Selection.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/Traits/World/D2ShroudRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/Traits/World/D2ShroudRenderer.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/Traits/World/D2TerrainLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/Traits/World/D2TerrainLayer.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/UtilityCommands/D2ImportMapD2Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/UtilityCommands/D2ImportMapD2Command.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/Widgets/D2ButtonWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/Widgets/D2ButtonWidget.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/Widgets/D2ImageWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/Widgets/D2ImageWidget.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/Widgets/D2LineWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/Widgets/D2LineWidget.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/Widgets/D2PanelWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/Widgets/D2PanelWidget.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/Widgets/D2ProgressBarWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/Widgets/D2ProgressBarWidget.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/Widgets/D2SpriteWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/Widgets/D2SpriteWidget.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/Widgets/D2WidgetUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/Widgets/D2WidgetUtils.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/Widgets/Logic/D2AssetBrowserLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/Widgets/Logic/D2AssetBrowserLogic.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/Widgets/Logic/D2MissionBrowserLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/Widgets/Logic/D2MissionBrowserLogic.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/Widgets/Logic/Ingame/D2IngameActorLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/Widgets/Logic/Ingame/D2IngameActorLogic.cs -------------------------------------------------------------------------------- /OpenRA.Mods.D2/Widgets/WsaPlayerWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/OpenRA.Mods.D2/Widgets/WsaPlayerWidget.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/README.md -------------------------------------------------------------------------------- /fetch-engine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/fetch-engine.sh -------------------------------------------------------------------------------- /launch-dedicated.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/launch-dedicated.cmd -------------------------------------------------------------------------------- /launch-dedicated.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/launch-dedicated.sh -------------------------------------------------------------------------------- /launch-game.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/launch-game.cmd -------------------------------------------------------------------------------- /launch-game.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/launch-game.sh -------------------------------------------------------------------------------- /make.cmd: -------------------------------------------------------------------------------- 1 | @powershell -NoProfile -ExecutionPolicy Bypass -File make.ps1 %* 2 | -------------------------------------------------------------------------------- /make.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/make.ps1 -------------------------------------------------------------------------------- /mod.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mod.config -------------------------------------------------------------------------------- /mods/d2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/AUTHORS -------------------------------------------------------------------------------- /mods/d2/audio/music.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/audio/music.yaml -------------------------------------------------------------------------------- /mods/d2/audio/notifications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/audio/notifications.yaml -------------------------------------------------------------------------------- /mods/d2/audio/voices.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/audio/voices.yaml -------------------------------------------------------------------------------- /mods/d2/bits/scripts/campaign-global.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/bits/scripts/campaign-global.lua -------------------------------------------------------------------------------- /mods/d2/bits/transparent.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/bits/transparent.shp -------------------------------------------------------------------------------- /mods/d2/chrome.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/chrome.yaml -------------------------------------------------------------------------------- /mods/d2/chrome/assetbrowser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/chrome/assetbrowser.yaml -------------------------------------------------------------------------------- /mods/d2/chrome/ingame-observer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/chrome/ingame-observer.yaml -------------------------------------------------------------------------------- /mods/d2/chrome/ingame-player.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/chrome/ingame-player.yaml -------------------------------------------------------------------------------- /mods/d2/chrome/missionbrowser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/chrome/missionbrowser.yaml -------------------------------------------------------------------------------- /mods/d2/cursors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/cursors.yaml -------------------------------------------------------------------------------- /mods/d2/hotkeys.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/hotkeys.yaml -------------------------------------------------------------------------------- /mods/d2/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/icon.png -------------------------------------------------------------------------------- /mods/d2/installer/d2k-a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/installer/d2k-a.yaml -------------------------------------------------------------------------------- /mods/d2/installer/d2k-b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/installer/d2k-b.yaml -------------------------------------------------------------------------------- /mods/d2/installer/d2k-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/installer/d2k-c.yaml -------------------------------------------------------------------------------- /mods/d2/installer/d2k-d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/installer/d2k-d.yaml -------------------------------------------------------------------------------- /mods/d2/installer/d2k-e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/installer/d2k-e.yaml -------------------------------------------------------------------------------- /mods/d2/installer/downloads.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/installer/downloads.yaml -------------------------------------------------------------------------------- /mods/d2/installer/gruntmods.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/installer/gruntmods.yaml -------------------------------------------------------------------------------- /mods/d2/maps/map1/map.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/maps/map1/map.bin -------------------------------------------------------------------------------- /mods/d2/maps/map1/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/maps/map1/map.png -------------------------------------------------------------------------------- /mods/d2/maps/map1/map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/maps/map1/map.yaml -------------------------------------------------------------------------------- /mods/d2/maps/oh-gap.oramap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/maps/oh-gap.oramap -------------------------------------------------------------------------------- /mods/d2/maps/scena001/map.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/maps/scena001/map.bin -------------------------------------------------------------------------------- /mods/d2/maps/scena001/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/maps/scena001/map.png -------------------------------------------------------------------------------- /mods/d2/maps/scena001/map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/maps/scena001/map.yaml -------------------------------------------------------------------------------- /mods/d2/maps/scena001/rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/maps/scena001/rules.yaml -------------------------------------------------------------------------------- /mods/d2/maps/scena001/scena001.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/maps/scena001/scena001.lua -------------------------------------------------------------------------------- /mods/d2/maps/scena002/map.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/maps/scena002/map.bin -------------------------------------------------------------------------------- /mods/d2/maps/scena002/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/maps/scena002/map.png -------------------------------------------------------------------------------- /mods/d2/maps/scena002/map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/maps/scena002/map.yaml -------------------------------------------------------------------------------- /mods/d2/maps/scena002/rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/maps/scena002/rules.yaml -------------------------------------------------------------------------------- /mods/d2/maps/scena002/scena002-AI.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/maps/scena002/scena002-AI.lua -------------------------------------------------------------------------------- /mods/d2/maps/scena002/scena002.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/maps/scena002/scena002.lua -------------------------------------------------------------------------------- /mods/d2/maps/shellmap/map.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/maps/shellmap/map.bin -------------------------------------------------------------------------------- /mods/d2/maps/shellmap/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/maps/shellmap/map.png -------------------------------------------------------------------------------- /mods/d2/maps/shellmap/map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/maps/shellmap/map.yaml -------------------------------------------------------------------------------- /mods/d2/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/metrics.yaml -------------------------------------------------------------------------------- /mods/d2/missions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/missions.yaml -------------------------------------------------------------------------------- /mods/d2/mod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/mod.yaml -------------------------------------------------------------------------------- /mods/d2/rules/ai.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/ai.yaml -------------------------------------------------------------------------------- /mods/d2/rules/aircrafthusk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/aircrafthusk.yaml -------------------------------------------------------------------------------- /mods/d2/rules/arrakis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/arrakis.yaml -------------------------------------------------------------------------------- /mods/d2/rules/autotarget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/autotarget.yaml -------------------------------------------------------------------------------- /mods/d2/rules/barracks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/barracks.yaml -------------------------------------------------------------------------------- /mods/d2/rules/building.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/building.yaml -------------------------------------------------------------------------------- /mods/d2/rules/campaign-rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/campaign-rules.yaml -------------------------------------------------------------------------------- /mods/d2/rules/campaign-tooltips.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/campaign-tooltips.yaml -------------------------------------------------------------------------------- /mods/d2/rules/carryall.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/carryall.yaml -------------------------------------------------------------------------------- /mods/d2/rules/colorpicker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/colorpicker.yaml -------------------------------------------------------------------------------- /mods/d2/rules/combat_tank.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/combat_tank.yaml -------------------------------------------------------------------------------- /mods/d2/rules/concrete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/concrete.yaml -------------------------------------------------------------------------------- /mods/d2/rules/construction_yard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/construction_yard.yaml -------------------------------------------------------------------------------- /mods/d2/rules/defaults.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/defaults.yaml -------------------------------------------------------------------------------- /mods/d2/rules/defense.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/defense.yaml -------------------------------------------------------------------------------- /mods/d2/rules/devastator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/devastator.yaml -------------------------------------------------------------------------------- /mods/d2/rules/deviator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/deviator.yaml -------------------------------------------------------------------------------- /mods/d2/rules/fremen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/fremen.yaml -------------------------------------------------------------------------------- /mods/d2/rules/frigate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/frigate.yaml -------------------------------------------------------------------------------- /mods/d2/rules/gun_turret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/gun_turret.yaml -------------------------------------------------------------------------------- /mods/d2/rules/harvester.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/harvester.yaml -------------------------------------------------------------------------------- /mods/d2/rules/heavy_factory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/heavy_factory.yaml -------------------------------------------------------------------------------- /mods/d2/rules/high_tech_factory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/high_tech_factory.yaml -------------------------------------------------------------------------------- /mods/d2/rules/husk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/husk.yaml -------------------------------------------------------------------------------- /mods/d2/rules/husks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/husks.yaml -------------------------------------------------------------------------------- /mods/d2/rules/infantry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/infantry.yaml -------------------------------------------------------------------------------- /mods/d2/rules/light_factory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/light_factory.yaml -------------------------------------------------------------------------------- /mods/d2/rules/light_inf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/light_inf.yaml -------------------------------------------------------------------------------- /mods/d2/rules/light_squad.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/light_squad.yaml -------------------------------------------------------------------------------- /mods/d2/rules/mcv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/mcv.yaml -------------------------------------------------------------------------------- /mods/d2/rules/misc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/misc.yaml -------------------------------------------------------------------------------- /mods/d2/rules/missile_tank.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/missile_tank.yaml -------------------------------------------------------------------------------- /mods/d2/rules/ornithopter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/ornithopter.yaml -------------------------------------------------------------------------------- /mods/d2/rules/outpost.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/outpost.yaml -------------------------------------------------------------------------------- /mods/d2/rules/palace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/palace.yaml -------------------------------------------------------------------------------- /mods/d2/rules/palettes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/palettes.yaml -------------------------------------------------------------------------------- /mods/d2/rules/plane.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/plane.yaml -------------------------------------------------------------------------------- /mods/d2/rules/player.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/player.yaml -------------------------------------------------------------------------------- /mods/d2/rules/powerdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/powerdown.yaml -------------------------------------------------------------------------------- /mods/d2/rules/quad.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/quad.yaml -------------------------------------------------------------------------------- /mods/d2/rules/raider.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/raider.yaml -------------------------------------------------------------------------------- /mods/d2/rules/refinery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/refinery.yaml -------------------------------------------------------------------------------- /mods/d2/rules/repair_pad.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/repair_pad.yaml -------------------------------------------------------------------------------- /mods/d2/rules/research_centre.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/research_centre.yaml -------------------------------------------------------------------------------- /mods/d2/rules/rocket_turret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/rocket_turret.yaml -------------------------------------------------------------------------------- /mods/d2/rules/saboteur.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/saboteur.yaml -------------------------------------------------------------------------------- /mods/d2/rules/sandworm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/sandworm.yaml -------------------------------------------------------------------------------- /mods/d2/rules/sardaukar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/sardaukar.yaml -------------------------------------------------------------------------------- /mods/d2/rules/siege_tank.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/siege_tank.yaml -------------------------------------------------------------------------------- /mods/d2/rules/silo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/silo.yaml -------------------------------------------------------------------------------- /mods/d2/rules/sonic_tank.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/sonic_tank.yaml -------------------------------------------------------------------------------- /mods/d2/rules/spicebloom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/spicebloom.yaml -------------------------------------------------------------------------------- /mods/d2/rules/starport.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/starport.yaml -------------------------------------------------------------------------------- /mods/d2/rules/starport_items.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/starport_items.yaml -------------------------------------------------------------------------------- /mods/d2/rules/tank.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/tank.yaml -------------------------------------------------------------------------------- /mods/d2/rules/trike.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/trike.yaml -------------------------------------------------------------------------------- /mods/d2/rules/trooper.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/trooper.yaml -------------------------------------------------------------------------------- /mods/d2/rules/trooper_squad.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/trooper_squad.yaml -------------------------------------------------------------------------------- /mods/d2/rules/vechicle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/vechicle.yaml -------------------------------------------------------------------------------- /mods/d2/rules/vechiclehusk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/vechiclehusk.yaml -------------------------------------------------------------------------------- /mods/d2/rules/wall.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/wall.yaml -------------------------------------------------------------------------------- /mods/d2/rules/wind_trap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/wind_trap.yaml -------------------------------------------------------------------------------- /mods/d2/rules/wor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/wor.yaml -------------------------------------------------------------------------------- /mods/d2/rules/world.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/rules/world.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/atomic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/atomic.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/barracks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/barracks.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/bombs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/bombs.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/carryall.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/carryall.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/colorpicker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/colorpicker.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/combat_tank.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/combat_tank.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/concrete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/concrete.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/conyard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/conyard.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/craters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/craters.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/devastator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/devastator.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/deviator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/deviator.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/explosion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/explosion.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/fire.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/fire.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/fremen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/fremen.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/frigate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/frigate.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/gun_turret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/gun_turret.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/guns_fire.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/guns_fire.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/harvester.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/harvester.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/heavy_factory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/heavy_factory.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/high_tech_factory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/high_tech_factory.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/icon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/icon.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/light_factory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/light_factory.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/light_inf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/light_inf.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/light_squad.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/light_squad.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/mcv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/mcv.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/misc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/misc.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/missile_tank.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/missile_tank.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/ornithopter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/ornithopter.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/outpost.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/outpost.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/overlay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/overlay.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/palace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/palace.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/quad.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/quad.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/raider.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/raider.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/refinery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/refinery.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/repair_pad.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/repair_pad.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/research.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/research.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/rocket_turret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/rocket_turret.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/saboteur.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/saboteur.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/sandworm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/sandworm.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/sardaukar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/sardaukar.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/shroud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/shroud.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/sides.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/sides.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/siege_tank.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/siege_tank.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/silo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/silo.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/smoke.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/smoke.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/sonic_tank.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/sonic_tank.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/spice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/spice.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/spicebloom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/spicebloom.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/starport.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/starport.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/tracks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/tracks.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/trails.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/trails.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/trike.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/trike.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/trooper.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/trooper.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/trooper_squad.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/trooper_squad.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/wall.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/wall.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/wind_trap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/wind_trap.yaml -------------------------------------------------------------------------------- /mods/d2/sequences/wor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/sequences/wor.yaml -------------------------------------------------------------------------------- /mods/d2/tilesets/arrakis2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/tilesets/arrakis2.yaml -------------------------------------------------------------------------------- /mods/d2/weapons/largeguns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/weapons/largeguns.yaml -------------------------------------------------------------------------------- /mods/d2/weapons/missiles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/weapons/missiles.yaml -------------------------------------------------------------------------------- /mods/d2/weapons/other.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/weapons/other.yaml -------------------------------------------------------------------------------- /mods/d2/weapons/smallguns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/weapons/smallguns.yaml -------------------------------------------------------------------------------- /mods/d2/weapons/spicebloom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/weapons/spicebloom.yaml -------------------------------------------------------------------------------- /mods/d2/weapons/squads.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/mods/d2/weapons/squads.yaml -------------------------------------------------------------------------------- /omnisharp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/omnisharp.json -------------------------------------------------------------------------------- /packaging/artwork/icon_1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/packaging/artwork/icon_1024x1024.png -------------------------------------------------------------------------------- /packaging/artwork/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/packaging/artwork/icon_128x128.png -------------------------------------------------------------------------------- /packaging/artwork/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/packaging/artwork/icon_16x16.png -------------------------------------------------------------------------------- /packaging/artwork/icon_24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/packaging/artwork/icon_24x24.png -------------------------------------------------------------------------------- /packaging/artwork/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/packaging/artwork/icon_256x256.png -------------------------------------------------------------------------------- /packaging/artwork/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/packaging/artwork/icon_32x32.png -------------------------------------------------------------------------------- /packaging/artwork/icon_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/packaging/artwork/icon_48x48.png -------------------------------------------------------------------------------- /packaging/artwork/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/packaging/artwork/icon_512x512.png -------------------------------------------------------------------------------- /packaging/artwork/icon_64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/packaging/artwork/icon_64x64.png -------------------------------------------------------------------------------- /packaging/artwork/macos-background-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/packaging/artwork/macos-background-2x.png -------------------------------------------------------------------------------- /packaging/artwork/macos-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/packaging/artwork/macos-background.png -------------------------------------------------------------------------------- /packaging/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/packaging/functions.sh -------------------------------------------------------------------------------- /packaging/linux/buildpackage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/packaging/linux/buildpackage.sh -------------------------------------------------------------------------------- /packaging/macos/buildpackage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/packaging/macos/buildpackage.sh -------------------------------------------------------------------------------- /packaging/package-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/packaging/package-all.sh -------------------------------------------------------------------------------- /packaging/windows/buildpackage.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/packaging/windows/buildpackage.nsi -------------------------------------------------------------------------------- /packaging/windows/buildpackage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/packaging/windows/buildpackage.sh -------------------------------------------------------------------------------- /utility.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/utility.cmd -------------------------------------------------------------------------------- /utility.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenRA/d2/HEAD/utility.sh --------------------------------------------------------------------------------