├── .gitignore ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs └── Resources.resx ├── README.md ├── Resources └── dropdown ├── ServerDef.cs ├── VRCCustomServer.cs └── VRCCustomServer.csproj /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | obj/ 3 | -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slaynash/VRCCustomServer/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slaynash/VRCCustomServer/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slaynash/VRCCustomServer/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slaynash/VRCCustomServer/HEAD/README.md -------------------------------------------------------------------------------- /Resources/dropdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slaynash/VRCCustomServer/HEAD/Resources/dropdown -------------------------------------------------------------------------------- /ServerDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slaynash/VRCCustomServer/HEAD/ServerDef.cs -------------------------------------------------------------------------------- /VRCCustomServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slaynash/VRCCustomServer/HEAD/VRCCustomServer.cs -------------------------------------------------------------------------------- /VRCCustomServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slaynash/VRCCustomServer/HEAD/VRCCustomServer.csproj --------------------------------------------------------------------------------