├── .gitignore ├── LICENSE.md ├── README.md ├── VRADFix.sln └── VRADFix ├── App.config ├── Bsp.cs ├── ColorRGBExp32.cs ├── Dface_t.cs ├── Face.cs ├── Form1.Designer.cs ├── Form1.cs ├── Main.Designer.cs ├── Main.cs ├── Main.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── VRADFix.csproj ├── VRADFix_TemporaryKey.pfx └── lightmap.ico /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fml42/sourcelightmap/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fml42/sourcelightmap/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fml42/sourcelightmap/HEAD/README.md -------------------------------------------------------------------------------- /VRADFix.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fml42/sourcelightmap/HEAD/VRADFix.sln -------------------------------------------------------------------------------- /VRADFix/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fml42/sourcelightmap/HEAD/VRADFix/App.config -------------------------------------------------------------------------------- /VRADFix/Bsp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fml42/sourcelightmap/HEAD/VRADFix/Bsp.cs -------------------------------------------------------------------------------- /VRADFix/ColorRGBExp32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fml42/sourcelightmap/HEAD/VRADFix/ColorRGBExp32.cs -------------------------------------------------------------------------------- /VRADFix/Dface_t.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fml42/sourcelightmap/HEAD/VRADFix/Dface_t.cs -------------------------------------------------------------------------------- /VRADFix/Face.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fml42/sourcelightmap/HEAD/VRADFix/Face.cs -------------------------------------------------------------------------------- /VRADFix/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fml42/sourcelightmap/HEAD/VRADFix/Form1.Designer.cs -------------------------------------------------------------------------------- /VRADFix/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fml42/sourcelightmap/HEAD/VRADFix/Form1.cs -------------------------------------------------------------------------------- /VRADFix/Main.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fml42/sourcelightmap/HEAD/VRADFix/Main.Designer.cs -------------------------------------------------------------------------------- /VRADFix/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fml42/sourcelightmap/HEAD/VRADFix/Main.cs -------------------------------------------------------------------------------- /VRADFix/Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fml42/sourcelightmap/HEAD/VRADFix/Main.resx -------------------------------------------------------------------------------- /VRADFix/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fml42/sourcelightmap/HEAD/VRADFix/Program.cs -------------------------------------------------------------------------------- /VRADFix/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fml42/sourcelightmap/HEAD/VRADFix/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /VRADFix/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fml42/sourcelightmap/HEAD/VRADFix/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /VRADFix/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fml42/sourcelightmap/HEAD/VRADFix/Properties/Resources.resx -------------------------------------------------------------------------------- /VRADFix/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fml42/sourcelightmap/HEAD/VRADFix/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /VRADFix/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fml42/sourcelightmap/HEAD/VRADFix/Properties/Settings.settings -------------------------------------------------------------------------------- /VRADFix/VRADFix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fml42/sourcelightmap/HEAD/VRADFix/VRADFix.csproj -------------------------------------------------------------------------------- /VRADFix/VRADFix_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fml42/sourcelightmap/HEAD/VRADFix/VRADFix_TemporaryKey.pfx -------------------------------------------------------------------------------- /VRADFix/lightmap.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fml42/sourcelightmap/HEAD/VRADFix/lightmap.ico --------------------------------------------------------------------------------