├── .vs └── ValorantSharp │ ├── DesignTimeBuild │ └── .dtbcache.v2 │ └── v16 │ └── .suo ├── README.md ├── ValorantSharp.Tests ├── Modules │ └── TestModule.cs ├── Program.cs ├── ValorantSharp.Tests.csproj └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ ├── ValorantSharp.Tests.AssemblyInfo.cs │ │ ├── ValorantSharp.Tests.AssemblyInfoInputs.cache │ │ ├── ValorantSharp.Tests.assets.cache │ │ ├── ValorantSharp.Tests.csproj.AssemblyReference.cache │ │ ├── ValorantSharp.Tests.csproj.CopyComplete │ │ ├── ValorantSharp.Tests.csproj.CoreCompileInputs.cache │ │ ├── ValorantSharp.Tests.csproj.FileListAbsolute.txt │ │ ├── ValorantSharp.Tests.csprojAssemblyReference.cache │ │ ├── ValorantSharp.Tests.dll │ │ ├── ValorantSharp.Tests.exe │ │ ├── ValorantSharp.Tests.genruntimeconfig.cache │ │ ├── ValorantSharp.Tests.pdb │ │ └── apphost.exe │ ├── ValorantSharp.Tests.csproj.nuget.dgspec.json │ ├── ValorantSharp.Tests.csproj.nuget.g.props │ ├── ValorantSharp.Tests.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── ValorantSharp.sln └── ValorantSharp ├── API └── ValorantAPI.cs ├── Enums ├── ValorantFriendState.cs ├── ValorantGLZRegion.cs ├── ValorantLogLevel.cs └── ValorantXMPPRegion.cs ├── Exceptions └── ValorantException.cs ├── Objects ├── Auth │ ├── AuthConfig.cs │ └── AuthResponse.cs ├── Game │ ├── ValorantFriend.cs │ ├── ValorantMessage.cs │ ├── ValorantPresence.cs │ └── ValorantUser.cs ├── ValorantCommandContext.cs ├── ValorantRegion.cs └── ValorantResult.cs ├── ValorantClient.cs ├── ValorantClientBuilder.cs ├── ValorantLogger.cs ├── ValorantSharp.csproj ├── XMPP ├── ValorantXMPP.cs └── XMPPClient.cs └── obj ├── Debug ├── netcoreapp3.0 │ ├── .NETCoreApp,Version=v3.0.AssemblyAttributes.cs │ ├── ValorantSharp.AssemblyInfo.cs │ ├── ValorantSharp.AssemblyInfoInputs.cache │ ├── ValorantSharp.assets.cache │ ├── ValorantSharp.csproj.CoreCompileInputs.cache │ ├── ValorantSharp.csproj.FileListAbsolute.txt │ ├── ValorantSharp.csprojAssemblyReference.cache │ ├── ValorantSharp.dll │ └── ValorantSharp.pdb ├── netcoreapp3.1 │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ ├── ValorantSharp.AssemblyInfo.cs │ ├── ValorantSharp.AssemblyInfoInputs.cache │ ├── ValorantSharp.assets.cache │ ├── ValorantSharp.csproj.AssemblyReference.cache │ ├── ValorantSharp.csproj.CoreCompileInputs.cache │ ├── ValorantSharp.csproj.FileListAbsolute.txt │ ├── ValorantSharp.csprojAssemblyReference.cache │ ├── ValorantSharp.dll │ └── ValorantSharp.pdb └── netstandard2.0 │ ├── .NETStandard,Version=v2.0.AssemblyAttributes.cs │ ├── ValorantSharp.AssemblyInfo.cs │ ├── ValorantSharp.AssemblyInfoInputs.cache │ ├── ValorantSharp.assets.cache │ ├── ValorantSharp.csproj.CoreCompileInputs.cache │ ├── ValorantSharp.csproj.FileListAbsolute.txt │ ├── ValorantSharp.csprojAssemblyReference.cache │ ├── ValorantSharp.dll │ └── ValorantSharp.pdb ├── ValorantSharp.csproj.nuget.dgspec.json ├── ValorantSharp.csproj.nuget.g.props ├── ValorantSharp.csproj.nuget.g.targets ├── project.assets.json └── project.nuget.cache /.vs/ValorantSharp/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/.vs/ValorantSharp/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /.vs/ValorantSharp/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/.vs/ValorantSharp/v16/.suo -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/README.md -------------------------------------------------------------------------------- /ValorantSharp.Tests/Modules/TestModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp.Tests/Modules/TestModule.cs -------------------------------------------------------------------------------- /ValorantSharp.Tests/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp.Tests/Program.cs -------------------------------------------------------------------------------- /ValorantSharp.Tests/ValorantSharp.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp.Tests/ValorantSharp.Tests.csproj -------------------------------------------------------------------------------- /ValorantSharp.Tests/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp.Tests/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs -------------------------------------------------------------------------------- /ValorantSharp.Tests/obj/Debug/netcoreapp3.1/ValorantSharp.Tests.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp.Tests/obj/Debug/netcoreapp3.1/ValorantSharp.Tests.AssemblyInfo.cs -------------------------------------------------------------------------------- /ValorantSharp.Tests/obj/Debug/netcoreapp3.1/ValorantSharp.Tests.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp.Tests/obj/Debug/netcoreapp3.1/ValorantSharp.Tests.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /ValorantSharp.Tests/obj/Debug/netcoreapp3.1/ValorantSharp.Tests.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp.Tests/obj/Debug/netcoreapp3.1/ValorantSharp.Tests.assets.cache -------------------------------------------------------------------------------- /ValorantSharp.Tests/obj/Debug/netcoreapp3.1/ValorantSharp.Tests.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp.Tests/obj/Debug/netcoreapp3.1/ValorantSharp.Tests.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /ValorantSharp.Tests/obj/Debug/netcoreapp3.1/ValorantSharp.Tests.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ValorantSharp.Tests/obj/Debug/netcoreapp3.1/ValorantSharp.Tests.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | d8fca3bbcb633af80d582a8beefc44cfc16e49d9 2 | -------------------------------------------------------------------------------- /ValorantSharp.Tests/obj/Debug/netcoreapp3.1/ValorantSharp.Tests.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp.Tests/obj/Debug/netcoreapp3.1/ValorantSharp.Tests.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /ValorantSharp.Tests/obj/Debug/netcoreapp3.1/ValorantSharp.Tests.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp.Tests/obj/Debug/netcoreapp3.1/ValorantSharp.Tests.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /ValorantSharp.Tests/obj/Debug/netcoreapp3.1/ValorantSharp.Tests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp.Tests/obj/Debug/netcoreapp3.1/ValorantSharp.Tests.dll -------------------------------------------------------------------------------- /ValorantSharp.Tests/obj/Debug/netcoreapp3.1/ValorantSharp.Tests.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp.Tests/obj/Debug/netcoreapp3.1/ValorantSharp.Tests.exe -------------------------------------------------------------------------------- /ValorantSharp.Tests/obj/Debug/netcoreapp3.1/ValorantSharp.Tests.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /ValorantSharp.Tests/obj/Debug/netcoreapp3.1/ValorantSharp.Tests.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp.Tests/obj/Debug/netcoreapp3.1/ValorantSharp.Tests.pdb -------------------------------------------------------------------------------- /ValorantSharp.Tests/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp.Tests/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /ValorantSharp.Tests/obj/ValorantSharp.Tests.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp.Tests/obj/ValorantSharp.Tests.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /ValorantSharp.Tests/obj/ValorantSharp.Tests.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp.Tests/obj/ValorantSharp.Tests.csproj.nuget.g.props -------------------------------------------------------------------------------- /ValorantSharp.Tests/obj/ValorantSharp.Tests.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp.Tests/obj/ValorantSharp.Tests.csproj.nuget.g.targets -------------------------------------------------------------------------------- /ValorantSharp.Tests/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp.Tests/obj/project.assets.json -------------------------------------------------------------------------------- /ValorantSharp.Tests/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp.Tests/obj/project.nuget.cache -------------------------------------------------------------------------------- /ValorantSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp.sln -------------------------------------------------------------------------------- /ValorantSharp/API/ValorantAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/API/ValorantAPI.cs -------------------------------------------------------------------------------- /ValorantSharp/Enums/ValorantFriendState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/Enums/ValorantFriendState.cs -------------------------------------------------------------------------------- /ValorantSharp/Enums/ValorantGLZRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/Enums/ValorantGLZRegion.cs -------------------------------------------------------------------------------- /ValorantSharp/Enums/ValorantLogLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/Enums/ValorantLogLevel.cs -------------------------------------------------------------------------------- /ValorantSharp/Enums/ValorantXMPPRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/Enums/ValorantXMPPRegion.cs -------------------------------------------------------------------------------- /ValorantSharp/Exceptions/ValorantException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/Exceptions/ValorantException.cs -------------------------------------------------------------------------------- /ValorantSharp/Objects/Auth/AuthConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/Objects/Auth/AuthConfig.cs -------------------------------------------------------------------------------- /ValorantSharp/Objects/Auth/AuthResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/Objects/Auth/AuthResponse.cs -------------------------------------------------------------------------------- /ValorantSharp/Objects/Game/ValorantFriend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/Objects/Game/ValorantFriend.cs -------------------------------------------------------------------------------- /ValorantSharp/Objects/Game/ValorantMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/Objects/Game/ValorantMessage.cs -------------------------------------------------------------------------------- /ValorantSharp/Objects/Game/ValorantPresence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/Objects/Game/ValorantPresence.cs -------------------------------------------------------------------------------- /ValorantSharp/Objects/Game/ValorantUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/Objects/Game/ValorantUser.cs -------------------------------------------------------------------------------- /ValorantSharp/Objects/ValorantCommandContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/Objects/ValorantCommandContext.cs -------------------------------------------------------------------------------- /ValorantSharp/Objects/ValorantRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/Objects/ValorantRegion.cs -------------------------------------------------------------------------------- /ValorantSharp/Objects/ValorantResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/Objects/ValorantResult.cs -------------------------------------------------------------------------------- /ValorantSharp/ValorantClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/ValorantClient.cs -------------------------------------------------------------------------------- /ValorantSharp/ValorantClientBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/ValorantClientBuilder.cs -------------------------------------------------------------------------------- /ValorantSharp/ValorantLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/ValorantLogger.cs -------------------------------------------------------------------------------- /ValorantSharp/ValorantSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/ValorantSharp.csproj -------------------------------------------------------------------------------- /ValorantSharp/XMPP/ValorantXMPP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/XMPP/ValorantXMPP.cs -------------------------------------------------------------------------------- /ValorantSharp/XMPP/XMPPClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/XMPP/XMPPClient.cs -------------------------------------------------------------------------------- /ValorantSharp/obj/Debug/netcoreapp3.0/.NETCoreApp,Version=v3.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/obj/Debug/netcoreapp3.0/.NETCoreApp,Version=v3.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /ValorantSharp/obj/Debug/netcoreapp3.0/ValorantSharp.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/obj/Debug/netcoreapp3.0/ValorantSharp.AssemblyInfo.cs -------------------------------------------------------------------------------- /ValorantSharp/obj/Debug/netcoreapp3.0/ValorantSharp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | aee68f14b18d7e3dd3f245a923421958b6a04743 2 | -------------------------------------------------------------------------------- /ValorantSharp/obj/Debug/netcoreapp3.0/ValorantSharp.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/obj/Debug/netcoreapp3.0/ValorantSharp.assets.cache -------------------------------------------------------------------------------- /ValorantSharp/obj/Debug/netcoreapp3.0/ValorantSharp.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 137dfc78c002192b4355ce40bf6fa1455abae428 2 | -------------------------------------------------------------------------------- /ValorantSharp/obj/Debug/netcoreapp3.0/ValorantSharp.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/obj/Debug/netcoreapp3.0/ValorantSharp.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /ValorantSharp/obj/Debug/netcoreapp3.0/ValorantSharp.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/obj/Debug/netcoreapp3.0/ValorantSharp.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /ValorantSharp/obj/Debug/netcoreapp3.0/ValorantSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/obj/Debug/netcoreapp3.0/ValorantSharp.dll -------------------------------------------------------------------------------- /ValorantSharp/obj/Debug/netcoreapp3.0/ValorantSharp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/obj/Debug/netcoreapp3.0/ValorantSharp.pdb -------------------------------------------------------------------------------- /ValorantSharp/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs -------------------------------------------------------------------------------- /ValorantSharp/obj/Debug/netcoreapp3.1/ValorantSharp.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/obj/Debug/netcoreapp3.1/ValorantSharp.AssemblyInfo.cs -------------------------------------------------------------------------------- /ValorantSharp/obj/Debug/netcoreapp3.1/ValorantSharp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | aee68f14b18d7e3dd3f245a923421958b6a04743 2 | -------------------------------------------------------------------------------- /ValorantSharp/obj/Debug/netcoreapp3.1/ValorantSharp.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/obj/Debug/netcoreapp3.1/ValorantSharp.assets.cache -------------------------------------------------------------------------------- /ValorantSharp/obj/Debug/netcoreapp3.1/ValorantSharp.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/obj/Debug/netcoreapp3.1/ValorantSharp.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /ValorantSharp/obj/Debug/netcoreapp3.1/ValorantSharp.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a3fa975a8bbadf2da6e5132c532d28fbef30a577 2 | -------------------------------------------------------------------------------- /ValorantSharp/obj/Debug/netcoreapp3.1/ValorantSharp.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/obj/Debug/netcoreapp3.1/ValorantSharp.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /ValorantSharp/obj/Debug/netcoreapp3.1/ValorantSharp.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/obj/Debug/netcoreapp3.1/ValorantSharp.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /ValorantSharp/obj/Debug/netcoreapp3.1/ValorantSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/obj/Debug/netcoreapp3.1/ValorantSharp.dll -------------------------------------------------------------------------------- /ValorantSharp/obj/Debug/netcoreapp3.1/ValorantSharp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/obj/Debug/netcoreapp3.1/ValorantSharp.pdb -------------------------------------------------------------------------------- /ValorantSharp/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /ValorantSharp/obj/Debug/netstandard2.0/ValorantSharp.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/obj/Debug/netstandard2.0/ValorantSharp.AssemblyInfo.cs -------------------------------------------------------------------------------- /ValorantSharp/obj/Debug/netstandard2.0/ValorantSharp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | aee68f14b18d7e3dd3f245a923421958b6a04743 2 | -------------------------------------------------------------------------------- /ValorantSharp/obj/Debug/netstandard2.0/ValorantSharp.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/obj/Debug/netstandard2.0/ValorantSharp.assets.cache -------------------------------------------------------------------------------- /ValorantSharp/obj/Debug/netstandard2.0/ValorantSharp.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 27a6e02d56aadbd04fc9e227acafb5f3fd01f274 2 | -------------------------------------------------------------------------------- /ValorantSharp/obj/Debug/netstandard2.0/ValorantSharp.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/obj/Debug/netstandard2.0/ValorantSharp.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /ValorantSharp/obj/Debug/netstandard2.0/ValorantSharp.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/obj/Debug/netstandard2.0/ValorantSharp.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /ValorantSharp/obj/Debug/netstandard2.0/ValorantSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/obj/Debug/netstandard2.0/ValorantSharp.dll -------------------------------------------------------------------------------- /ValorantSharp/obj/Debug/netstandard2.0/ValorantSharp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/obj/Debug/netstandard2.0/ValorantSharp.pdb -------------------------------------------------------------------------------- /ValorantSharp/obj/ValorantSharp.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/obj/ValorantSharp.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /ValorantSharp/obj/ValorantSharp.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/obj/ValorantSharp.csproj.nuget.g.props -------------------------------------------------------------------------------- /ValorantSharp/obj/ValorantSharp.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/obj/ValorantSharp.csproj.nuget.g.targets -------------------------------------------------------------------------------- /ValorantSharp/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/obj/project.assets.json -------------------------------------------------------------------------------- /ValorantSharp/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conorvenus/ValorantSharp/HEAD/ValorantSharp/obj/project.nuget.cache --------------------------------------------------------------------------------