├── .gitignore ├── LICENSE ├── README.md └── Voice Chat ├── .classpath ├── .gitignore ├── .project ├── .settings └── org.eclipse.buildship.core.prefs ├── build.gradle ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src └── main └── java └── co └── uk └── epucguru ├── classes ├── VoiceChatClient.java ├── VoiceChatServer.java └── VoiceNetData.java └── example └── TestGame.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/VoiceChat/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/VoiceChat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/VoiceChat/HEAD/README.md -------------------------------------------------------------------------------- /Voice Chat/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/VoiceChat/HEAD/Voice Chat/.classpath -------------------------------------------------------------------------------- /Voice Chat/.gitignore: -------------------------------------------------------------------------------- 1 | /.gradle/ 2 | /bin/ 3 | -------------------------------------------------------------------------------- /Voice Chat/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/VoiceChat/HEAD/Voice Chat/.project -------------------------------------------------------------------------------- /Voice Chat/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/VoiceChat/HEAD/Voice Chat/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /Voice Chat/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/VoiceChat/HEAD/Voice Chat/build.gradle -------------------------------------------------------------------------------- /Voice Chat/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/VoiceChat/HEAD/Voice Chat/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Voice Chat/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/VoiceChat/HEAD/Voice Chat/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Voice Chat/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/VoiceChat/HEAD/Voice Chat/gradlew -------------------------------------------------------------------------------- /Voice Chat/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/VoiceChat/HEAD/Voice Chat/gradlew.bat -------------------------------------------------------------------------------- /Voice Chat/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/VoiceChat/HEAD/Voice Chat/settings.gradle -------------------------------------------------------------------------------- /Voice Chat/src/main/java/co/uk/epucguru/classes/VoiceChatClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/VoiceChat/HEAD/Voice Chat/src/main/java/co/uk/epucguru/classes/VoiceChatClient.java -------------------------------------------------------------------------------- /Voice Chat/src/main/java/co/uk/epucguru/classes/VoiceChatServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/VoiceChat/HEAD/Voice Chat/src/main/java/co/uk/epucguru/classes/VoiceChatServer.java -------------------------------------------------------------------------------- /Voice Chat/src/main/java/co/uk/epucguru/classes/VoiceNetData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/VoiceChat/HEAD/Voice Chat/src/main/java/co/uk/epucguru/classes/VoiceNetData.java -------------------------------------------------------------------------------- /Voice Chat/src/main/java/co/uk/epucguru/example/TestGame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epicguru/VoiceChat/HEAD/Voice Chat/src/main/java/co/uk/epucguru/example/TestGame.java --------------------------------------------------------------------------------