├── .gitattributes ├── .github └── workflows │ └── dotnet.yml ├── .gitignore ├── Artwork ├── icon.ico └── icon.png ├── LICENSE.md ├── Nuget.config ├── Pandora.nfo ├── Pandora.sln ├── Pandora ├── .gitignore ├── Helpers │ ├── Config.cs │ ├── ResourceLoader.cs │ └── Utility.cs ├── Network │ ├── Client.cs │ ├── ClientFileInfo.cs │ ├── DownloadDetail.cs │ └── DownloadDetailStore.cs ├── Pandora.csproj ├── Program.cs ├── Resources │ ├── ARIALUNI.TTF │ ├── TeamResurgent.jpg │ ├── dialup.mp3 │ ├── disconnect.mp3 │ ├── icon.png │ ├── imgui-frag.glsl │ └── imgui-vertex.glsl ├── UI │ ├── ApplicationUI.cs │ ├── FileContextDialog.cs │ ├── ImGuiController.cs │ ├── InputDialog.cs │ ├── RemoteContextDialog.cs │ ├── SplashDialog.cs │ └── UIControls.cs ├── Window.cs ├── bass.dll ├── build.bat ├── build.sh ├── libbass.dylib └── libbass.so ├── README.md ├── editorconfig └── readmeStuff ├── Gui1.jpg ├── Gui2.jpg └── Gui3.jpg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/.gitignore -------------------------------------------------------------------------------- /Artwork/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/Artwork/icon.ico -------------------------------------------------------------------------------- /Artwork/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/Artwork/icon.png -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/Nuget.config -------------------------------------------------------------------------------- /Pandora.nfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/Pandora.nfo -------------------------------------------------------------------------------- /Pandora.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/Pandora.sln -------------------------------------------------------------------------------- /Pandora/.gitignore: -------------------------------------------------------------------------------- 1 | !*.dll 2 | -------------------------------------------------------------------------------- /Pandora/Helpers/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/Pandora/Helpers/Config.cs -------------------------------------------------------------------------------- /Pandora/Helpers/ResourceLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/Pandora/Helpers/ResourceLoader.cs -------------------------------------------------------------------------------- /Pandora/Helpers/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/Pandora/Helpers/Utility.cs -------------------------------------------------------------------------------- /Pandora/Network/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/Pandora/Network/Client.cs -------------------------------------------------------------------------------- /Pandora/Network/ClientFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/Pandora/Network/ClientFileInfo.cs -------------------------------------------------------------------------------- /Pandora/Network/DownloadDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/Pandora/Network/DownloadDetail.cs -------------------------------------------------------------------------------- /Pandora/Network/DownloadDetailStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/Pandora/Network/DownloadDetailStore.cs -------------------------------------------------------------------------------- /Pandora/Pandora.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/Pandora/Pandora.csproj -------------------------------------------------------------------------------- /Pandora/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/Pandora/Program.cs -------------------------------------------------------------------------------- /Pandora/Resources/ARIALUNI.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/Pandora/Resources/ARIALUNI.TTF -------------------------------------------------------------------------------- /Pandora/Resources/TeamResurgent.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/Pandora/Resources/TeamResurgent.jpg -------------------------------------------------------------------------------- /Pandora/Resources/dialup.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/Pandora/Resources/dialup.mp3 -------------------------------------------------------------------------------- /Pandora/Resources/disconnect.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/Pandora/Resources/disconnect.mp3 -------------------------------------------------------------------------------- /Pandora/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/Pandora/Resources/icon.png -------------------------------------------------------------------------------- /Pandora/Resources/imgui-frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/Pandora/Resources/imgui-frag.glsl -------------------------------------------------------------------------------- /Pandora/Resources/imgui-vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/Pandora/Resources/imgui-vertex.glsl -------------------------------------------------------------------------------- /Pandora/UI/ApplicationUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/Pandora/UI/ApplicationUI.cs -------------------------------------------------------------------------------- /Pandora/UI/FileContextDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/Pandora/UI/FileContextDialog.cs -------------------------------------------------------------------------------- /Pandora/UI/ImGuiController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/Pandora/UI/ImGuiController.cs -------------------------------------------------------------------------------- /Pandora/UI/InputDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/Pandora/UI/InputDialog.cs -------------------------------------------------------------------------------- /Pandora/UI/RemoteContextDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/Pandora/UI/RemoteContextDialog.cs -------------------------------------------------------------------------------- /Pandora/UI/SplashDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/Pandora/UI/SplashDialog.cs -------------------------------------------------------------------------------- /Pandora/UI/UIControls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/Pandora/UI/UIControls.cs -------------------------------------------------------------------------------- /Pandora/Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/Pandora/Window.cs -------------------------------------------------------------------------------- /Pandora/bass.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/Pandora/bass.dll -------------------------------------------------------------------------------- /Pandora/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/Pandora/build.bat -------------------------------------------------------------------------------- /Pandora/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/Pandora/build.sh -------------------------------------------------------------------------------- /Pandora/libbass.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/Pandora/libbass.dylib -------------------------------------------------------------------------------- /Pandora/libbass.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/Pandora/libbass.so -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/README.md -------------------------------------------------------------------------------- /editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/editorconfig -------------------------------------------------------------------------------- /readmeStuff/Gui1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/readmeStuff/Gui1.jpg -------------------------------------------------------------------------------- /readmeStuff/Gui2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/readmeStuff/Gui2.jpg -------------------------------------------------------------------------------- /readmeStuff/Gui3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-Resurgent/Pandora/HEAD/readmeStuff/Gui3.jpg --------------------------------------------------------------------------------