├── .gitignore ├── Core ├── Game.cs ├── GameController.cs ├── Judger.cs └── Note.cs ├── IpcLibrary ├── FpsController.cs ├── IpcConstants.cs ├── IpcLibrary.csproj ├── Models.cs ├── Properties │ └── AssemblyInfo.cs ├── SerializeUtils.cs └── ShareMem.cs ├── LICENSE ├── ManiaRTRender.csproj ├── ManiaRTRender.sln ├── ManiaRTRenderPlugin.cs ├── Properties ├── AssemblyInfo.cs ├── Resource.Designer.cs └── Resource.resx ├── README.md ├── README_EN.md ├── Render └── RenderServer.cs ├── RenderClient ├── App.config ├── GLUtils.cs ├── OpenTK.dll.config ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── RenderClient.cs ├── RenderClient.csproj ├── RenderForm.Designer.cs ├── RenderForm.cs ├── RenderForm.resx ├── Resources │ └── DefaultBackground.png ├── Setting.cs └── packages.config ├── Screenshots ├── menu.png ├── screenshot1.png └── screenshot2.png ├── Setting.cs ├── Utils ├── CollectionUtils.cs └── OsuUtils.cs └── packages ├── Newtonsoft.Json.6.0.8 ├── .signature.p7s ├── Newtonsoft.Json.6.0.8.nupkg ├── lib │ ├── net20 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net35 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net40 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net45 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── netcore45 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── portable-net40+sl5+wp80+win8+wpa81 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ └── portable-net45+wp80+win8+wpa81+aspnetcore50 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml └── tools │ └── install.ps1 ├── OpenTK.3.1.0 ├── .signature.p7s ├── OpenTK.3.1.0.nupkg ├── content │ └── OpenTK.dll.config └── lib │ └── net20 │ ├── OpenTK.dll │ ├── OpenTK.pdb │ └── OpenTK.xml ├── OpenTK.GLControl.3.1.0 ├── .signature.p7s ├── OpenTK.GLControl.3.1.0.nupkg └── lib │ └── net20 │ ├── OpenTK.GLControl.dll │ ├── OpenTK.GLControl.pdb │ └── OpenTK.GLControl.xml ├── SharpRaven.2.4.0 ├── .signature.p7s ├── SharpRaven.2.4.0.nupkg └── lib │ ├── net35 │ └── SharpRaven.dll │ ├── net40 │ └── SharpRaven.dll │ ├── net45 │ └── SharpRaven.dll │ ├── net471 │ └── SharpRaven.dll │ └── netstandard2.0 │ └── SharpRaven.dll └── System.Runtime.InteropServices.RuntimeInformation.4.3.0 ├── .signature.p7s ├── System.Runtime.InteropServices.RuntimeInformation.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib ├── MonoAndroid10 │ └── _._ ├── MonoTouch10 │ └── _._ ├── net45 │ └── System.Runtime.InteropServices.RuntimeInformation.dll ├── netstandard1.1 │ └── System.Runtime.InteropServices.RuntimeInformation.dll ├── win8 │ └── System.Runtime.InteropServices.RuntimeInformation.dll ├── wpa81 │ └── System.Runtime.InteropServices.RuntimeInformation.dll ├── xamarinios10 │ └── _._ ├── xamarinmac20 │ └── _._ ├── xamarintvos10 │ └── _._ └── xamarinwatchos10 │ └── _._ ├── ref ├── MonoAndroid10 │ └── _._ ├── MonoTouch10 │ └── _._ ├── netstandard1.1 │ └── System.Runtime.InteropServices.RuntimeInformation.dll ├── xamarinios10 │ └── _._ ├── xamarinmac20 │ └── _._ ├── xamarintvos10 │ └── _._ └── xamarinwatchos10 │ └── _._ └── runtimes ├── aot └── lib │ └── netcore50 │ └── System.Runtime.InteropServices.RuntimeInformation.dll ├── unix └── lib │ └── netstandard1.1 │ └── System.Runtime.InteropServices.RuntimeInformation.dll └── win └── lib ├── net45 └── System.Runtime.InteropServices.RuntimeInformation.dll ├── netcore50 └── System.Runtime.InteropServices.RuntimeInformation.dll └── netstandard1.1 └── System.Runtime.InteropServices.RuntimeInformation.dll /.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | .vs 4 | .idea -------------------------------------------------------------------------------- /Core/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/Core/Game.cs -------------------------------------------------------------------------------- /Core/GameController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/Core/GameController.cs -------------------------------------------------------------------------------- /Core/Judger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/Core/Judger.cs -------------------------------------------------------------------------------- /Core/Note.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/Core/Note.cs -------------------------------------------------------------------------------- /IpcLibrary/FpsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/IpcLibrary/FpsController.cs -------------------------------------------------------------------------------- /IpcLibrary/IpcConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/IpcLibrary/IpcConstants.cs -------------------------------------------------------------------------------- /IpcLibrary/IpcLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/IpcLibrary/IpcLibrary.csproj -------------------------------------------------------------------------------- /IpcLibrary/Models.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/IpcLibrary/Models.cs -------------------------------------------------------------------------------- /IpcLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/IpcLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /IpcLibrary/SerializeUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/IpcLibrary/SerializeUtils.cs -------------------------------------------------------------------------------- /IpcLibrary/ShareMem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/IpcLibrary/ShareMem.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/LICENSE -------------------------------------------------------------------------------- /ManiaRTRender.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/ManiaRTRender.csproj -------------------------------------------------------------------------------- /ManiaRTRender.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/ManiaRTRender.sln -------------------------------------------------------------------------------- /ManiaRTRenderPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/ManiaRTRenderPlugin.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/Properties/Resource.Designer.cs -------------------------------------------------------------------------------- /Properties/Resource.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/Properties/Resource.resx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/README_EN.md -------------------------------------------------------------------------------- /Render/RenderServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/Render/RenderServer.cs -------------------------------------------------------------------------------- /RenderClient/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/RenderClient/App.config -------------------------------------------------------------------------------- /RenderClient/GLUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/RenderClient/GLUtils.cs -------------------------------------------------------------------------------- /RenderClient/OpenTK.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/RenderClient/OpenTK.dll.config -------------------------------------------------------------------------------- /RenderClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/RenderClient/Program.cs -------------------------------------------------------------------------------- /RenderClient/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/RenderClient/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RenderClient/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/RenderClient/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /RenderClient/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/RenderClient/Properties/Resources.resx -------------------------------------------------------------------------------- /RenderClient/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/RenderClient/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /RenderClient/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/RenderClient/Properties/Settings.settings -------------------------------------------------------------------------------- /RenderClient/RenderClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/RenderClient/RenderClient.cs -------------------------------------------------------------------------------- /RenderClient/RenderClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/RenderClient/RenderClient.csproj -------------------------------------------------------------------------------- /RenderClient/RenderForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/RenderClient/RenderForm.Designer.cs -------------------------------------------------------------------------------- /RenderClient/RenderForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/RenderClient/RenderForm.cs -------------------------------------------------------------------------------- /RenderClient/RenderForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/RenderClient/RenderForm.resx -------------------------------------------------------------------------------- /RenderClient/Resources/DefaultBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/RenderClient/Resources/DefaultBackground.png -------------------------------------------------------------------------------- /RenderClient/Setting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/RenderClient/Setting.cs -------------------------------------------------------------------------------- /RenderClient/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/RenderClient/packages.config -------------------------------------------------------------------------------- /Screenshots/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/Screenshots/menu.png -------------------------------------------------------------------------------- /Screenshots/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/Screenshots/screenshot1.png -------------------------------------------------------------------------------- /Screenshots/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/Screenshots/screenshot2.png -------------------------------------------------------------------------------- /Setting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/Setting.cs -------------------------------------------------------------------------------- /Utils/CollectionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/Utils/CollectionUtils.cs -------------------------------------------------------------------------------- /Utils/OsuUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/Utils/OsuUtils.cs -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.8/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/Newtonsoft.Json.6.0.8/.signature.p7s -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.8/Newtonsoft.Json.6.0.8.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/Newtonsoft.Json.6.0.8/Newtonsoft.Json.6.0.8.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.8/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/Newtonsoft.Json.6.0.8/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.8/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/Newtonsoft.Json.6.0.8/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.8/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/Newtonsoft.Json.6.0.8/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.8/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/Newtonsoft.Json.6.0.8/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.8/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/Newtonsoft.Json.6.0.8/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.8/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/Newtonsoft.Json.6.0.8/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.8/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/Newtonsoft.Json.6.0.8/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.8/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/Newtonsoft.Json.6.0.8/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.8/lib/netcore45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/Newtonsoft.Json.6.0.8/lib/netcore45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.8/lib/netcore45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/Newtonsoft.Json.6.0.8/lib/netcore45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.8/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/Newtonsoft.Json.6.0.8/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.8/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/Newtonsoft.Json.6.0.8/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.8/lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/Newtonsoft.Json.6.0.8/lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.8/lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/Newtonsoft.Json.6.0.8/lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.8/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/Newtonsoft.Json.6.0.8/tools/install.ps1 -------------------------------------------------------------------------------- /packages/OpenTK.3.1.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/OpenTK.3.1.0/.signature.p7s -------------------------------------------------------------------------------- /packages/OpenTK.3.1.0/OpenTK.3.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/OpenTK.3.1.0/OpenTK.3.1.0.nupkg -------------------------------------------------------------------------------- /packages/OpenTK.3.1.0/content/OpenTK.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/OpenTK.3.1.0/content/OpenTK.dll.config -------------------------------------------------------------------------------- /packages/OpenTK.3.1.0/lib/net20/OpenTK.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/OpenTK.3.1.0/lib/net20/OpenTK.dll -------------------------------------------------------------------------------- /packages/OpenTK.3.1.0/lib/net20/OpenTK.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/OpenTK.3.1.0/lib/net20/OpenTK.pdb -------------------------------------------------------------------------------- /packages/OpenTK.3.1.0/lib/net20/OpenTK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/OpenTK.3.1.0/lib/net20/OpenTK.xml -------------------------------------------------------------------------------- /packages/OpenTK.GLControl.3.1.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/OpenTK.GLControl.3.1.0/.signature.p7s -------------------------------------------------------------------------------- /packages/OpenTK.GLControl.3.1.0/OpenTK.GLControl.3.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/OpenTK.GLControl.3.1.0/OpenTK.GLControl.3.1.0.nupkg -------------------------------------------------------------------------------- /packages/OpenTK.GLControl.3.1.0/lib/net20/OpenTK.GLControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/OpenTK.GLControl.3.1.0/lib/net20/OpenTK.GLControl.dll -------------------------------------------------------------------------------- /packages/OpenTK.GLControl.3.1.0/lib/net20/OpenTK.GLControl.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/OpenTK.GLControl.3.1.0/lib/net20/OpenTK.GLControl.pdb -------------------------------------------------------------------------------- /packages/OpenTK.GLControl.3.1.0/lib/net20/OpenTK.GLControl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/OpenTK.GLControl.3.1.0/lib/net20/OpenTK.GLControl.xml -------------------------------------------------------------------------------- /packages/SharpRaven.2.4.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/SharpRaven.2.4.0/.signature.p7s -------------------------------------------------------------------------------- /packages/SharpRaven.2.4.0/SharpRaven.2.4.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/SharpRaven.2.4.0/SharpRaven.2.4.0.nupkg -------------------------------------------------------------------------------- /packages/SharpRaven.2.4.0/lib/net35/SharpRaven.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/SharpRaven.2.4.0/lib/net35/SharpRaven.dll -------------------------------------------------------------------------------- /packages/SharpRaven.2.4.0/lib/net40/SharpRaven.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/SharpRaven.2.4.0/lib/net40/SharpRaven.dll -------------------------------------------------------------------------------- /packages/SharpRaven.2.4.0/lib/net45/SharpRaven.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/SharpRaven.2.4.0/lib/net45/SharpRaven.dll -------------------------------------------------------------------------------- /packages/SharpRaven.2.4.0/lib/net471/SharpRaven.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/SharpRaven.2.4.0/lib/net471/SharpRaven.dll -------------------------------------------------------------------------------- /packages/SharpRaven.2.4.0/lib/netstandard2.0/SharpRaven.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/SharpRaven.2.4.0/lib/netstandard2.0/SharpRaven.dll -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/System.Runtime.InteropServices.RuntimeInformation.4.3.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/System.Runtime.InteropServices.RuntimeInformation.4.3.0.nupkg -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/dotnet_library_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/dotnet_library_license.txt -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll -------------------------------------------------------------------------------- /packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mania-Visualization-Project/ManiaRTRender/HEAD/packages/System.Runtime.InteropServices.RuntimeInformation.4.3.0/runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll --------------------------------------------------------------------------------