├── .gitignore ├── CrapChat2.sln ├── CrapChat2 ├── App.config ├── Audio.cs ├── CClient.cs ├── CServer.cs ├── CrapChat2.csproj ├── FoundServer.cs ├── Icon.ico ├── LICENSE.md ├── Main.Designer.cs ├── Main.cs ├── Main.resx ├── Net.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── README.md └── packages.config ├── Guide Images ├── Base.png ├── Host Port and Name.png ├── Name.png └── Port and Refresh.png ├── LICENSE.md └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/CChat2/HEAD/.gitignore -------------------------------------------------------------------------------- /CrapChat2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/CChat2/HEAD/CrapChat2.sln -------------------------------------------------------------------------------- /CrapChat2/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/CChat2/HEAD/CrapChat2/App.config -------------------------------------------------------------------------------- /CrapChat2/Audio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/CChat2/HEAD/CrapChat2/Audio.cs -------------------------------------------------------------------------------- /CrapChat2/CClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/CChat2/HEAD/CrapChat2/CClient.cs -------------------------------------------------------------------------------- /CrapChat2/CServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/CChat2/HEAD/CrapChat2/CServer.cs -------------------------------------------------------------------------------- /CrapChat2/CrapChat2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/CChat2/HEAD/CrapChat2/CrapChat2.csproj -------------------------------------------------------------------------------- /CrapChat2/FoundServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/CChat2/HEAD/CrapChat2/FoundServer.cs -------------------------------------------------------------------------------- /CrapChat2/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/CChat2/HEAD/CrapChat2/Icon.ico -------------------------------------------------------------------------------- /CrapChat2/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/CChat2/HEAD/CrapChat2/LICENSE.md -------------------------------------------------------------------------------- /CrapChat2/Main.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/CChat2/HEAD/CrapChat2/Main.Designer.cs -------------------------------------------------------------------------------- /CrapChat2/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/CChat2/HEAD/CrapChat2/Main.cs -------------------------------------------------------------------------------- /CrapChat2/Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/CChat2/HEAD/CrapChat2/Main.resx -------------------------------------------------------------------------------- /CrapChat2/Net.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/CChat2/HEAD/CrapChat2/Net.cs -------------------------------------------------------------------------------- /CrapChat2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/CChat2/HEAD/CrapChat2/Program.cs -------------------------------------------------------------------------------- /CrapChat2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/CChat2/HEAD/CrapChat2/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CrapChat2/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/CChat2/HEAD/CrapChat2/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CrapChat2/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/CChat2/HEAD/CrapChat2/Properties/Resources.resx -------------------------------------------------------------------------------- /CrapChat2/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/CChat2/HEAD/CrapChat2/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CrapChat2/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/CChat2/HEAD/CrapChat2/Properties/Settings.settings -------------------------------------------------------------------------------- /CrapChat2/README.md: -------------------------------------------------------------------------------- 1 | CrapChat2 2 | -------------------------------------------------------------------------------- /CrapChat2/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/CChat2/HEAD/CrapChat2/packages.config -------------------------------------------------------------------------------- /Guide Images/Base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/CChat2/HEAD/Guide Images/Base.png -------------------------------------------------------------------------------- /Guide Images/Host Port and Name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/CChat2/HEAD/Guide Images/Host Port and Name.png -------------------------------------------------------------------------------- /Guide Images/Name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/CChat2/HEAD/Guide Images/Name.png -------------------------------------------------------------------------------- /Guide Images/Port and Refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/CChat2/HEAD/Guide Images/Port and Refresh.png -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/CChat2/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/CChat2/HEAD/README.md --------------------------------------------------------------------------------