├── .gitattributes ├── .gitignore ├── 1.0 └── Assemblies │ ├── 0Harmony.dll │ └── WhiteOnly.dll ├── 1.1 └── Assemblies │ ├── 0Harmony.dll │ └── WhiteOnly.dll ├── 1.2 └── Assemblies │ ├── 0Harmony.dll │ └── WhiteOnly.dll ├── 1.3 └── Assemblies │ ├── 0Harmony.dll │ └── WhiteOnly.dll ├── 1.4 └── Assemblies │ ├── 0Harmony.dll │ └── WhiteOnly.dll ├── 1.5 └── Assemblies │ ├── 0Harmony.dll │ └── WhiteOnly.dll ├── About ├── About.xml ├── PublishedFileId.txt ├── preview.png └── preview.psd ├── LICENSE ├── Languages └── English │ └── Keyed │ └── WhiteOnly.xml ├── README.md ├── Source ├── AssemblyInfo.cs ├── Patches │ └── PatchPawnSkinColors.cs ├── PawnGraphicRenderer.cs ├── SkincolorWidgetUtil.cs ├── WhiteOnly.cs ├── WhiteOnly.csproj ├── WhiteOnlySettings.cs └── packages.config └── WhiteOnly.sln /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AUTOMATIC1111/WhiteOnly/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AUTOMATIC1111/WhiteOnly/HEAD/.gitignore -------------------------------------------------------------------------------- /1.0/Assemblies/0Harmony.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AUTOMATIC1111/WhiteOnly/HEAD/1.0/Assemblies/0Harmony.dll -------------------------------------------------------------------------------- /1.0/Assemblies/WhiteOnly.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AUTOMATIC1111/WhiteOnly/HEAD/1.0/Assemblies/WhiteOnly.dll -------------------------------------------------------------------------------- /1.1/Assemblies/0Harmony.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AUTOMATIC1111/WhiteOnly/HEAD/1.1/Assemblies/0Harmony.dll -------------------------------------------------------------------------------- /1.1/Assemblies/WhiteOnly.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AUTOMATIC1111/WhiteOnly/HEAD/1.1/Assemblies/WhiteOnly.dll -------------------------------------------------------------------------------- /1.2/Assemblies/0Harmony.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AUTOMATIC1111/WhiteOnly/HEAD/1.2/Assemblies/0Harmony.dll -------------------------------------------------------------------------------- /1.2/Assemblies/WhiteOnly.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AUTOMATIC1111/WhiteOnly/HEAD/1.2/Assemblies/WhiteOnly.dll -------------------------------------------------------------------------------- /1.3/Assemblies/0Harmony.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AUTOMATIC1111/WhiteOnly/HEAD/1.3/Assemblies/0Harmony.dll -------------------------------------------------------------------------------- /1.3/Assemblies/WhiteOnly.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AUTOMATIC1111/WhiteOnly/HEAD/1.3/Assemblies/WhiteOnly.dll -------------------------------------------------------------------------------- /1.4/Assemblies/0Harmony.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AUTOMATIC1111/WhiteOnly/HEAD/1.4/Assemblies/0Harmony.dll -------------------------------------------------------------------------------- /1.4/Assemblies/WhiteOnly.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AUTOMATIC1111/WhiteOnly/HEAD/1.4/Assemblies/WhiteOnly.dll -------------------------------------------------------------------------------- /1.5/Assemblies/0Harmony.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AUTOMATIC1111/WhiteOnly/HEAD/1.5/Assemblies/0Harmony.dll -------------------------------------------------------------------------------- /1.5/Assemblies/WhiteOnly.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AUTOMATIC1111/WhiteOnly/HEAD/1.5/Assemblies/WhiteOnly.dll -------------------------------------------------------------------------------- /About/About.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AUTOMATIC1111/WhiteOnly/HEAD/About/About.xml -------------------------------------------------------------------------------- /About/PublishedFileId.txt: -------------------------------------------------------------------------------- 1 | 1518726337 -------------------------------------------------------------------------------- /About/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AUTOMATIC1111/WhiteOnly/HEAD/About/preview.png -------------------------------------------------------------------------------- /About/preview.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AUTOMATIC1111/WhiteOnly/HEAD/About/preview.psd -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AUTOMATIC1111/WhiteOnly/HEAD/LICENSE -------------------------------------------------------------------------------- /Languages/English/Keyed/WhiteOnly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AUTOMATIC1111/WhiteOnly/HEAD/Languages/English/Keyed/WhiteOnly.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AUTOMATIC1111/WhiteOnly/HEAD/README.md -------------------------------------------------------------------------------- /Source/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AUTOMATIC1111/WhiteOnly/HEAD/Source/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Patches/PatchPawnSkinColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AUTOMATIC1111/WhiteOnly/HEAD/Source/Patches/PatchPawnSkinColors.cs -------------------------------------------------------------------------------- /Source/PawnGraphicRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AUTOMATIC1111/WhiteOnly/HEAD/Source/PawnGraphicRenderer.cs -------------------------------------------------------------------------------- /Source/SkincolorWidgetUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AUTOMATIC1111/WhiteOnly/HEAD/Source/SkincolorWidgetUtil.cs -------------------------------------------------------------------------------- /Source/WhiteOnly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AUTOMATIC1111/WhiteOnly/HEAD/Source/WhiteOnly.cs -------------------------------------------------------------------------------- /Source/WhiteOnly.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AUTOMATIC1111/WhiteOnly/HEAD/Source/WhiteOnly.csproj -------------------------------------------------------------------------------- /Source/WhiteOnlySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AUTOMATIC1111/WhiteOnly/HEAD/Source/WhiteOnlySettings.cs -------------------------------------------------------------------------------- /Source/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AUTOMATIC1111/WhiteOnly/HEAD/Source/packages.config -------------------------------------------------------------------------------- /WhiteOnly.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AUTOMATIC1111/WhiteOnly/HEAD/WhiteOnly.sln --------------------------------------------------------------------------------