gitextract_ab7_c2tl/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── ci.yml │ └── packaging.yml ├── .gitignore ├── .vscode/ │ ├── extensions.json │ ├── launch.json │ └── tasks.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── COPYING ├── ExampleMod.sln ├── Makefile ├── OpenRA.Mods.Example/ │ ├── OpenRA.Mods.Example.csproj │ ├── Properties/ │ │ └── launchSettings.json │ └── Rendering/ │ ├── ColorPickerColorShift.cs │ └── PlayerColorShift.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/ │ └── example/ │ ├── chrome/ │ │ ├── chrome.yaml │ │ ├── ingame-observer.yaml │ │ └── layouts/ │ │ └── ingame-player.yaml │ ├── cursors/ │ │ └── default.yaml │ ├── fluent/ │ │ ├── chrome.ftl │ │ ├── mod.ftl │ │ └── rules.ftl │ ├── maps/ │ │ ├── example/ │ │ │ └── map.yaml │ │ └── shellmap/ │ │ └── map.yaml │ ├── missions/ │ │ └── example.yaml │ ├── mod.chrome.yaml │ ├── mod.content.yaml │ ├── mod.yaml │ ├── music/ │ │ └── example.yaml │ ├── notifications/ │ │ └── example.yaml │ ├── rules/ │ │ ├── example.yaml │ │ ├── mpspawn.yaml │ │ ├── palettes.yaml │ │ ├── player.yaml │ │ └── world.yaml │ ├── sequences/ │ │ ├── example.yaml │ │ ├── mapeditor.yaml │ │ └── mpspawn.yaml │ ├── tilesets/ │ │ └── example.yaml │ ├── voices/ │ │ └── example.yaml │ └── weapons/ │ └── example.yaml ├── omnisharp.json ├── packaging/ │ ├── functions.sh │ ├── linux/ │ │ └── buildpackage.sh │ ├── macos/ │ │ └── buildpackage.sh │ ├── package-all.sh │ └── windows/ │ ├── buildpackage.nsi │ └── buildpackage.sh ├── utility.cmd └── utility.sh