├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── suggestion.md └── workflows │ ├── build.yml │ ├── publish_docs.yml │ └── repository_dispatch_docker.yaml ├── .gitignore ├── .idea └── .idea.VoiceCraftProximityChat │ └── .idea │ ├── AndroidProjectSystem.xml │ └── deploymentTargetSelector.xml ├── Directory.Packages.props ├── Images ├── MainPage.png ├── MainPageAndroid.png ├── Screenshot from 2025-04-07 15-04-30.png ├── Screenshot from 2025-04-07 15-05-05.png ├── Screenshot from 2025-04-07 15-06-21.png └── Screenshot from 2025-04-07 15-15-16.png ├── LICENSE.md ├── README.md ├── Tooling ├── README.md ├── adbStarter.sh └── adbStopper.sh ├── VoiceCraft.Client ├── VoiceCraft.Client.Android │ ├── Audio │ │ ├── AudioPlayer.cs │ │ ├── AudioRecorder.cs │ │ ├── NativeAudioService.cs │ │ ├── NativeAutomaticGainController.cs │ │ ├── NativeDenoiser.cs │ │ ├── NativeEchoCanceler.cs │ │ ├── SpeexDspAutomaticGainController.cs │ │ ├── SpeexDspDenoiser.cs │ │ └── SpeexDspEchoCanceler.cs │ ├── Background │ │ ├── AndroidBackgroundService.cs │ │ └── NativeBackgroundService.cs │ ├── Icon.png │ ├── MainActivity.cs │ ├── NativeHotKeyService.cs │ ├── NativeStorageService.cs │ ├── Properties │ │ └── AndroidManifest.xml │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── drawable-night-v31 │ │ │ └── avalonia_anim.xml │ │ ├── drawable-v31 │ │ │ └── avalonia_anim.xml │ │ ├── drawable │ │ │ └── splash_screen.xml │ │ ├── values-night │ │ │ └── colors.xml │ │ ├── values-v31 │ │ │ └── styles.xml │ │ └── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ └── VoiceCraft.Client.Android.csproj ├── VoiceCraft.Client.Browser │ ├── Audio │ │ ├── AudioPlayer.cs │ │ ├── AudioRecorder.cs │ │ └── NativeAudioService.cs │ ├── NativeBackgroundService.cs │ ├── NativeStorageService.cs │ ├── Permissions │ │ └── Microphone.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── launchSettings.json │ ├── VoiceCraft.Client.Browser.csproj │ ├── opus.a │ ├── runtimeconfig.template.json │ └── wwwroot │ │ ├── Exports │ │ ├── audio.js │ │ ├── microphonePermission.js │ │ └── storage.js │ │ ├── app.css │ │ ├── favicon.ico │ │ ├── index.html │ │ └── main.js ├── VoiceCraft.Client.Linux │ ├── Audio │ │ ├── AudioPlayer.cs │ │ ├── AudioRecorder.cs │ │ ├── NativeAudioService.cs │ │ ├── SpeexDspAutomaticGainController.cs │ │ ├── SpeexDspDenoiser.cs │ │ └── SpeexDspEchoCanceler.cs │ ├── NativeBackgroundService.cs │ ├── NativeHotKeyService.cs │ ├── NativeStorageService.cs │ ├── Permissions │ │ └── Microphone.cs │ ├── Program.cs │ └── VoiceCraft.Client.Linux.csproj ├── VoiceCraft.Client.MacOS │ ├── Program.cs │ └── VoiceCraft.Client.MacOS.csproj ├── VoiceCraft.Client.Windows │ ├── Audio │ │ ├── AudioPlayer.cs │ │ ├── AudioRecorder.cs │ │ ├── NativeAudioService.cs │ │ ├── SpeexDspAutomaticGainController.cs │ │ ├── SpeexDspDenoiser.cs │ │ └── SpeexDspEchoCanceler.cs │ ├── NativeBackgroundService.cs │ ├── NativeHotKeyService.cs │ ├── NativeStorageService.cs │ ├── Permissions │ │ └── Microphone.cs │ ├── Program.cs │ ├── VoiceCraft.Client.Windows.csproj │ └── app.manifest ├── VoiceCraft.Client.iOS │ ├── AppDelegate.cs │ ├── Entitlements.plist │ ├── Info.plist │ ├── Main.cs │ ├── Resources │ │ └── LaunchScreen.xib │ └── VoiceCraft.Client.iOS.csproj └── VoiceCraft.Client │ ├── App.axaml │ ├── App.axaml.cs │ ├── Assets │ ├── Contributors │ │ ├── minionToby.png │ │ ├── sinePlushie.png │ │ ├── unny.png │ │ └── vc.png │ ├── avalonia-logo.ico │ ├── bgdark.png │ ├── bglight.png │ ├── blocksensespawn.jpg │ ├── lethalCraft.png │ ├── sinesmpbase.png │ └── vc.png │ ├── Locales │ ├── EmbededJsonLocaliser.cs │ ├── Locales.cs │ ├── LocalizeExtension.cs │ ├── en-US.json │ ├── nl-NL.json │ ├── zh-CHS.json │ └── zh-CHT.json │ ├── Models │ ├── EditServerNavigationData.cs │ ├── SelectedServerNavigationData.cs │ ├── Settings │ │ ├── AudioSettings.cs │ │ ├── LocaleSettings.cs │ │ ├── NetworkSettings.cs │ │ ├── NotificationSettings.cs │ │ ├── ServersSettings.cs │ │ ├── ThemeSettings.cs │ │ ├── UserSetting.cs │ │ └── UserSettings.cs │ └── VoiceNavigationData.cs │ ├── Network │ ├── JitterBuffer.cs │ ├── ServerInfo.cs │ ├── Systems │ │ └── AudioSystem.cs │ ├── VoiceCraftClient.cs │ ├── VoiceCraftClientEntity.cs │ └── VoiceCraftClientNetworkEntity.cs │ ├── Processes │ └── VoipBackgroundProcess.cs │ ├── Services │ ├── AudioService.cs │ ├── BackgroundService.cs │ ├── DiscordRpcService.cs │ ├── HotKeyService.cs │ ├── LogService.cs │ ├── NavigationService.cs │ ├── NotificationService.cs │ ├── PermissionsService.cs │ ├── SettingsService.cs │ ├── StorageService.cs │ ├── ThemesService.cs │ └── ViewLocatorService.cs │ ├── Themes │ ├── Dark │ │ ├── Colors.axaml │ │ ├── Colors.axaml.cs │ │ ├── Resources.axaml │ │ ├── Resources.axaml.cs │ │ ├── Styles.axaml │ │ └── Styles.axaml.cs │ ├── DarkGreen │ │ ├── Colors.axaml │ │ ├── Colors.axaml.cs │ │ ├── Resources.axaml │ │ ├── Resources.axaml.cs │ │ ├── Styles.axaml │ │ └── Styles.axaml.cs │ ├── DarkPurple │ │ ├── Colors.axaml │ │ ├── Colors.axaml.cs │ │ ├── Resources.axaml │ │ ├── Resources.axaml.cs │ │ ├── Styles.axaml │ │ └── Styles.axaml.cs │ └── Light │ │ ├── Colors.axaml │ │ ├── Colors.axaml.cs │ │ ├── Resources.axaml │ │ ├── Resources.axaml.cs │ │ ├── Styles.axaml │ │ └── Styles.axaml.cs │ ├── ViewModels │ ├── AddServerViewModel.cs │ ├── Data │ │ ├── AudioSettingsViewModel.cs │ │ ├── ContributorViewModel.cs │ │ ├── EntityViewModel.cs │ │ ├── HotKeyActionViewModel.cs │ │ ├── LocaleSettingsViewModel.cs │ │ ├── NetworkSettingsViewModel.cs │ │ ├── NotificationSettingsViewModel.cs │ │ ├── ServerViewModel.cs │ │ ├── ServersSettingsViewModel.cs │ │ └── ThemeSettingsViewModel.cs │ ├── EditServerViewModel.cs │ ├── ErrorViewModel.cs │ ├── Home │ │ ├── CrashLogViewModel.cs │ │ ├── CreditsViewModel.cs │ │ ├── ServersViewModel.cs │ │ └── SettingsViewModel.cs │ ├── HomeViewModel.cs │ ├── MainViewModel.cs │ ├── SelectedServerViewModel.cs │ ├── Settings │ │ ├── AdvancedSettingsViewModel.cs │ │ ├── AppearanceSettingsViewModel.cs │ │ ├── AudioSettingsViewModel.cs │ │ ├── GeneralSettingsViewModel.cs │ │ ├── HotKeySettingsViewModel.cs │ │ └── NetworkSettingsViewModel.cs │ ├── ViewModelBase.cs │ └── VoiceViewModel.cs │ ├── Views │ ├── AddServerView.axaml │ ├── AddServerView.axaml.cs │ ├── EditServerView.axaml │ ├── EditServerView.axaml.cs │ ├── Error │ │ ├── ErrorMainWindow.axaml │ │ ├── ErrorMainWindow.axaml.cs │ │ ├── ErrorView.axaml │ │ └── ErrorView.axaml.cs │ ├── Home │ │ ├── CrashLogView.axaml │ │ ├── CrashLogView.axaml.cs │ │ ├── CreditsView.axaml │ │ ├── CreditsView.axaml.cs │ │ ├── ServersView.axaml │ │ ├── ServersView.axaml.cs │ │ ├── SettingsView.axaml │ │ └── SettingsView.axaml.cs │ ├── HomeView.axaml │ ├── HomeView.axaml.cs │ ├── MainView.axaml │ ├── MainView.axaml.cs │ ├── MainWindow.axaml │ ├── MainWindow.axaml.cs │ ├── SelectedServerView.axaml │ ├── SelectedServerView.axaml.cs │ ├── Settings │ │ ├── AdvancedSettingsView.axaml │ │ ├── AdvancedSettingsView.axaml.cs │ │ ├── AppearanceSettingsView.axaml │ │ ├── AppearanceSettingsView.axaml.cs │ │ ├── AudioSettingsView.axaml │ │ ├── AudioSettingsView.axaml.cs │ │ ├── GeneralSettingsView.axaml │ │ ├── GeneralSettingsView.axaml.cs │ │ ├── HotKeySettingsView.axaml │ │ ├── HotKeySettingsView.axaml.cs │ │ ├── NetworkSettingsView.axaml │ │ └── NetworkSettingsView.axaml.cs │ ├── VoiceView.axaml │ └── VoiceView.axaml.cs │ └── VoiceCraft.Client.csproj ├── VoiceCraft.Core ├── Audio │ ├── BufferedAudioProvider16.cs │ ├── CircularBuffer.cs │ ├── Effects │ │ ├── DirectionalEffect.cs │ │ ├── EchoEffect.cs │ │ ├── ProximityEchoEffect.cs │ │ ├── ProximityEffect.cs │ │ └── VisibilityEffect.cs │ ├── FractionalDelayLine.cs │ └── SineWaveGenerator16.cs ├── BackgroundProcess.cs ├── Constants.cs ├── Enums.cs ├── Extensions.cs ├── Interfaces │ ├── IAudioEffect.cs │ ├── IAudioPlayer.cs │ ├── IAudioRecorder.cs │ ├── IAutomaticGainController.cs │ ├── IBackgroundProcess.cs │ ├── IBaseLocalizer.cs │ ├── IDenoiser.cs │ ├── IEchoCanceler.cs │ ├── IResettable.cs │ └── IVisible.cs ├── Locales │ └── Localizer.cs ├── Network │ ├── McApiNetPeer.cs │ ├── McApiPackets │ │ ├── Event │ │ │ ├── McApiOnDeafenUpdatedPacket.cs │ │ │ ├── McApiOnEffectBitmaskUpdatedPacket.cs │ │ │ ├── McApiOnEntityAudioReceivedPacket.cs │ │ │ ├── McApiOnEntityCaveFactorUpdatedPacket.cs │ │ │ ├── McApiOnEntityCreatedPacket.cs │ │ │ ├── McApiOnEntityDestroyedPacket.cs │ │ │ ├── McApiOnEntityMuffleFactorUpdatedPacket.cs │ │ │ ├── McApiOnEntityVisibilityUpdatedPacket.cs │ │ │ ├── McApiOnListenBitmaskUpdatedPacket.cs │ │ │ ├── McApiOnMuteUpdatedPacket.cs │ │ │ ├── McApiOnNameUpdatedPacket.cs │ │ │ ├── McApiOnNetworkEntityCreatedPacket.cs │ │ │ ├── McApiOnPositionUpdatedPacket.cs │ │ │ ├── McApiOnRotationUpdatedPacket.cs │ │ │ ├── McApiOnTalkBitmaskUpdatedPacket.cs │ │ │ └── McApiOnWorldIdUpdatedPacket.cs │ │ ├── IMcApiPacket.cs │ │ ├── IMcApiRIdPacket.cs │ │ ├── Request │ │ │ ├── McApiLoginRequestPacket.cs │ │ │ ├── McApiLogoutRequestPacket.cs │ │ │ ├── McApiPingRequestPacket.cs │ │ │ ├── McApiSetEntityCaveFactorRequestPacket.cs │ │ │ ├── McApiSetEntityDescriptionRequestPacket.cs │ │ │ ├── McApiSetEntityEffectBitmaskRequestPacket.cs │ │ │ ├── McApiSetEntityListenBitmaskRequestPacket.cs │ │ │ ├── McApiSetEntityMuffleFactorRequestPacket.cs │ │ │ ├── McApiSetEntityNameRequestPacket.cs │ │ │ ├── McApiSetEntityPositionRequestPacket.cs │ │ │ ├── McApiSetEntityRotationRequestPacket.cs │ │ │ ├── McApiSetEntityTalkBitmaskRequestPacket.cs │ │ │ ├── McApiSetEntityTitleRequestPacket.cs │ │ │ └── McApiSetEntityWorldIdRequestPacket.cs │ │ └── Response │ │ │ ├── McApiAcceptResponsePacket.cs │ │ │ ├── McApiDenyResponsePacket.cs │ │ │ └── McApiPingResponsePacket.cs │ ├── McWssPackets │ │ ├── McWssCommandRequest.cs │ │ ├── McWssCommandResponse.cs │ │ ├── McWssGenericPacket.cs │ │ └── McWssPacket.cs │ └── VcPackets │ │ ├── Event │ │ ├── VcOnEffectUpdatedPacket.cs │ │ ├── VcOnEntityAudioReceivedPacket.cs │ │ ├── VcOnEntityCaveFactorUpdatedPacket.cs │ │ ├── VcOnEntityCreatedPacket.cs │ │ ├── VcOnEntityDeafenUpdatedPacket.cs │ │ ├── VcOnEntityDestroyedPacket.cs │ │ ├── VcOnEntityEffectBitmaskUpdatedPacket.cs │ │ ├── VcOnEntityListenBitmaskUpdatedPacket.cs │ │ ├── VcOnEntityMuffleFactorUpdatedPacket.cs │ │ ├── VcOnEntityMuteUpdatedPacket.cs │ │ ├── VcOnEntityNameUpdatedPacket.cs │ │ ├── VcOnEntityPositionUpdatedPacket.cs │ │ ├── VcOnEntityRotationUpdatedPacket.cs │ │ ├── VcOnEntityTalkBitmaskUpdatedPacket.cs │ │ └── VcOnNetworkEntityCreatedPacket.cs │ │ ├── IVoiceCraftPacket.cs │ │ ├── IVoiceCraftRIdPacket.cs │ │ ├── Request │ │ ├── VcAudioRequestPacket.cs │ │ ├── VcInfoRequestPacket.cs │ │ ├── VcLoginRequestPacket.cs │ │ ├── VcLogoutRequestPacket.cs │ │ ├── VcSetCaveFactorRequestPacket.cs │ │ ├── VcSetDeafenRequestPacket.cs │ │ ├── VcSetDescriptionRequestPacket.cs │ │ ├── VcSetEffectBitmaskRequestPacket.cs │ │ ├── VcSetEntityVisibilityRequestPacket.cs │ │ ├── VcSetListenBitmaskRequestPacket.cs │ │ ├── VcSetMuffleFactorRequestPacket.cs │ │ ├── VcSetMuteRequestPacket.cs │ │ ├── VcSetNameRequestPacket.cs │ │ ├── VcSetPositionRequestPacket.cs │ │ ├── VcSetRotationRequestPacket.cs │ │ ├── VcSetTalkBitmaskRequestPacket.cs │ │ └── VcSetTitleRequestPacket.cs │ │ └── Response │ │ ├── VcAcceptResponsePacket.cs │ │ ├── VcDenyResponsePacket.cs │ │ └── VcInfoResponsePacket.cs ├── PacketPool.cs ├── VoiceCraft.Core.csproj ├── World │ ├── VoiceCraftEntity.cs │ ├── VoiceCraftNetworkEntity.cs │ └── VoiceCraftWorld.cs └── Z85.cs ├── VoiceCraft.Docs ├── docfx.json ├── docfxServe.sh ├── faq.md ├── guides │ ├── client_installation │ │ ├── android.md │ │ ├── ios.md │ │ ├── linux.md │ │ ├── macos.md │ │ ├── toc.yml │ │ └── windows.md │ ├── introduction.md │ ├── server_installation │ │ ├── android.md │ │ ├── ios.md │ │ ├── linux.md │ │ ├── macos.md │ │ ├── toc.yml │ │ └── windows.md │ └── toc.yml ├── images │ ├── MainPage.png │ ├── MainPageAndroid.png │ ├── ServerPage.png │ ├── VC.png │ └── logo.png ├── index.md ├── toc.yml └── v1.0.7 │ ├── client_installation │ ├── android.md │ ├── ios.md │ ├── linux.md │ ├── macos.md │ ├── toc.yml │ └── windows.md │ ├── introduction.md │ ├── mccomm_protocol.md │ ├── server_installation │ ├── android.md │ ├── ios.md │ ├── linux.md │ ├── macos.md │ ├── toc.yml │ └── windows.md │ ├── server_properties.md │ ├── toc.yml │ └── voicecraft_protocol.md ├── VoiceCraft.Server ├── App.cs ├── Commands │ ├── ListCommand.cs │ ├── SetDescriptionCommand.cs │ ├── SetNameCommand.cs │ ├── SetPositionCommand.cs │ ├── SetTitleCommand.cs │ ├── SetWorldIdCommand.cs │ └── StopCommand.cs ├── Config │ ├── McHttpConfig.cs │ ├── McWssConfig.cs │ └── VoiceCraftConfig.cs ├── Locales │ ├── EmbededJsonLocaliser.cs │ ├── Locales.cs │ ├── en-US.json │ ├── nl-NL.json │ ├── zh-CN.json │ └── zh-TW.json ├── Program.cs ├── ServerProperties.cs ├── Servers │ ├── McWssServer.cs │ └── VoiceCraftServer.cs ├── Systems │ ├── AudioEffectSystem.cs │ ├── EventHandlerSystem.cs │ └── VisibilitySystem.cs └── VoiceCraft.Server.csproj ├── VoiceCraft.sln └── global.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/suggestion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/.github/ISSUE_TEMPLATE/suggestion.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/publish_docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/.github/workflows/publish_docs.yml -------------------------------------------------------------------------------- /.github/workflows/repository_dispatch_docker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/.github/workflows/repository_dispatch_docker.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.VoiceCraftProximityChat/.idea/AndroidProjectSystem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/.idea/.idea.VoiceCraftProximityChat/.idea/AndroidProjectSystem.xml -------------------------------------------------------------------------------- /.idea/.idea.VoiceCraftProximityChat/.idea/deploymentTargetSelector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/.idea/.idea.VoiceCraftProximityChat/.idea/deploymentTargetSelector.xml -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /Images/MainPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/Images/MainPage.png -------------------------------------------------------------------------------- /Images/MainPageAndroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/Images/MainPageAndroid.png -------------------------------------------------------------------------------- /Images/Screenshot from 2025-04-07 15-04-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/Images/Screenshot from 2025-04-07 15-04-30.png -------------------------------------------------------------------------------- /Images/Screenshot from 2025-04-07 15-05-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/Images/Screenshot from 2025-04-07 15-05-05.png -------------------------------------------------------------------------------- /Images/Screenshot from 2025-04-07 15-06-21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/Images/Screenshot from 2025-04-07 15-06-21.png -------------------------------------------------------------------------------- /Images/Screenshot from 2025-04-07 15-15-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/Images/Screenshot from 2025-04-07 15-15-16.png -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/README.md -------------------------------------------------------------------------------- /Tooling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/Tooling/README.md -------------------------------------------------------------------------------- /Tooling/adbStarter.sh: -------------------------------------------------------------------------------- 1 | sudo ~/Android/Sdk/platform-tools/adb start-server 2 | -------------------------------------------------------------------------------- /Tooling/adbStopper.sh: -------------------------------------------------------------------------------- 1 | sudo ~/Android/Sdk/platform-tools/adb kill-server 2 | -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Android/Audio/AudioPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Android/Audio/AudioPlayer.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Android/Audio/AudioRecorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Android/Audio/AudioRecorder.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Android/Audio/NativeAudioService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Android/Audio/NativeAudioService.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Android/Audio/NativeAutomaticGainController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Android/Audio/NativeAutomaticGainController.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Android/Audio/NativeDenoiser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Android/Audio/NativeDenoiser.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Android/Audio/NativeEchoCanceler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Android/Audio/NativeEchoCanceler.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Android/Audio/SpeexDspAutomaticGainController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Android/Audio/SpeexDspAutomaticGainController.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Android/Audio/SpeexDspDenoiser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Android/Audio/SpeexDspDenoiser.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Android/Audio/SpeexDspEchoCanceler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Android/Audio/SpeexDspEchoCanceler.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Android/Background/AndroidBackgroundService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Android/Background/AndroidBackgroundService.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Android/Background/NativeBackgroundService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Android/Background/NativeBackgroundService.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Android/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Android/Icon.png -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Android/MainActivity.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Android/NativeHotKeyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Android/NativeHotKeyService.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Android/NativeStorageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Android/NativeStorageService.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Android/Resources/drawable-night-v31/avalonia_anim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Android/Resources/drawable-night-v31/avalonia_anim.xml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Android/Resources/drawable-v31/avalonia_anim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Android/Resources/drawable-v31/avalonia_anim.xml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Android/Resources/drawable/splash_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Android/Resources/drawable/splash_screen.xml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Android/Resources/values-night/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Android/Resources/values-night/colors.xml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Android/Resources/values-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Android/Resources/values-v31/styles.xml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Android/VoiceCraft.Client.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Android/VoiceCraft.Client.Android.csproj -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Browser/Audio/AudioPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Browser/Audio/AudioPlayer.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Browser/Audio/AudioRecorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Browser/Audio/AudioRecorder.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Browser/Audio/NativeAudioService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Browser/Audio/NativeAudioService.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Browser/NativeBackgroundService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Browser/NativeBackgroundService.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Browser/NativeStorageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Browser/NativeStorageService.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Browser/Permissions/Microphone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Browser/Permissions/Microphone.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Browser/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Browser/Program.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Browser/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.Versioning; 2 | 3 | [assembly: SupportedOSPlatform("browser")] -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Browser/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Browser/Properties/launchSettings.json -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Browser/VoiceCraft.Client.Browser.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Browser/VoiceCraft.Client.Browser.csproj -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Browser/opus.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Browser/opus.a -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Browser/runtimeconfig.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Browser/runtimeconfig.template.json -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Browser/wwwroot/Exports/audio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Browser/wwwroot/Exports/audio.js -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Browser/wwwroot/Exports/microphonePermission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Browser/wwwroot/Exports/microphonePermission.js -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Browser/wwwroot/Exports/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Browser/wwwroot/Exports/storage.js -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Browser/wwwroot/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Browser/wwwroot/app.css -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Browser/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Browser/wwwroot/favicon.ico -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Browser/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Browser/wwwroot/index.html -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Browser/wwwroot/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Browser/wwwroot/main.js -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Linux/Audio/AudioPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Linux/Audio/AudioPlayer.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Linux/Audio/AudioRecorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Linux/Audio/AudioRecorder.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Linux/Audio/NativeAudioService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Linux/Audio/NativeAudioService.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Linux/Audio/SpeexDspAutomaticGainController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Linux/Audio/SpeexDspAutomaticGainController.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Linux/Audio/SpeexDspDenoiser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Linux/Audio/SpeexDspDenoiser.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Linux/Audio/SpeexDspEchoCanceler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Linux/Audio/SpeexDspEchoCanceler.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Linux/NativeBackgroundService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Linux/NativeBackgroundService.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Linux/NativeHotKeyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Linux/NativeHotKeyService.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Linux/NativeStorageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Linux/NativeStorageService.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Linux/Permissions/Microphone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Linux/Permissions/Microphone.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Linux/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Linux/Program.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Linux/VoiceCraft.Client.Linux.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Linux/VoiceCraft.Client.Linux.csproj -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.MacOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.MacOS/Program.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.MacOS/VoiceCraft.Client.MacOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.MacOS/VoiceCraft.Client.MacOS.csproj -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Windows/Audio/AudioPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Windows/Audio/AudioPlayer.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Windows/Audio/AudioRecorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Windows/Audio/AudioRecorder.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Windows/Audio/NativeAudioService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Windows/Audio/NativeAudioService.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Windows/Audio/SpeexDspAutomaticGainController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Windows/Audio/SpeexDspAutomaticGainController.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Windows/Audio/SpeexDspDenoiser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Windows/Audio/SpeexDspDenoiser.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Windows/Audio/SpeexDspEchoCanceler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Windows/Audio/SpeexDspEchoCanceler.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Windows/NativeBackgroundService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Windows/NativeBackgroundService.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Windows/NativeHotKeyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Windows/NativeHotKeyService.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Windows/NativeStorageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Windows/NativeStorageService.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Windows/Permissions/Microphone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Windows/Permissions/Microphone.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Windows/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Windows/Program.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Windows/VoiceCraft.Client.Windows.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Windows/VoiceCraft.Client.Windows.csproj -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.Windows/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.Windows/app.manifest -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.iOS/Entitlements.plist -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.iOS/Info.plist -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.iOS/Main.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.iOS/Resources/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.iOS/Resources/LaunchScreen.xib -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client.iOS/VoiceCraft.Client.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client.iOS/VoiceCraft.Client.iOS.csproj -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/App.axaml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/App.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/App.axaml.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Assets/Contributors/minionToby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Assets/Contributors/minionToby.png -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Assets/Contributors/sinePlushie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Assets/Contributors/sinePlushie.png -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Assets/Contributors/unny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Assets/Contributors/unny.png -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Assets/Contributors/vc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Assets/Contributors/vc.png -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Assets/avalonia-logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Assets/avalonia-logo.ico -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Assets/bgdark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Assets/bgdark.png -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Assets/bglight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Assets/bglight.png -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Assets/blocksensespawn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Assets/blocksensespawn.jpg -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Assets/lethalCraft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Assets/lethalCraft.png -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Assets/sinesmpbase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Assets/sinesmpbase.png -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Assets/vc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Assets/vc.png -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Locales/EmbededJsonLocaliser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Locales/EmbededJsonLocaliser.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Locales/Locales.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Locales/Locales.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Locales/LocalizeExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Locales/LocalizeExtension.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Locales/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Locales/en-US.json -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Locales/nl-NL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Locales/nl-NL.json -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Locales/zh-CHS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Locales/zh-CHS.json -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Locales/zh-CHT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Locales/zh-CHT.json -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Models/EditServerNavigationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Models/EditServerNavigationData.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Models/SelectedServerNavigationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Models/SelectedServerNavigationData.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Models/Settings/AudioSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Models/Settings/AudioSettings.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Models/Settings/LocaleSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Models/Settings/LocaleSettings.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Models/Settings/NetworkSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Models/Settings/NetworkSettings.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Models/Settings/NotificationSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Models/Settings/NotificationSettings.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Models/Settings/ServersSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Models/Settings/ServersSettings.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Models/Settings/ThemeSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Models/Settings/ThemeSettings.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Models/Settings/UserSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Models/Settings/UserSetting.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Models/Settings/UserSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Models/Settings/UserSettings.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Models/VoiceNavigationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Models/VoiceNavigationData.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Network/JitterBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Network/JitterBuffer.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Network/ServerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Network/ServerInfo.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Network/Systems/AudioSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Network/Systems/AudioSystem.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Network/VoiceCraftClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Network/VoiceCraftClient.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Network/VoiceCraftClientEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Network/VoiceCraftClientEntity.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Network/VoiceCraftClientNetworkEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Network/VoiceCraftClientNetworkEntity.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Processes/VoipBackgroundProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Processes/VoipBackgroundProcess.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Services/AudioService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Services/AudioService.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Services/BackgroundService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Services/BackgroundService.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Services/DiscordRpcService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Services/DiscordRpcService.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Services/HotKeyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Services/HotKeyService.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Services/LogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Services/LogService.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Services/NavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Services/NavigationService.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Services/NotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Services/NotificationService.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Services/PermissionsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Services/PermissionsService.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Services/SettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Services/SettingsService.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Services/StorageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Services/StorageService.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Services/ThemesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Services/ThemesService.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Services/ViewLocatorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Services/ViewLocatorService.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Themes/Dark/Colors.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Themes/Dark/Colors.axaml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Themes/Dark/Colors.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Themes/Dark/Colors.axaml.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Themes/Dark/Resources.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Themes/Dark/Resources.axaml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Themes/Dark/Resources.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Themes/Dark/Resources.axaml.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Themes/Dark/Styles.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Themes/Dark/Styles.axaml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Themes/Dark/Styles.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Themes/Dark/Styles.axaml.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Themes/DarkGreen/Colors.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Themes/DarkGreen/Colors.axaml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Themes/DarkGreen/Colors.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Themes/DarkGreen/Colors.axaml.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Themes/DarkGreen/Resources.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Themes/DarkGreen/Resources.axaml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Themes/DarkGreen/Resources.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Themes/DarkGreen/Resources.axaml.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Themes/DarkGreen/Styles.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Themes/DarkGreen/Styles.axaml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Themes/DarkGreen/Styles.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Themes/DarkGreen/Styles.axaml.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Themes/DarkPurple/Colors.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Themes/DarkPurple/Colors.axaml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Themes/DarkPurple/Colors.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Themes/DarkPurple/Colors.axaml.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Themes/DarkPurple/Resources.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Themes/DarkPurple/Resources.axaml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Themes/DarkPurple/Resources.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Themes/DarkPurple/Resources.axaml.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Themes/DarkPurple/Styles.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Themes/DarkPurple/Styles.axaml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Themes/DarkPurple/Styles.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Themes/DarkPurple/Styles.axaml.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Themes/Light/Colors.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Themes/Light/Colors.axaml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Themes/Light/Colors.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Themes/Light/Colors.axaml.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Themes/Light/Resources.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Themes/Light/Resources.axaml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Themes/Light/Resources.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Themes/Light/Resources.axaml.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Themes/Light/Styles.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Themes/Light/Styles.axaml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Themes/Light/Styles.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Themes/Light/Styles.axaml.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/ViewModels/AddServerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/ViewModels/AddServerViewModel.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/ViewModels/Data/AudioSettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/ViewModels/Data/AudioSettingsViewModel.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/ViewModels/Data/ContributorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/ViewModels/Data/ContributorViewModel.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/ViewModels/Data/EntityViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/ViewModels/Data/EntityViewModel.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/ViewModels/Data/HotKeyActionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/ViewModels/Data/HotKeyActionViewModel.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/ViewModels/Data/LocaleSettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/ViewModels/Data/LocaleSettingsViewModel.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/ViewModels/Data/NetworkSettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/ViewModels/Data/NetworkSettingsViewModel.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/ViewModels/Data/NotificationSettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/ViewModels/Data/NotificationSettingsViewModel.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/ViewModels/Data/ServerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/ViewModels/Data/ServerViewModel.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/ViewModels/Data/ServersSettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/ViewModels/Data/ServersSettingsViewModel.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/ViewModels/Data/ThemeSettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/ViewModels/Data/ThemeSettingsViewModel.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/ViewModels/EditServerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/ViewModels/EditServerViewModel.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/ViewModels/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/ViewModels/ErrorViewModel.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/ViewModels/Home/CrashLogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/ViewModels/Home/CrashLogViewModel.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/ViewModels/Home/CreditsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/ViewModels/Home/CreditsViewModel.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/ViewModels/Home/ServersViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/ViewModels/Home/ServersViewModel.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/ViewModels/Home/SettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/ViewModels/Home/SettingsViewModel.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/ViewModels/HomeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/ViewModels/HomeViewModel.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/ViewModels/SelectedServerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/ViewModels/SelectedServerViewModel.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/ViewModels/Settings/AdvancedSettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/ViewModels/Settings/AdvancedSettingsViewModel.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/ViewModels/Settings/AppearanceSettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/ViewModels/Settings/AppearanceSettingsViewModel.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/ViewModels/Settings/AudioSettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/ViewModels/Settings/AudioSettingsViewModel.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/ViewModels/Settings/GeneralSettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/ViewModels/Settings/GeneralSettingsViewModel.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/ViewModels/Settings/HotKeySettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/ViewModels/Settings/HotKeySettingsViewModel.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/ViewModels/Settings/NetworkSettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/ViewModels/Settings/NetworkSettingsViewModel.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/ViewModels/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/ViewModels/ViewModelBase.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/ViewModels/VoiceViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/ViewModels/VoiceViewModel.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Views/AddServerView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Views/AddServerView.axaml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Views/AddServerView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Views/AddServerView.axaml.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Views/EditServerView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Views/EditServerView.axaml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Views/EditServerView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Views/EditServerView.axaml.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Views/Error/ErrorMainWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Views/Error/ErrorMainWindow.axaml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Views/Error/ErrorMainWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Views/Error/ErrorMainWindow.axaml.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Views/Error/ErrorView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Views/Error/ErrorView.axaml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Views/Error/ErrorView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Views/Error/ErrorView.axaml.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Views/Home/CrashLogView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Views/Home/CrashLogView.axaml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Views/Home/CrashLogView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Views/Home/CrashLogView.axaml.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Views/Home/CreditsView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Views/Home/CreditsView.axaml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Views/Home/CreditsView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Views/Home/CreditsView.axaml.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Views/Home/ServersView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Views/Home/ServersView.axaml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Views/Home/ServersView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Views/Home/ServersView.axaml.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Views/Home/SettingsView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Views/Home/SettingsView.axaml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Views/Home/SettingsView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Views/Home/SettingsView.axaml.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Views/HomeView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Views/HomeView.axaml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Views/HomeView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Views/HomeView.axaml.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Views/MainView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Views/MainView.axaml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Views/MainView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Views/MainView.axaml.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Views/MainWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Views/MainWindow.axaml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Views/MainWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Views/MainWindow.axaml.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Views/SelectedServerView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Views/SelectedServerView.axaml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Views/SelectedServerView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Views/SelectedServerView.axaml.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Views/Settings/AdvancedSettingsView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Views/Settings/AdvancedSettingsView.axaml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Views/Settings/AdvancedSettingsView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Views/Settings/AdvancedSettingsView.axaml.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Views/Settings/AppearanceSettingsView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Views/Settings/AppearanceSettingsView.axaml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Views/Settings/AppearanceSettingsView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Views/Settings/AppearanceSettingsView.axaml.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Views/Settings/AudioSettingsView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Views/Settings/AudioSettingsView.axaml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Views/Settings/AudioSettingsView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Views/Settings/AudioSettingsView.axaml.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Views/Settings/GeneralSettingsView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Views/Settings/GeneralSettingsView.axaml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Views/Settings/GeneralSettingsView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Views/Settings/GeneralSettingsView.axaml.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Views/Settings/HotKeySettingsView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Views/Settings/HotKeySettingsView.axaml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Views/Settings/HotKeySettingsView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Views/Settings/HotKeySettingsView.axaml.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Views/Settings/NetworkSettingsView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Views/Settings/NetworkSettingsView.axaml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Views/Settings/NetworkSettingsView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Views/Settings/NetworkSettingsView.axaml.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Views/VoiceView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Views/VoiceView.axaml -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/Views/VoiceView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/Views/VoiceView.axaml.cs -------------------------------------------------------------------------------- /VoiceCraft.Client/VoiceCraft.Client/VoiceCraft.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Client/VoiceCraft.Client/VoiceCraft.Client.csproj -------------------------------------------------------------------------------- /VoiceCraft.Core/Audio/BufferedAudioProvider16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Audio/BufferedAudioProvider16.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Audio/CircularBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Audio/CircularBuffer.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Audio/Effects/DirectionalEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Audio/Effects/DirectionalEffect.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Audio/Effects/EchoEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Audio/Effects/EchoEffect.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Audio/Effects/ProximityEchoEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Audio/Effects/ProximityEchoEffect.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Audio/Effects/ProximityEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Audio/Effects/ProximityEffect.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Audio/Effects/VisibilityEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Audio/Effects/VisibilityEffect.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Audio/FractionalDelayLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Audio/FractionalDelayLine.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Audio/SineWaveGenerator16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Audio/SineWaveGenerator16.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/BackgroundProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/BackgroundProcess.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Constants.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Enums.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Extensions.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Interfaces/IAudioEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Interfaces/IAudioEffect.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Interfaces/IAudioPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Interfaces/IAudioPlayer.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Interfaces/IAudioRecorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Interfaces/IAudioRecorder.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Interfaces/IAutomaticGainController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Interfaces/IAutomaticGainController.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Interfaces/IBackgroundProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Interfaces/IBackgroundProcess.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Interfaces/IBaseLocalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Interfaces/IBaseLocalizer.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Interfaces/IDenoiser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Interfaces/IDenoiser.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Interfaces/IEchoCanceler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Interfaces/IEchoCanceler.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Interfaces/IResettable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Interfaces/IResettable.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Interfaces/IVisible.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Interfaces/IVisible.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Locales/Localizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Locales/Localizer.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McApiNetPeer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McApiNetPeer.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McApiPackets/Event/McApiOnDeafenUpdatedPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McApiPackets/Event/McApiOnDeafenUpdatedPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McApiPackets/Event/McApiOnEffectBitmaskUpdatedPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McApiPackets/Event/McApiOnEffectBitmaskUpdatedPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McApiPackets/Event/McApiOnEntityAudioReceivedPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McApiPackets/Event/McApiOnEntityAudioReceivedPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McApiPackets/Event/McApiOnEntityCaveFactorUpdatedPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McApiPackets/Event/McApiOnEntityCaveFactorUpdatedPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McApiPackets/Event/McApiOnEntityCreatedPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McApiPackets/Event/McApiOnEntityCreatedPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McApiPackets/Event/McApiOnEntityDestroyedPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McApiPackets/Event/McApiOnEntityDestroyedPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McApiPackets/Event/McApiOnEntityMuffleFactorUpdatedPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McApiPackets/Event/McApiOnEntityMuffleFactorUpdatedPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McApiPackets/Event/McApiOnEntityVisibilityUpdatedPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McApiPackets/Event/McApiOnEntityVisibilityUpdatedPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McApiPackets/Event/McApiOnListenBitmaskUpdatedPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McApiPackets/Event/McApiOnListenBitmaskUpdatedPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McApiPackets/Event/McApiOnMuteUpdatedPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McApiPackets/Event/McApiOnMuteUpdatedPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McApiPackets/Event/McApiOnNameUpdatedPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McApiPackets/Event/McApiOnNameUpdatedPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McApiPackets/Event/McApiOnNetworkEntityCreatedPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McApiPackets/Event/McApiOnNetworkEntityCreatedPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McApiPackets/Event/McApiOnPositionUpdatedPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McApiPackets/Event/McApiOnPositionUpdatedPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McApiPackets/Event/McApiOnRotationUpdatedPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McApiPackets/Event/McApiOnRotationUpdatedPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McApiPackets/Event/McApiOnTalkBitmaskUpdatedPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McApiPackets/Event/McApiOnTalkBitmaskUpdatedPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McApiPackets/Event/McApiOnWorldIdUpdatedPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McApiPackets/Event/McApiOnWorldIdUpdatedPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McApiPackets/IMcApiPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McApiPackets/IMcApiPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McApiPackets/IMcApiRIdPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McApiPackets/IMcApiRIdPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McApiPackets/Request/McApiLoginRequestPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McApiPackets/Request/McApiLoginRequestPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McApiPackets/Request/McApiLogoutRequestPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McApiPackets/Request/McApiLogoutRequestPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McApiPackets/Request/McApiPingRequestPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McApiPackets/Request/McApiPingRequestPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McApiPackets/Request/McApiSetEntityCaveFactorRequestPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McApiPackets/Request/McApiSetEntityCaveFactorRequestPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McApiPackets/Request/McApiSetEntityDescriptionRequestPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McApiPackets/Request/McApiSetEntityDescriptionRequestPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McApiPackets/Request/McApiSetEntityEffectBitmaskRequestPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McApiPackets/Request/McApiSetEntityEffectBitmaskRequestPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McApiPackets/Request/McApiSetEntityListenBitmaskRequestPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McApiPackets/Request/McApiSetEntityListenBitmaskRequestPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McApiPackets/Request/McApiSetEntityMuffleFactorRequestPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McApiPackets/Request/McApiSetEntityMuffleFactorRequestPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McApiPackets/Request/McApiSetEntityNameRequestPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McApiPackets/Request/McApiSetEntityNameRequestPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McApiPackets/Request/McApiSetEntityPositionRequestPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McApiPackets/Request/McApiSetEntityPositionRequestPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McApiPackets/Request/McApiSetEntityRotationRequestPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McApiPackets/Request/McApiSetEntityRotationRequestPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McApiPackets/Request/McApiSetEntityTalkBitmaskRequestPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McApiPackets/Request/McApiSetEntityTalkBitmaskRequestPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McApiPackets/Request/McApiSetEntityTitleRequestPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McApiPackets/Request/McApiSetEntityTitleRequestPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McApiPackets/Request/McApiSetEntityWorldIdRequestPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McApiPackets/Request/McApiSetEntityWorldIdRequestPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McApiPackets/Response/McApiAcceptResponsePacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McApiPackets/Response/McApiAcceptResponsePacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McApiPackets/Response/McApiDenyResponsePacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McApiPackets/Response/McApiDenyResponsePacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McApiPackets/Response/McApiPingResponsePacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McApiPackets/Response/McApiPingResponsePacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McWssPackets/McWssCommandRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McWssPackets/McWssCommandRequest.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McWssPackets/McWssCommandResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McWssPackets/McWssCommandResponse.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McWssPackets/McWssGenericPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McWssPackets/McWssGenericPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/McWssPackets/McWssPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/McWssPackets/McWssPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/VcPackets/Event/VcOnEffectUpdatedPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/VcPackets/Event/VcOnEffectUpdatedPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/VcPackets/Event/VcOnEntityAudioReceivedPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/VcPackets/Event/VcOnEntityAudioReceivedPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/VcPackets/Event/VcOnEntityCaveFactorUpdatedPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/VcPackets/Event/VcOnEntityCaveFactorUpdatedPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/VcPackets/Event/VcOnEntityCreatedPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/VcPackets/Event/VcOnEntityCreatedPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/VcPackets/Event/VcOnEntityDeafenUpdatedPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/VcPackets/Event/VcOnEntityDeafenUpdatedPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/VcPackets/Event/VcOnEntityDestroyedPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/VcPackets/Event/VcOnEntityDestroyedPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/VcPackets/Event/VcOnEntityEffectBitmaskUpdatedPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/VcPackets/Event/VcOnEntityEffectBitmaskUpdatedPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/VcPackets/Event/VcOnEntityListenBitmaskUpdatedPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/VcPackets/Event/VcOnEntityListenBitmaskUpdatedPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/VcPackets/Event/VcOnEntityMuffleFactorUpdatedPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/VcPackets/Event/VcOnEntityMuffleFactorUpdatedPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/VcPackets/Event/VcOnEntityMuteUpdatedPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/VcPackets/Event/VcOnEntityMuteUpdatedPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/VcPackets/Event/VcOnEntityNameUpdatedPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/VcPackets/Event/VcOnEntityNameUpdatedPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/VcPackets/Event/VcOnEntityPositionUpdatedPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/VcPackets/Event/VcOnEntityPositionUpdatedPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/VcPackets/Event/VcOnEntityRotationUpdatedPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/VcPackets/Event/VcOnEntityRotationUpdatedPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/VcPackets/Event/VcOnEntityTalkBitmaskUpdatedPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/VcPackets/Event/VcOnEntityTalkBitmaskUpdatedPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/VcPackets/Event/VcOnNetworkEntityCreatedPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/VcPackets/Event/VcOnNetworkEntityCreatedPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/VcPackets/IVoiceCraftPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/VcPackets/IVoiceCraftPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/VcPackets/IVoiceCraftRIdPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/VcPackets/IVoiceCraftRIdPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/VcPackets/Request/VcAudioRequestPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/VcPackets/Request/VcAudioRequestPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/VcPackets/Request/VcInfoRequestPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/VcPackets/Request/VcInfoRequestPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/VcPackets/Request/VcLoginRequestPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/VcPackets/Request/VcLoginRequestPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/VcPackets/Request/VcLogoutRequestPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/VcPackets/Request/VcLogoutRequestPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/VcPackets/Request/VcSetCaveFactorRequestPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/VcPackets/Request/VcSetCaveFactorRequestPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/VcPackets/Request/VcSetDeafenRequestPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/VcPackets/Request/VcSetDeafenRequestPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/VcPackets/Request/VcSetDescriptionRequestPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/VcPackets/Request/VcSetDescriptionRequestPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/VcPackets/Request/VcSetEffectBitmaskRequestPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/VcPackets/Request/VcSetEffectBitmaskRequestPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/VcPackets/Request/VcSetEntityVisibilityRequestPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/VcPackets/Request/VcSetEntityVisibilityRequestPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/VcPackets/Request/VcSetListenBitmaskRequestPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/VcPackets/Request/VcSetListenBitmaskRequestPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/VcPackets/Request/VcSetMuffleFactorRequestPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/VcPackets/Request/VcSetMuffleFactorRequestPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/VcPackets/Request/VcSetMuteRequestPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/VcPackets/Request/VcSetMuteRequestPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/VcPackets/Request/VcSetNameRequestPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/VcPackets/Request/VcSetNameRequestPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/VcPackets/Request/VcSetPositionRequestPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/VcPackets/Request/VcSetPositionRequestPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/VcPackets/Request/VcSetRotationRequestPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/VcPackets/Request/VcSetRotationRequestPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/VcPackets/Request/VcSetTalkBitmaskRequestPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/VcPackets/Request/VcSetTalkBitmaskRequestPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/VcPackets/Request/VcSetTitleRequestPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/VcPackets/Request/VcSetTitleRequestPacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/VcPackets/Response/VcAcceptResponsePacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/VcPackets/Response/VcAcceptResponsePacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/VcPackets/Response/VcDenyResponsePacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/VcPackets/Response/VcDenyResponsePacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Network/VcPackets/Response/VcInfoResponsePacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Network/VcPackets/Response/VcInfoResponsePacket.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/PacketPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/PacketPool.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/VoiceCraft.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/VoiceCraft.Core.csproj -------------------------------------------------------------------------------- /VoiceCraft.Core/World/VoiceCraftEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/World/VoiceCraftEntity.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/World/VoiceCraftNetworkEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/World/VoiceCraftNetworkEntity.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/World/VoiceCraftWorld.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/World/VoiceCraftWorld.cs -------------------------------------------------------------------------------- /VoiceCraft.Core/Z85.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Core/Z85.cs -------------------------------------------------------------------------------- /VoiceCraft.Docs/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Docs/docfx.json -------------------------------------------------------------------------------- /VoiceCraft.Docs/docfxServe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Docs/docfxServe.sh -------------------------------------------------------------------------------- /VoiceCraft.Docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Docs/faq.md -------------------------------------------------------------------------------- /VoiceCraft.Docs/guides/client_installation/android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Docs/guides/client_installation/android.md -------------------------------------------------------------------------------- /VoiceCraft.Docs/guides/client_installation/ios.md: -------------------------------------------------------------------------------- 1 | # Downloading 2 | 3 | No fucking clue yet. -------------------------------------------------------------------------------- /VoiceCraft.Docs/guides/client_installation/linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Docs/guides/client_installation/linux.md -------------------------------------------------------------------------------- /VoiceCraft.Docs/guides/client_installation/macos.md: -------------------------------------------------------------------------------- 1 | # Downloading 2 | 3 | No fucking clue yet. -------------------------------------------------------------------------------- /VoiceCraft.Docs/guides/client_installation/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Docs/guides/client_installation/toc.yml -------------------------------------------------------------------------------- /VoiceCraft.Docs/guides/client_installation/windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Docs/guides/client_installation/windows.md -------------------------------------------------------------------------------- /VoiceCraft.Docs/guides/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Docs/guides/introduction.md -------------------------------------------------------------------------------- /VoiceCraft.Docs/guides/server_installation/android.md: -------------------------------------------------------------------------------- 1 | # Getting Started 2 | 3 | Use In-App Server -------------------------------------------------------------------------------- /VoiceCraft.Docs/guides/server_installation/ios.md: -------------------------------------------------------------------------------- 1 | # Getting Started 2 | 3 | May not be supported. -------------------------------------------------------------------------------- /VoiceCraft.Docs/guides/server_installation/linux.md: -------------------------------------------------------------------------------- 1 | # Getting Started -------------------------------------------------------------------------------- /VoiceCraft.Docs/guides/server_installation/macos.md: -------------------------------------------------------------------------------- 1 | # Getting Started -------------------------------------------------------------------------------- /VoiceCraft.Docs/guides/server_installation/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Docs/guides/server_installation/toc.yml -------------------------------------------------------------------------------- /VoiceCraft.Docs/guides/server_installation/windows.md: -------------------------------------------------------------------------------- 1 | # Getting Started -------------------------------------------------------------------------------- /VoiceCraft.Docs/guides/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Docs/guides/toc.yml -------------------------------------------------------------------------------- /VoiceCraft.Docs/images/MainPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Docs/images/MainPage.png -------------------------------------------------------------------------------- /VoiceCraft.Docs/images/MainPageAndroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Docs/images/MainPageAndroid.png -------------------------------------------------------------------------------- /VoiceCraft.Docs/images/ServerPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Docs/images/ServerPage.png -------------------------------------------------------------------------------- /VoiceCraft.Docs/images/VC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Docs/images/VC.png -------------------------------------------------------------------------------- /VoiceCraft.Docs/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Docs/images/logo.png -------------------------------------------------------------------------------- /VoiceCraft.Docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Docs/index.md -------------------------------------------------------------------------------- /VoiceCraft.Docs/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Docs/toc.yml -------------------------------------------------------------------------------- /VoiceCraft.Docs/v1.0.7/client_installation/android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Docs/v1.0.7/client_installation/android.md -------------------------------------------------------------------------------- /VoiceCraft.Docs/v1.0.7/client_installation/ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Docs/v1.0.7/client_installation/ios.md -------------------------------------------------------------------------------- /VoiceCraft.Docs/v1.0.7/client_installation/linux.md: -------------------------------------------------------------------------------- 1 | # Downloading 2 | 3 | Not yet available. -------------------------------------------------------------------------------- /VoiceCraft.Docs/v1.0.7/client_installation/macos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Docs/v1.0.7/client_installation/macos.md -------------------------------------------------------------------------------- /VoiceCraft.Docs/v1.0.7/client_installation/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Docs/v1.0.7/client_installation/toc.yml -------------------------------------------------------------------------------- /VoiceCraft.Docs/v1.0.7/client_installation/windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Docs/v1.0.7/client_installation/windows.md -------------------------------------------------------------------------------- /VoiceCraft.Docs/v1.0.7/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Docs/v1.0.7/introduction.md -------------------------------------------------------------------------------- /VoiceCraft.Docs/v1.0.7/mccomm_protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Docs/v1.0.7/mccomm_protocol.md -------------------------------------------------------------------------------- /VoiceCraft.Docs/v1.0.7/server_installation/android.md: -------------------------------------------------------------------------------- 1 | # Getting Started 2 | 3 | Not available. -------------------------------------------------------------------------------- /VoiceCraft.Docs/v1.0.7/server_installation/ios.md: -------------------------------------------------------------------------------- 1 | # Getting Started 2 | 3 | Not available. -------------------------------------------------------------------------------- /VoiceCraft.Docs/v1.0.7/server_installation/linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Docs/v1.0.7/server_installation/linux.md -------------------------------------------------------------------------------- /VoiceCraft.Docs/v1.0.7/server_installation/macos.md: -------------------------------------------------------------------------------- 1 | # Getting Started 2 | 3 | Not available. -------------------------------------------------------------------------------- /VoiceCraft.Docs/v1.0.7/server_installation/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Docs/v1.0.7/server_installation/toc.yml -------------------------------------------------------------------------------- /VoiceCraft.Docs/v1.0.7/server_installation/windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Docs/v1.0.7/server_installation/windows.md -------------------------------------------------------------------------------- /VoiceCraft.Docs/v1.0.7/server_properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Docs/v1.0.7/server_properties.md -------------------------------------------------------------------------------- /VoiceCraft.Docs/v1.0.7/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Docs/v1.0.7/toc.yml -------------------------------------------------------------------------------- /VoiceCraft.Docs/v1.0.7/voicecraft_protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Docs/v1.0.7/voicecraft_protocol.md -------------------------------------------------------------------------------- /VoiceCraft.Server/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Server/App.cs -------------------------------------------------------------------------------- /VoiceCraft.Server/Commands/ListCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Server/Commands/ListCommand.cs -------------------------------------------------------------------------------- /VoiceCraft.Server/Commands/SetDescriptionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Server/Commands/SetDescriptionCommand.cs -------------------------------------------------------------------------------- /VoiceCraft.Server/Commands/SetNameCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Server/Commands/SetNameCommand.cs -------------------------------------------------------------------------------- /VoiceCraft.Server/Commands/SetPositionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Server/Commands/SetPositionCommand.cs -------------------------------------------------------------------------------- /VoiceCraft.Server/Commands/SetTitleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Server/Commands/SetTitleCommand.cs -------------------------------------------------------------------------------- /VoiceCraft.Server/Commands/SetWorldIdCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Server/Commands/SetWorldIdCommand.cs -------------------------------------------------------------------------------- /VoiceCraft.Server/Commands/StopCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Server/Commands/StopCommand.cs -------------------------------------------------------------------------------- /VoiceCraft.Server/Config/McHttpConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Server/Config/McHttpConfig.cs -------------------------------------------------------------------------------- /VoiceCraft.Server/Config/McWssConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Server/Config/McWssConfig.cs -------------------------------------------------------------------------------- /VoiceCraft.Server/Config/VoiceCraftConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Server/Config/VoiceCraftConfig.cs -------------------------------------------------------------------------------- /VoiceCraft.Server/Locales/EmbededJsonLocaliser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Server/Locales/EmbededJsonLocaliser.cs -------------------------------------------------------------------------------- /VoiceCraft.Server/Locales/Locales.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Server/Locales/Locales.cs -------------------------------------------------------------------------------- /VoiceCraft.Server/Locales/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Server/Locales/en-US.json -------------------------------------------------------------------------------- /VoiceCraft.Server/Locales/nl-NL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Server/Locales/nl-NL.json -------------------------------------------------------------------------------- /VoiceCraft.Server/Locales/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Server/Locales/zh-CN.json -------------------------------------------------------------------------------- /VoiceCraft.Server/Locales/zh-TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Server/Locales/zh-TW.json -------------------------------------------------------------------------------- /VoiceCraft.Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Server/Program.cs -------------------------------------------------------------------------------- /VoiceCraft.Server/ServerProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Server/ServerProperties.cs -------------------------------------------------------------------------------- /VoiceCraft.Server/Servers/McWssServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Server/Servers/McWssServer.cs -------------------------------------------------------------------------------- /VoiceCraft.Server/Servers/VoiceCraftServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Server/Servers/VoiceCraftServer.cs -------------------------------------------------------------------------------- /VoiceCraft.Server/Systems/AudioEffectSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Server/Systems/AudioEffectSystem.cs -------------------------------------------------------------------------------- /VoiceCraft.Server/Systems/EventHandlerSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Server/Systems/EventHandlerSystem.cs -------------------------------------------------------------------------------- /VoiceCraft.Server/Systems/VisibilitySystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Server/Systems/VisibilitySystem.cs -------------------------------------------------------------------------------- /VoiceCraft.Server/VoiceCraft.Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.Server/VoiceCraft.Server.csproj -------------------------------------------------------------------------------- /VoiceCraft.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/VoiceCraft.sln -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvionBlock/VoiceCraft/HEAD/global.json --------------------------------------------------------------------------------