├── .gitattributes ├── .gitignore ├── Core ├── Api │ ├── Endpoints.cs │ ├── HydraApiRequest.cs │ ├── HydraApiResponse.cs │ ├── HydraDokkenEndpoint.cs │ ├── HydraEndpoint.cs │ └── HydraProdEndpoint.cs ├── Authentication │ ├── AuthClients.cs │ ├── EpicAuthContainer.cs │ ├── EpicAuthUtil.cs │ ├── ExternalEpicAuthContainer.cs │ ├── HydraAuthContainer.cs │ ├── HydraAuthenticator.cs │ └── IAuthContainer.cs ├── Compression │ ├── HydraCompressedObject.cs │ └── HydraCompressionFormat.cs ├── Encoding │ ├── HydraBufferReader.cs │ ├── HydraBufferWriter.cs │ ├── HydraDecoder.cs │ └── HydraEncoder.cs ├── Extensions │ └── DictionaryExtensions.cs ├── HydraClient.cs ├── HydraClientConfiguration.cs ├── HydraPlayer.cs ├── Models │ ├── EpicAccessTokenResponse.cs │ ├── EpicExchangeCodeResponse.cs │ ├── EpicExternalAuthResponse.cs │ ├── HydraAccessAuthResponse.cs │ ├── HydraAccessRequestBody.cs │ ├── HydraAccountLookupRequestBody.cs │ ├── HydraAuthTokenRequestBody.cs │ ├── HydraAuthTokenResponse.cs │ ├── HydraBatchRequestBody.cs │ ├── HydraSelectCharacterRequestBody.cs │ ├── ItemSlugsArray.cs │ ├── PlayerInventory.cs │ ├── PlayerInvites.cs │ └── WarnerAccount.cs └── Objects │ └── HydraCalendarControl.cs ├── Facepunch.Steamworks.Win64.dll ├── HydraDotNet.csproj ├── HydraDotNet.sln ├── LICENSE.txt ├── Logo.png └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/.gitignore -------------------------------------------------------------------------------- /Core/Api/Endpoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Core/Api/Endpoints.cs -------------------------------------------------------------------------------- /Core/Api/HydraApiRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Core/Api/HydraApiRequest.cs -------------------------------------------------------------------------------- /Core/Api/HydraApiResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Core/Api/HydraApiResponse.cs -------------------------------------------------------------------------------- /Core/Api/HydraDokkenEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Core/Api/HydraDokkenEndpoint.cs -------------------------------------------------------------------------------- /Core/Api/HydraEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Core/Api/HydraEndpoint.cs -------------------------------------------------------------------------------- /Core/Api/HydraProdEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Core/Api/HydraProdEndpoint.cs -------------------------------------------------------------------------------- /Core/Authentication/AuthClients.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Core/Authentication/AuthClients.cs -------------------------------------------------------------------------------- /Core/Authentication/EpicAuthContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Core/Authentication/EpicAuthContainer.cs -------------------------------------------------------------------------------- /Core/Authentication/EpicAuthUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Core/Authentication/EpicAuthUtil.cs -------------------------------------------------------------------------------- /Core/Authentication/ExternalEpicAuthContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Core/Authentication/ExternalEpicAuthContainer.cs -------------------------------------------------------------------------------- /Core/Authentication/HydraAuthContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Core/Authentication/HydraAuthContainer.cs -------------------------------------------------------------------------------- /Core/Authentication/HydraAuthenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Core/Authentication/HydraAuthenticator.cs -------------------------------------------------------------------------------- /Core/Authentication/IAuthContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Core/Authentication/IAuthContainer.cs -------------------------------------------------------------------------------- /Core/Compression/HydraCompressedObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Core/Compression/HydraCompressedObject.cs -------------------------------------------------------------------------------- /Core/Compression/HydraCompressionFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Core/Compression/HydraCompressionFormat.cs -------------------------------------------------------------------------------- /Core/Encoding/HydraBufferReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Core/Encoding/HydraBufferReader.cs -------------------------------------------------------------------------------- /Core/Encoding/HydraBufferWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Core/Encoding/HydraBufferWriter.cs -------------------------------------------------------------------------------- /Core/Encoding/HydraDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Core/Encoding/HydraDecoder.cs -------------------------------------------------------------------------------- /Core/Encoding/HydraEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Core/Encoding/HydraEncoder.cs -------------------------------------------------------------------------------- /Core/Extensions/DictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Core/Extensions/DictionaryExtensions.cs -------------------------------------------------------------------------------- /Core/HydraClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Core/HydraClient.cs -------------------------------------------------------------------------------- /Core/HydraClientConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Core/HydraClientConfiguration.cs -------------------------------------------------------------------------------- /Core/HydraPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Core/HydraPlayer.cs -------------------------------------------------------------------------------- /Core/Models/EpicAccessTokenResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Core/Models/EpicAccessTokenResponse.cs -------------------------------------------------------------------------------- /Core/Models/EpicExchangeCodeResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Core/Models/EpicExchangeCodeResponse.cs -------------------------------------------------------------------------------- /Core/Models/EpicExternalAuthResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Core/Models/EpicExternalAuthResponse.cs -------------------------------------------------------------------------------- /Core/Models/HydraAccessAuthResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Core/Models/HydraAccessAuthResponse.cs -------------------------------------------------------------------------------- /Core/Models/HydraAccessRequestBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Core/Models/HydraAccessRequestBody.cs -------------------------------------------------------------------------------- /Core/Models/HydraAccountLookupRequestBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Core/Models/HydraAccountLookupRequestBody.cs -------------------------------------------------------------------------------- /Core/Models/HydraAuthTokenRequestBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Core/Models/HydraAuthTokenRequestBody.cs -------------------------------------------------------------------------------- /Core/Models/HydraAuthTokenResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Core/Models/HydraAuthTokenResponse.cs -------------------------------------------------------------------------------- /Core/Models/HydraBatchRequestBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Core/Models/HydraBatchRequestBody.cs -------------------------------------------------------------------------------- /Core/Models/HydraSelectCharacterRequestBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Core/Models/HydraSelectCharacterRequestBody.cs -------------------------------------------------------------------------------- /Core/Models/ItemSlugsArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Core/Models/ItemSlugsArray.cs -------------------------------------------------------------------------------- /Core/Models/PlayerInventory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Core/Models/PlayerInventory.cs -------------------------------------------------------------------------------- /Core/Models/PlayerInvites.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Core/Models/PlayerInvites.cs -------------------------------------------------------------------------------- /Core/Models/WarnerAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Core/Models/WarnerAccount.cs -------------------------------------------------------------------------------- /Core/Objects/HydraCalendarControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Core/Objects/HydraCalendarControl.cs -------------------------------------------------------------------------------- /Facepunch.Steamworks.Win64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Facepunch.Steamworks.Win64.dll -------------------------------------------------------------------------------- /HydraDotNet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/HydraDotNet.csproj -------------------------------------------------------------------------------- /HydraDotNet.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/HydraDotNet.sln -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/Logo.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheNaeem/HydraDotNet/HEAD/README.md --------------------------------------------------------------------------------