├── .gitignore ├── CHANGELOG.md ├── Examples └── HaloSharp.Console │ ├── App.config │ ├── Application.cs │ ├── HaloSharp.Console.csproj │ ├── IApplication.cs │ ├── Infrastructure │ ├── ApplicationModule.cs │ └── HaloSharpModule.cs │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── packages.config ├── LICENSE ├── README.md └── Source ├── HaloSharp.Test ├── Cache │ └── CacheTests.cs ├── Config │ ├── Halo5Config.cs │ ├── Halo5ForgeConfig.cs │ └── HaloWars2Config.cs ├── Converter │ ├── GuidConverterTests.cs │ └── TimeSpanConverterTests.cs ├── HaloSharp.Test.csproj ├── JSON │ ├── Common │ │ ├── identity.schema.json │ │ ├── iso-8061.schema.json │ │ ├── link.schema.json │ │ └── location.schema.json │ ├── Halo5 │ │ ├── Common │ │ │ └── variant.schema.json │ │ ├── Metadata │ │ │ ├── Common │ │ │ │ ├── requisition-pack.schema.json │ │ │ │ └── reward.schema.json │ │ │ ├── campaign-missions.json │ │ │ ├── campaign-missions.schema.json │ │ │ ├── commendations.json │ │ │ ├── commendations.schema.json │ │ │ ├── competitive-skill-rank-designations.json │ │ │ ├── competitive-skill-rank-designations.schema.json │ │ │ ├── enemies.json │ │ │ ├── enemies.schema.json │ │ │ ├── flexible-stats.json │ │ │ ├── flexible-stats.schema.json │ │ │ ├── game-base-variants.json │ │ │ ├── game-base-variants.schema.json │ │ │ ├── game-variant.json │ │ │ ├── game-variant.schema.json │ │ │ ├── impulses.json │ │ │ ├── impulses.schema.json │ │ │ ├── map-variant.json │ │ │ ├── map-variant.schema.json │ │ │ ├── maps.json │ │ │ ├── maps.schema.json │ │ │ ├── medals.json │ │ │ ├── medals.schema.json │ │ │ ├── playlists.json │ │ │ ├── playlists.schema.json │ │ │ ├── requisition-pack.json │ │ │ ├── requisition-pack.schema.json │ │ │ ├── requisition.json │ │ │ ├── requisition.schema.json │ │ │ ├── seasons.json │ │ │ ├── seasons.schema.json │ │ │ ├── skulls.json │ │ │ ├── skulls.schema.json │ │ │ ├── spartan-ranks.json │ │ │ ├── spartan-ranks.schema.json │ │ │ ├── team-colors.json │ │ │ ├── team-colors.schema.json │ │ │ ├── vehicles.json │ │ │ ├── vehicles.schema.json │ │ │ ├── weapons.json │ │ │ └── weapons.schema.json │ │ ├── Stats │ │ │ ├── CarnageReport │ │ │ │ ├── Common │ │ │ │ │ ├── boost-info.schema.json │ │ │ │ │ ├── credits-earned.schema.json │ │ │ │ │ ├── meta-commendation-delta.schema.json │ │ │ │ │ ├── oppenent-details.schema.json │ │ │ │ │ ├── progressive-commendation-delta.schema.json │ │ │ │ │ ├── reward-set.schema.json │ │ │ │ │ ├── team-stat.schema.json │ │ │ │ │ └── xp-info.schema.json │ │ │ │ ├── arena-match.json │ │ │ │ ├── arena-match.schema.json │ │ │ │ ├── campaign-match.json │ │ │ │ ├── campaign-match.schema.json │ │ │ │ ├── custom-match.json │ │ │ │ ├── custom-match.schema.json │ │ │ │ ├── match-events.json │ │ │ │ ├── match-events.schema.json │ │ │ │ ├── warzone-match.json │ │ │ │ └── warzone-match.schema.json │ │ │ ├── Common │ │ │ │ ├── base-stat.schema.json │ │ │ │ ├── competitive-skill-ranking.schema.json │ │ │ │ └── flexible-stats.schema.json │ │ │ ├── Lifetime │ │ │ │ ├── Common │ │ │ │ │ ├── game-base-variant-stat.schema.json │ │ │ │ │ └── top-game-base-variant.schema.json │ │ │ │ ├── arena-service-record.json │ │ │ │ ├── arena-service-record.schema.json │ │ │ │ ├── campaign-service-record.json │ │ │ │ ├── campaign-service-record.schema.json │ │ │ │ ├── custom-service-record.json │ │ │ │ ├── custom-service-record.schema.json │ │ │ │ ├── warzone-service-record.json │ │ │ │ └── warzone-service-record.schema.json │ │ │ ├── leaderboard.json │ │ │ ├── leaderboard.schema.json │ │ │ ├── matches.json │ │ │ └── matches.schema.json │ │ └── UserGeneratedContent │ │ │ ├── Common │ │ │ └── stats.schema.json │ │ │ ├── game-variant.json │ │ │ ├── game-variant.schema.json │ │ │ ├── game-variants.json │ │ │ ├── game-variants.schema.json │ │ │ ├── map-variant.json │ │ │ ├── map-variant.schema.json │ │ │ ├── map-variants.json │ │ │ └── map-variants.schema.json │ └── HaloWars2 │ │ ├── Metadata │ │ ├── Common │ │ │ ├── batch-localization.schema.json │ │ │ ├── common.schema.json │ │ │ ├── content-item-type-b.schema.json │ │ │ ├── content-item-type-c.schema.json │ │ │ ├── content-item-type-d.schema.json │ │ │ ├── difficulty.schema.json │ │ │ ├── empty.schema.json │ │ │ ├── image.schema.json │ │ │ ├── link.schema.json │ │ │ ├── localization.schema.json │ │ │ ├── map.schema.json │ │ │ ├── pack.schema.json │ │ │ ├── paging.schema.json │ │ │ └── playlist.schema.json │ │ ├── campaign-levels.json │ │ ├── campaign-levels.schema.json │ │ ├── campaign-logs.json │ │ ├── campaign-logs.schema.json │ │ ├── card-keywords.json │ │ ├── card-keywords.schema.json │ │ ├── cards.json │ │ ├── cards.schema.json │ │ ├── csr-designations.json │ │ ├── csr-designations.schema.json │ │ ├── difficulties.json │ │ ├── difficulties.schema.json │ │ ├── game-object-categories.json │ │ ├── game-object-categories.schema.json │ │ ├── game-objects.json │ │ ├── game-objects.schema.json │ │ ├── leader-powers.json │ │ ├── leader-powers.schema.json │ │ ├── leaders.json │ │ ├── leaders.schema.json │ │ ├── maps.json │ │ ├── maps.schema.json │ │ ├── packs.json │ │ ├── packs.schema.json │ │ ├── playlists.json │ │ ├── playlists.schema.json │ │ ├── seasons.json │ │ ├── seasons.schema.json │ │ ├── spartan-ranks.json │ │ ├── spartan-ranks.schema.json │ │ ├── techs.json │ │ └── techs.schema.json │ │ └── Stats │ │ ├── Common │ │ ├── competitive-skill-rank.schema.json │ │ ├── experience-progress.schema.json │ │ ├── leader-stats.schema.json │ │ ├── matchmaking-rank.schema.json │ │ ├── rating-progress.schema.json │ │ └── stats.schema.json │ │ ├── campaign-progress.json │ │ ├── campaign-progress.schema.json │ │ ├── experience-summary.json │ │ ├── experience-summary.schema.json │ │ ├── match-events.json │ │ ├── match-events.schema.json │ │ ├── match-history.json │ │ ├── match-history.schema.json │ │ ├── match.json │ │ ├── match.schema.json │ │ ├── player-summary.json │ │ ├── player-summary.schema.json │ │ ├── playlist-ratings.json │ │ ├── playlist-ratings.schema.json │ │ ├── season-summary.json │ │ └── season-summary.schema.json ├── Properties │ └── AssemblyInfo.cs ├── Query │ ├── Halo5 │ │ ├── Metadata │ │ │ ├── GetCampaignMissionsTests.cs │ │ │ ├── GetCommendationsTests.cs │ │ │ ├── GetCompetitiveSkillRankDesignationsTests.cs │ │ │ ├── GetEnemiesTests.cs │ │ │ ├── GetFlexibleStatsTests.cs │ │ │ ├── GetGameBaseVariantsTests.cs │ │ │ ├── GetGameVariantTests.cs │ │ │ ├── GetImpulsesTests.cs │ │ │ ├── GetMapVariantTests.cs │ │ │ ├── GetMapsTests.cs │ │ │ ├── GetMedalsTests.cs │ │ │ ├── GetPlaylistsTests.cs │ │ │ ├── GetRequisitionPackTests.cs │ │ │ ├── GetRequisitionTests.cs │ │ │ ├── GetSeasonsTests.cs │ │ │ ├── GetSkullsTests.cs │ │ │ ├── GetSpartanRanksTests.cs │ │ │ ├── GetTeamColorsTests.cs │ │ │ ├── GetVehiclesTests.cs │ │ │ └── GetWeaponsTests.cs │ │ ├── Profile │ │ │ ├── GetEmblemImageTests.cs │ │ │ └── GetSpartanImageTests.cs │ │ ├── Stats │ │ │ ├── CarnageReport │ │ │ │ ├── GetArenaMatchDetailsTests.cs │ │ │ │ ├── GetCampaignMatchDetailsTests.cs │ │ │ │ ├── GetCustomMatchDetailsTests.cs │ │ │ │ ├── GetMatchEventsTests.cs │ │ │ │ └── GetWarzoneMatchDetailsTests.cs │ │ │ ├── GetLeaderboardTests.cs │ │ │ ├── GetMatchesTests.cs │ │ │ └── Lifetime │ │ │ │ ├── GetArenaServiceRecordTests.cs │ │ │ │ ├── GetCampaignServiceRecordTests.cs │ │ │ │ ├── GetCustomServiceRecordTests.cs │ │ │ │ └── GetWarzoneServiceRecordTests.cs │ │ └── UserGeneratedContent │ │ │ ├── GetGameVariantTests.cs │ │ │ ├── GetMapVariantTests.cs │ │ │ ├── ListGameVariantsTests.cs │ │ │ └── ListMapVariantsTests.cs │ ├── Halo5Forge │ │ └── Stats │ │ │ ├── CarnageReport │ │ │ └── GetCustomMatchDetailsTests.cs │ │ │ ├── GetMatchesTests.cs │ │ │ └── Lifetime │ │ │ └── GetCustomServiceRecordTests.cs │ └── HaloWars2 │ │ ├── Metadata │ │ ├── GetCampaignLevelsTests.cs │ │ ├── GetCampaignLogsTests.cs │ │ ├── GetCardKeywordsTests.cs │ │ ├── GetCardsTests.cs │ │ ├── GetCompetitiveSkillRankDesignationsTests.cs │ │ ├── GetDifficultiesTests.cs │ │ ├── GetGameObjectCategoriesTests.cs │ │ ├── GetGameObjectsTests.cs │ │ ├── GetLeaderPowersTests.cs │ │ ├── GetLeadersTests.cs │ │ ├── GetMapsTests.cs │ │ ├── GetPacksTests.cs │ │ ├── GetPlaylistsTests.cs │ │ ├── GetSeasonsTests.cs │ │ ├── GetSpartanRanksTests.cs │ │ └── GetTechsTests.cs │ │ └── Stats │ │ ├── CarnageReport │ │ ├── GetMatchEventsTests.cs │ │ └── GetMatchTests.cs │ │ ├── GetMatchHistoryTests.cs │ │ └── Lifetime │ │ ├── GetCampaignProgressTests.cs │ │ ├── GetExperienceSummaryTests.cs │ │ ├── GetPlayerSummaryTests.cs │ │ ├── GetPlaylistRatingsTests.cs │ │ └── GetSeasonSummaryTests.cs ├── Schema │ ├── Halo5SchemaTests.cs │ └── HaloWars2SchemaTests.cs ├── Serialization │ ├── Halo5SerializationTests.cs │ └── HaloWars2SerializationTests.cs ├── Setup.cs ├── Utility │ ├── SchemaUtility.cs │ └── SerializationUtility.cs ├── app.config └── packages.config ├── HaloSharp.sln └── HaloSharp ├── Cache.cs ├── Converter ├── GuidConverter.cs ├── Halo5MatchEventConverter.cs ├── HaloWars2MatchEventConverter.cs ├── MillisecondConverter.cs └── TimeSpanConverter.cs ├── Exception ├── HaloApiException.cs └── ValidationException.cs ├── Extension ├── HaloSharpSessionExtensions.cs └── StringExtensions.cs ├── HaloClient.cs ├── HaloSession.cs ├── HaloSharp.csproj ├── HaloSharp.nuspec ├── HaloUriBuilder.cs ├── IHaloSession.cs ├── IQuery.cs ├── Model ├── CacheSettings.cs ├── Common │ ├── ISO8601.cs │ ├── Identity.cs │ ├── Link.cs │ ├── Location.cs │ └── MatchSet.cs ├── Enumeration.cs ├── Error │ ├── HaloApiError.cs │ └── ValidationError.cs ├── Halo5 │ ├── Common │ │ └── Variant.cs │ ├── Metadata │ │ ├── CampaignMission.cs │ │ ├── Commendation.cs │ │ ├── Common │ │ │ ├── RequisitionPack.cs │ │ │ └── Reward.cs │ │ ├── CompetitiveSkillRankDesignation.cs │ │ ├── Enemy.cs │ │ ├── FlexibleStat.cs │ │ ├── GameBaseVariant.cs │ │ ├── GameVariant.cs │ │ ├── Impulse.cs │ │ ├── Map.cs │ │ ├── MapVariant.cs │ │ ├── Medal.cs │ │ ├── Playlist.cs │ │ ├── Requisition.cs │ │ ├── Season.cs │ │ ├── Skull.cs │ │ ├── SpartanRank.cs │ │ ├── TeamColor.cs │ │ ├── Vehicle.cs │ │ └── Weapon.cs │ ├── Profile │ │ └── HaloImage.cs │ ├── Stats │ │ ├── CarnageReport │ │ │ ├── ArenaMatch.cs │ │ │ ├── CampaignMatch.cs │ │ │ ├── Common │ │ │ │ ├── BaseMatch.cs │ │ │ │ ├── BasePlayerStat.cs │ │ │ │ ├── BoostInfo.cs │ │ │ │ ├── CreditsEarned.cs │ │ │ │ ├── MetaCommendationDelta.cs │ │ │ │ ├── OpponentDetails.cs │ │ │ │ ├── ProgressiveCommendationDelta.cs │ │ │ │ ├── RewardSet.cs │ │ │ │ ├── TeamStat.cs │ │ │ │ └── XpInfo.cs │ │ │ ├── CustomMatch.cs │ │ │ ├── Events │ │ │ │ ├── Death.cs │ │ │ │ ├── Impulse.cs │ │ │ │ ├── MatchEvent.cs │ │ │ │ ├── Medal.cs │ │ │ │ ├── PlayerSpawn.cs │ │ │ │ ├── RoundEnd.cs │ │ │ │ ├── RoundStart.cs │ │ │ │ ├── WeaponDrop.cs │ │ │ │ ├── WeaponPickup.cs │ │ │ │ └── WeaponPickupPad.cs │ │ │ ├── MatchEventSummary.cs │ │ │ └── WarzoneMatch.cs │ │ ├── Common │ │ │ ├── BaseStat.cs │ │ │ ├── CompetitiveSkillRanking.cs │ │ │ └── FlexibleStats.cs │ │ ├── Leaderboard.cs │ │ ├── Lifetime │ │ │ ├── ArenaServiceRecord.cs │ │ │ ├── CampaignServiceRecord.cs │ │ │ ├── Common │ │ │ │ ├── BaseResult.cs │ │ │ │ ├── BaseServiceRecord.cs │ │ │ │ ├── BaseServiceRecordResult.cs │ │ │ │ ├── GameBaseVariantStat.cs │ │ │ │ └── TopGameBaseVariant.cs │ │ │ ├── CustomServiceRecord.cs │ │ │ └── WarzoneServiceRecord.cs │ │ └── MatchSet.cs │ └── UserGeneratedContent │ │ ├── Common │ │ └── Stats.cs │ │ ├── GameVariant.cs │ │ ├── GameVariantResult.cs │ │ ├── MapVariant.cs │ │ └── MapVariantResult.cs ├── HaloWars2 │ ├── Metadata │ │ ├── CampaignLevel │ │ │ ├── CampaignLevel.cs │ │ │ ├── DisplayInfo │ │ │ │ └── View.cs │ │ │ └── View.cs │ │ ├── CampaignLog │ │ │ ├── CampaignLog.cs │ │ │ └── View.cs │ │ ├── CampaignObjective │ │ │ ├── CampaignObjective.cs │ │ │ └── View.cs │ │ ├── Card │ │ │ ├── Card.cs │ │ │ ├── DisplayInfo │ │ │ │ ├── DisplayInfo.cs │ │ │ │ └── View.cs │ │ │ └── View.cs │ │ ├── CardKeyword │ │ │ ├── CardKeyword.cs │ │ │ ├── DisplayInfo │ │ │ │ └── View.cs │ │ │ └── View.cs │ │ ├── Common.cs │ │ ├── CompetitiveSkillRankDesignation │ │ │ ├── CompetitiveSkillRankDesignation.cs │ │ │ ├── DisplayInfo │ │ │ │ ├── DisplayInfo.cs │ │ │ │ └── View.cs │ │ │ └── View.cs │ │ ├── CompetitiveSkillRankDesignationTier │ │ │ ├── Tier.cs │ │ │ └── View.cs │ │ ├── ContentItemTypeA.cs │ │ ├── ContentItemTypeB.cs │ │ ├── ContentItemTypeC.cs │ │ ├── ContentItemTypeD.cs │ │ ├── Difficulty │ │ │ ├── Difficulty.cs │ │ │ ├── DisplayInfo │ │ │ │ └── View.cs │ │ │ └── View.cs │ │ ├── DisplayInfo │ │ │ ├── BatchLocalization.cs │ │ │ ├── DisplayInfo.cs │ │ │ ├── Localization.cs │ │ │ └── View.cs │ │ ├── GameObject │ │ │ ├── DisplayInfo │ │ │ │ └── View.cs │ │ │ ├── GameObject.cs │ │ │ └── View.cs │ │ ├── GameObjectCategory │ │ │ └── View.cs │ │ ├── Image │ │ │ ├── Image.cs │ │ │ ├── Media.cs │ │ │ └── View.cs │ │ ├── Leader │ │ │ ├── DisplayInfo │ │ │ │ └── View.cs │ │ │ ├── Leader.cs │ │ │ └── View.cs │ │ ├── LeaderPower │ │ │ ├── DisplayInfo │ │ │ │ └── View.cs │ │ │ ├── LeaderPower.cs │ │ │ └── View.cs │ │ ├── Link.cs │ │ ├── Map │ │ │ ├── DisplayInfo │ │ │ │ └── View.cs │ │ │ ├── Map.cs │ │ │ └── View.cs │ │ ├── Pack │ │ │ ├── Displayinfo │ │ │ │ └── View.cs │ │ │ ├── Pack.cs │ │ │ └── View.cs │ │ ├── PagedResponse.cs │ │ ├── Paging.cs │ │ ├── Playlist │ │ │ ├── CardsFixedAtLevel.cs │ │ │ ├── Displayinfo │ │ │ │ └── View.cs │ │ │ ├── Playlist.cs │ │ │ └── View.cs │ │ ├── PlaylistEntry │ │ │ ├── PlaylistEntry.cs │ │ │ └── View.cs │ │ ├── Season │ │ │ ├── DisplayInfo │ │ │ │ └── View.cs │ │ │ ├── Season.cs │ │ │ └── View.cs │ │ ├── Skull │ │ │ ├── Skull.cs │ │ │ └── View.cs │ │ ├── SpartanRank │ │ │ ├── DisplayInfo │ │ │ │ ├── DisplayInfo.cs │ │ │ │ └── View.cs │ │ │ ├── SpartanRank.cs │ │ │ └── View.cs │ │ ├── StartingArmy │ │ │ ├── DisplayInfo │ │ │ │ ├── DisplayInfo.cs │ │ │ │ └── View.cs │ │ │ ├── StartingArmy.cs │ │ │ └── View.cs │ │ ├── Tech │ │ │ ├── DisplayInfo │ │ │ │ └── View.cs │ │ │ ├── Tech.cs │ │ │ └── View.cs │ │ └── View.cs │ └── Stats │ │ ├── CarnageReport │ │ ├── Events │ │ │ ├── BuildingConstructionCompleted.cs │ │ │ ├── BuildingConstructionQueued.cs │ │ │ ├── BuildingRecycled.cs │ │ │ ├── BuildingUpgraded.cs │ │ │ ├── CardCycled.cs │ │ │ ├── CardPlayed.cs │ │ │ ├── Death.cs │ │ │ ├── FirefightWaveCompleted.cs │ │ │ ├── FirefightWaveSpawned.cs │ │ │ ├── FirefightWaveStarted.cs │ │ │ ├── LeaderPowerCast.cs │ │ │ ├── LeaderPowerUnlocked.cs │ │ │ ├── ManaOrbCollected.cs │ │ │ ├── MatchEnd.cs │ │ │ ├── MatchEvent.cs │ │ │ ├── MatchStart.cs │ │ │ ├── PlayerEliminated.cs │ │ │ ├── PlayerJoinedMatch.cs │ │ │ ├── PlayerLeftMatch.cs │ │ │ ├── PointCaptured.cs │ │ │ ├── PointCreated.cs │ │ │ ├── PointStatusChange.cs │ │ │ ├── ResourceHeartbeat.cs │ │ │ ├── ResourceTransferred.cs │ │ │ ├── TechResearched.cs │ │ │ ├── UnitControlTransferred.cs │ │ │ ├── UnitPromoted.cs │ │ │ └── UnitTrained.cs │ │ ├── Match.cs │ │ └── MatchEventSummary.cs │ │ ├── Common │ │ ├── CompetitiveSkillRanking.cs │ │ ├── ExperienceProgress.cs │ │ ├── MatchmakingRanking.cs │ │ ├── RatingProgress.cs │ │ ├── Stats.cs │ │ └── Team.cs │ │ ├── Lifetime │ │ ├── CampaignSummary.cs │ │ ├── ExperienceSummaryResultSet.cs │ │ ├── PlayerSummary.cs │ │ ├── PlaylistSummaryResultSet.cs │ │ └── SeasonSummary.cs │ │ └── PlayerMatch.cs ├── Product.cs └── ValidationResult.cs ├── Properties └── AssemblyInfo.cs ├── Query ├── Halo5 │ ├── Metadata │ │ ├── GetCampaignMissions.cs │ │ ├── GetCommendations.cs │ │ ├── GetCompetitiveSkillRankDesignations.cs │ │ ├── GetEnemies.cs │ │ ├── GetFlexibleStats.cs │ │ ├── GetGameBaseVariants.cs │ │ ├── GetGameVariant.cs │ │ ├── GetImpulses.cs │ │ ├── GetMapVariant.cs │ │ ├── GetMaps.cs │ │ ├── GetMedals.cs │ │ ├── GetPlaylists.cs │ │ ├── GetRequisition.cs │ │ ├── GetRequisitionPack.cs │ │ ├── GetSeasons.cs │ │ ├── GetSkulls.cs │ │ ├── GetSpartanRanks.cs │ │ ├── GetTeamColors.cs │ │ ├── GetVehicles.cs │ │ └── GetWeapons.cs │ ├── Profile │ │ ├── GetEmblemImage.cs │ │ └── GetSpartanImage.cs │ ├── Stats │ │ ├── CarnageReport │ │ │ ├── GetArenaMatchDetails.cs │ │ │ ├── GetCampaignMatchDetails.cs │ │ │ ├── GetCustomMatchDetails.cs │ │ │ ├── GetMatchEvents.cs │ │ │ └── GetWarzoneMatchDetails.cs │ │ ├── GetLeaderboard.cs │ │ ├── GetMatchHistory.cs │ │ └── Lifetime │ │ │ ├── GetArenaServiceRecord.cs │ │ │ ├── GetCampaignServiceRecord.cs │ │ │ ├── GetCustomServiceRecord.cs │ │ │ └── GetWarzoneServiceRecord.cs │ └── UserGeneratedContent │ │ ├── GetGameVariant.cs │ │ ├── GetMapVariant.cs │ │ ├── ListGameVariants.cs │ │ └── ListMapVariants.cs ├── Halo5Forge │ └── Stats │ │ ├── CarnageReport │ │ └── GetCustomMatchDetails.cs │ │ ├── GetMatchHistory.cs │ │ └── Lifetime │ │ └── GetCustomServiceRecord.cs ├── HaloWars2 │ ├── Metadata │ │ ├── GetCampaignLevels.cs │ │ ├── GetCampaignLogs.cs │ │ ├── GetCardKeywords.cs │ │ ├── GetCards.cs │ │ ├── GetCompetitiveSkillRankDesignations.cs │ │ ├── GetDifficulties.cs │ │ ├── GetGameObjectCategories.cs │ │ ├── GetGameObjects.cs │ │ ├── GetLeaderPowers.cs │ │ ├── GetLeaders.cs │ │ ├── GetMaps.cs │ │ ├── GetPacks.cs │ │ ├── GetPlaylists.cs │ │ ├── GetSeasons.cs │ │ ├── GetSpartanRanks.cs │ │ └── GetTechs.cs │ └── Stats │ │ ├── CarnageReport │ │ ├── GetMatchDetails.cs │ │ └── GetMatchEvents.cs │ │ ├── GetMatchHistory.cs │ │ └── Lifetime │ │ ├── GetCampaignSummary.cs │ │ ├── GetExperienceSummary.cs │ │ ├── GetPlaylistRatings.cs │ │ ├── GetSeasonSummary.cs │ │ └── GetSummary.cs ├── ImageQuery.cs └── Query.cs ├── RateGate.cs ├── Validation └── Common │ ├── GamertagValidator.cs │ ├── GuidValidator.cs │ ├── ImageSizeValidator.cs │ ├── StartAtValidator.cs │ └── TakeValidator.cs └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Examples/HaloSharp.Console/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Examples/HaloSharp.Console/App.config -------------------------------------------------------------------------------- /Examples/HaloSharp.Console/Application.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Examples/HaloSharp.Console/Application.cs -------------------------------------------------------------------------------- /Examples/HaloSharp.Console/HaloSharp.Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Examples/HaloSharp.Console/HaloSharp.Console.csproj -------------------------------------------------------------------------------- /Examples/HaloSharp.Console/IApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Examples/HaloSharp.Console/IApplication.cs -------------------------------------------------------------------------------- /Examples/HaloSharp.Console/Infrastructure/ApplicationModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Examples/HaloSharp.Console/Infrastructure/ApplicationModule.cs -------------------------------------------------------------------------------- /Examples/HaloSharp.Console/Infrastructure/HaloSharpModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Examples/HaloSharp.Console/Infrastructure/HaloSharpModule.cs -------------------------------------------------------------------------------- /Examples/HaloSharp.Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Examples/HaloSharp.Console/Program.cs -------------------------------------------------------------------------------- /Examples/HaloSharp.Console/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Examples/HaloSharp.Console/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/HaloSharp.Console/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Examples/HaloSharp.Console/packages.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/README.md -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Cache/CacheTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Cache/CacheTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Config/Halo5Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Config/Halo5Config.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Config/Halo5ForgeConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Config/Halo5ForgeConfig.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Config/HaloWars2Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Config/HaloWars2Config.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Converter/GuidConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Converter/GuidConverterTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Converter/TimeSpanConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Converter/TimeSpanConverterTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/HaloSharp.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/HaloSharp.Test.csproj -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Common/identity.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Common/identity.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Common/iso-8061.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Common/iso-8061.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Common/link.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Common/link.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Common/location.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Common/location.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Common/variant.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Common/variant.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/Common/requisition-pack.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/Common/requisition-pack.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/Common/reward.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/Common/reward.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/campaign-missions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/campaign-missions.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/campaign-missions.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/campaign-missions.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/commendations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/commendations.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/commendations.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/commendations.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/competitive-skill-rank-designations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/competitive-skill-rank-designations.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/competitive-skill-rank-designations.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/competitive-skill-rank-designations.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/enemies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/enemies.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/enemies.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/enemies.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/flexible-stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/flexible-stats.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/flexible-stats.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/flexible-stats.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/game-base-variants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/game-base-variants.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/game-base-variants.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/game-base-variants.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/game-variant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/game-variant.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/game-variant.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/game-variant.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/impulses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/impulses.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/impulses.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/impulses.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/map-variant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/map-variant.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/map-variant.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/map-variant.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/maps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/maps.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/maps.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/maps.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/medals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/medals.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/medals.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/medals.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/playlists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/playlists.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/playlists.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/playlists.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/requisition-pack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/requisition-pack.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/requisition-pack.schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "$ref": "common/requisition-pack.schema.json" 3 | } -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/requisition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/requisition.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/requisition.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/requisition.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/seasons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/seasons.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/seasons.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/seasons.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/skulls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/skulls.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/skulls.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/skulls.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/spartan-ranks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/spartan-ranks.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/spartan-ranks.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/spartan-ranks.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/team-colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/team-colors.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/team-colors.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/team-colors.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/vehicles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/vehicles.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/vehicles.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/vehicles.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/weapons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/weapons.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Metadata/weapons.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Metadata/weapons.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Stats/CarnageReport/Common/boost-info.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Stats/CarnageReport/Common/boost-info.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Stats/CarnageReport/Common/credits-earned.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Stats/CarnageReport/Common/credits-earned.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Stats/CarnageReport/Common/meta-commendation-delta.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Stats/CarnageReport/Common/meta-commendation-delta.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Stats/CarnageReport/Common/oppenent-details.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Stats/CarnageReport/Common/oppenent-details.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Stats/CarnageReport/Common/progressive-commendation-delta.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Stats/CarnageReport/Common/progressive-commendation-delta.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Stats/CarnageReport/Common/reward-set.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Stats/CarnageReport/Common/reward-set.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Stats/CarnageReport/Common/team-stat.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Stats/CarnageReport/Common/team-stat.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Stats/CarnageReport/Common/xp-info.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Stats/CarnageReport/Common/xp-info.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Stats/CarnageReport/arena-match.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Stats/CarnageReport/arena-match.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Stats/CarnageReport/arena-match.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Stats/CarnageReport/arena-match.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Stats/CarnageReport/campaign-match.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Stats/CarnageReport/campaign-match.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Stats/CarnageReport/campaign-match.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Stats/CarnageReport/campaign-match.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Stats/CarnageReport/custom-match.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Stats/CarnageReport/custom-match.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Stats/CarnageReport/custom-match.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Stats/CarnageReport/custom-match.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Stats/CarnageReport/match-events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Stats/CarnageReport/match-events.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Stats/CarnageReport/match-events.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Stats/CarnageReport/match-events.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Stats/CarnageReport/warzone-match.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Stats/CarnageReport/warzone-match.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Stats/CarnageReport/warzone-match.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Stats/CarnageReport/warzone-match.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Stats/Common/base-stat.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Stats/Common/base-stat.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Stats/Common/competitive-skill-ranking.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Stats/Common/competitive-skill-ranking.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Stats/Common/flexible-stats.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Stats/Common/flexible-stats.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Stats/Lifetime/Common/game-base-variant-stat.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Stats/Lifetime/Common/game-base-variant-stat.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Stats/Lifetime/Common/top-game-base-variant.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Stats/Lifetime/Common/top-game-base-variant.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Stats/Lifetime/arena-service-record.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Stats/Lifetime/arena-service-record.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Stats/Lifetime/arena-service-record.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Stats/Lifetime/arena-service-record.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Stats/Lifetime/campaign-service-record.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Stats/Lifetime/campaign-service-record.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Stats/Lifetime/campaign-service-record.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Stats/Lifetime/campaign-service-record.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Stats/Lifetime/custom-service-record.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Stats/Lifetime/custom-service-record.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Stats/Lifetime/custom-service-record.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Stats/Lifetime/custom-service-record.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Stats/Lifetime/warzone-service-record.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Stats/Lifetime/warzone-service-record.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Stats/Lifetime/warzone-service-record.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Stats/Lifetime/warzone-service-record.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Stats/leaderboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Stats/leaderboard.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Stats/leaderboard.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Stats/leaderboard.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Stats/matches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Stats/matches.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/Stats/matches.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/Stats/matches.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/UserGeneratedContent/Common/stats.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/UserGeneratedContent/Common/stats.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/UserGeneratedContent/game-variant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/UserGeneratedContent/game-variant.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/UserGeneratedContent/game-variant.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/UserGeneratedContent/game-variant.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/UserGeneratedContent/game-variants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/UserGeneratedContent/game-variants.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/UserGeneratedContent/game-variants.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/UserGeneratedContent/game-variants.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/UserGeneratedContent/map-variant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/UserGeneratedContent/map-variant.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/UserGeneratedContent/map-variant.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/UserGeneratedContent/map-variant.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/UserGeneratedContent/map-variants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/UserGeneratedContent/map-variants.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/Halo5/UserGeneratedContent/map-variants.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/Halo5/UserGeneratedContent/map-variants.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/Common/batch-localization.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/Common/batch-localization.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/Common/common.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/Common/common.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/Common/content-item-type-b.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/Common/content-item-type-b.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/Common/content-item-type-c.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/Common/content-item-type-c.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/Common/content-item-type-d.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/Common/content-item-type-d.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/Common/difficulty.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/Common/difficulty.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/Common/empty.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/Common/empty.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/Common/image.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/Common/image.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/Common/link.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/Common/link.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/Common/localization.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/Common/localization.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/Common/map.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/Common/map.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/Common/pack.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/Common/pack.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/Common/paging.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/Common/paging.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/Common/playlist.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/Common/playlist.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/campaign-levels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/campaign-levels.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/campaign-levels.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/campaign-levels.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/campaign-logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/campaign-logs.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/campaign-logs.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/campaign-logs.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/card-keywords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/card-keywords.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/card-keywords.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/card-keywords.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/cards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/cards.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/cards.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/cards.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/csr-designations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/csr-designations.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/csr-designations.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/csr-designations.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/difficulties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/difficulties.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/difficulties.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/difficulties.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/game-object-categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/game-object-categories.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/game-object-categories.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/game-object-categories.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/game-objects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/game-objects.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/game-objects.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/game-objects.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/leader-powers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/leader-powers.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/leader-powers.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/leader-powers.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/leaders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/leaders.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/leaders.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/leaders.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/maps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/maps.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/maps.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/maps.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/packs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/packs.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/packs.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/packs.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/playlists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/playlists.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/playlists.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/playlists.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/seasons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/seasons.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/seasons.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/seasons.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/spartan-ranks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/spartan-ranks.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/spartan-ranks.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/spartan-ranks.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/techs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/techs.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Metadata/techs.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Metadata/techs.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Stats/Common/competitive-skill-rank.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Stats/Common/competitive-skill-rank.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Stats/Common/experience-progress.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Stats/Common/experience-progress.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Stats/Common/leader-stats.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Stats/Common/leader-stats.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Stats/Common/matchmaking-rank.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Stats/Common/matchmaking-rank.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Stats/Common/rating-progress.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Stats/Common/rating-progress.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Stats/Common/stats.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Stats/Common/stats.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Stats/campaign-progress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Stats/campaign-progress.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Stats/campaign-progress.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Stats/campaign-progress.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Stats/experience-summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Stats/experience-summary.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Stats/experience-summary.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Stats/experience-summary.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Stats/match-events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Stats/match-events.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Stats/match-events.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Stats/match-events.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Stats/match-history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Stats/match-history.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Stats/match-history.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Stats/match-history.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Stats/match.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Stats/match.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Stats/match.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Stats/match.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Stats/player-summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Stats/player-summary.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Stats/player-summary.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Stats/player-summary.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Stats/playlist-ratings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Stats/playlist-ratings.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Stats/playlist-ratings.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Stats/playlist-ratings.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Stats/season-summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Stats/season-summary.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/JSON/HaloWars2/Stats/season-summary.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/JSON/HaloWars2/Stats/season-summary.schema.json -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5/Metadata/GetCampaignMissionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5/Metadata/GetCampaignMissionsTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5/Metadata/GetCommendationsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5/Metadata/GetCommendationsTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5/Metadata/GetCompetitiveSkillRankDesignationsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5/Metadata/GetCompetitiveSkillRankDesignationsTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5/Metadata/GetEnemiesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5/Metadata/GetEnemiesTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5/Metadata/GetFlexibleStatsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5/Metadata/GetFlexibleStatsTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5/Metadata/GetGameBaseVariantsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5/Metadata/GetGameBaseVariantsTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5/Metadata/GetGameVariantTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5/Metadata/GetGameVariantTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5/Metadata/GetImpulsesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5/Metadata/GetImpulsesTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5/Metadata/GetMapVariantTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5/Metadata/GetMapVariantTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5/Metadata/GetMapsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5/Metadata/GetMapsTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5/Metadata/GetMedalsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5/Metadata/GetMedalsTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5/Metadata/GetPlaylistsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5/Metadata/GetPlaylistsTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5/Metadata/GetRequisitionPackTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5/Metadata/GetRequisitionPackTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5/Metadata/GetRequisitionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5/Metadata/GetRequisitionTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5/Metadata/GetSeasonsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5/Metadata/GetSeasonsTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5/Metadata/GetSkullsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5/Metadata/GetSkullsTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5/Metadata/GetSpartanRanksTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5/Metadata/GetSpartanRanksTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5/Metadata/GetTeamColorsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5/Metadata/GetTeamColorsTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5/Metadata/GetVehiclesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5/Metadata/GetVehiclesTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5/Metadata/GetWeaponsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5/Metadata/GetWeaponsTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5/Profile/GetEmblemImageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5/Profile/GetEmblemImageTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5/Profile/GetSpartanImageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5/Profile/GetSpartanImageTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5/Stats/CarnageReport/GetArenaMatchDetailsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5/Stats/CarnageReport/GetArenaMatchDetailsTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5/Stats/CarnageReport/GetCampaignMatchDetailsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5/Stats/CarnageReport/GetCampaignMatchDetailsTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5/Stats/CarnageReport/GetCustomMatchDetailsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5/Stats/CarnageReport/GetCustomMatchDetailsTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5/Stats/CarnageReport/GetMatchEventsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5/Stats/CarnageReport/GetMatchEventsTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5/Stats/CarnageReport/GetWarzoneMatchDetailsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5/Stats/CarnageReport/GetWarzoneMatchDetailsTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5/Stats/GetLeaderboardTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5/Stats/GetLeaderboardTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5/Stats/GetMatchesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5/Stats/GetMatchesTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5/Stats/Lifetime/GetArenaServiceRecordTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5/Stats/Lifetime/GetArenaServiceRecordTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5/Stats/Lifetime/GetCampaignServiceRecordTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5/Stats/Lifetime/GetCampaignServiceRecordTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5/Stats/Lifetime/GetCustomServiceRecordTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5/Stats/Lifetime/GetCustomServiceRecordTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5/Stats/Lifetime/GetWarzoneServiceRecordTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5/Stats/Lifetime/GetWarzoneServiceRecordTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5/UserGeneratedContent/GetGameVariantTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5/UserGeneratedContent/GetGameVariantTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5/UserGeneratedContent/GetMapVariantTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5/UserGeneratedContent/GetMapVariantTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5/UserGeneratedContent/ListGameVariantsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5/UserGeneratedContent/ListGameVariantsTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5/UserGeneratedContent/ListMapVariantsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5/UserGeneratedContent/ListMapVariantsTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5Forge/Stats/CarnageReport/GetCustomMatchDetailsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5Forge/Stats/CarnageReport/GetCustomMatchDetailsTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5Forge/Stats/GetMatchesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5Forge/Stats/GetMatchesTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/Halo5Forge/Stats/Lifetime/GetCustomServiceRecordTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/Halo5Forge/Stats/Lifetime/GetCustomServiceRecordTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/HaloWars2/Metadata/GetCampaignLevelsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/HaloWars2/Metadata/GetCampaignLevelsTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/HaloWars2/Metadata/GetCampaignLogsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/HaloWars2/Metadata/GetCampaignLogsTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/HaloWars2/Metadata/GetCardKeywordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/HaloWars2/Metadata/GetCardKeywordsTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/HaloWars2/Metadata/GetCardsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/HaloWars2/Metadata/GetCardsTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/HaloWars2/Metadata/GetCompetitiveSkillRankDesignationsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/HaloWars2/Metadata/GetCompetitiveSkillRankDesignationsTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/HaloWars2/Metadata/GetDifficultiesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/HaloWars2/Metadata/GetDifficultiesTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/HaloWars2/Metadata/GetGameObjectCategoriesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/HaloWars2/Metadata/GetGameObjectCategoriesTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/HaloWars2/Metadata/GetGameObjectsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/HaloWars2/Metadata/GetGameObjectsTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/HaloWars2/Metadata/GetLeaderPowersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/HaloWars2/Metadata/GetLeaderPowersTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/HaloWars2/Metadata/GetLeadersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/HaloWars2/Metadata/GetLeadersTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/HaloWars2/Metadata/GetMapsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/HaloWars2/Metadata/GetMapsTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/HaloWars2/Metadata/GetPacksTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/HaloWars2/Metadata/GetPacksTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/HaloWars2/Metadata/GetPlaylistsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/HaloWars2/Metadata/GetPlaylistsTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/HaloWars2/Metadata/GetSeasonsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/HaloWars2/Metadata/GetSeasonsTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/HaloWars2/Metadata/GetSpartanRanksTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/HaloWars2/Metadata/GetSpartanRanksTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/HaloWars2/Metadata/GetTechsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/HaloWars2/Metadata/GetTechsTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/HaloWars2/Stats/CarnageReport/GetMatchEventsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/HaloWars2/Stats/CarnageReport/GetMatchEventsTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/HaloWars2/Stats/CarnageReport/GetMatchTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/HaloWars2/Stats/CarnageReport/GetMatchTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/HaloWars2/Stats/GetMatchHistoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/HaloWars2/Stats/GetMatchHistoryTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/HaloWars2/Stats/Lifetime/GetCampaignProgressTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/HaloWars2/Stats/Lifetime/GetCampaignProgressTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/HaloWars2/Stats/Lifetime/GetExperienceSummaryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/HaloWars2/Stats/Lifetime/GetExperienceSummaryTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/HaloWars2/Stats/Lifetime/GetPlayerSummaryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/HaloWars2/Stats/Lifetime/GetPlayerSummaryTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/HaloWars2/Stats/Lifetime/GetPlaylistRatingsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/HaloWars2/Stats/Lifetime/GetPlaylistRatingsTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Query/HaloWars2/Stats/Lifetime/GetSeasonSummaryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Query/HaloWars2/Stats/Lifetime/GetSeasonSummaryTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Schema/Halo5SchemaTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Schema/Halo5SchemaTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Schema/HaloWars2SchemaTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Schema/HaloWars2SchemaTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Serialization/Halo5SerializationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Serialization/Halo5SerializationTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Serialization/HaloWars2SerializationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Serialization/HaloWars2SerializationTests.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Setup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Setup.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Utility/SchemaUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Utility/SchemaUtility.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/Utility/SerializationUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/Utility/SerializationUtility.cs -------------------------------------------------------------------------------- /Source/HaloSharp.Test/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/app.config -------------------------------------------------------------------------------- /Source/HaloSharp.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.Test/packages.config -------------------------------------------------------------------------------- /Source/HaloSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp.sln -------------------------------------------------------------------------------- /Source/HaloSharp/Cache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Cache.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Converter/GuidConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Converter/GuidConverter.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Converter/Halo5MatchEventConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Converter/Halo5MatchEventConverter.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Converter/HaloWars2MatchEventConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Converter/HaloWars2MatchEventConverter.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Converter/MillisecondConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Converter/MillisecondConverter.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Converter/TimeSpanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Converter/TimeSpanConverter.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Exception/HaloApiException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Exception/HaloApiException.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Exception/ValidationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Exception/ValidationException.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Extension/HaloSharpSessionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Extension/HaloSharpSessionExtensions.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Extension/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Extension/StringExtensions.cs -------------------------------------------------------------------------------- /Source/HaloSharp/HaloClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/HaloClient.cs -------------------------------------------------------------------------------- /Source/HaloSharp/HaloSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/HaloSession.cs -------------------------------------------------------------------------------- /Source/HaloSharp/HaloSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/HaloSharp.csproj -------------------------------------------------------------------------------- /Source/HaloSharp/HaloSharp.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/HaloSharp.nuspec -------------------------------------------------------------------------------- /Source/HaloSharp/HaloUriBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/HaloUriBuilder.cs -------------------------------------------------------------------------------- /Source/HaloSharp/IHaloSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/IHaloSession.cs -------------------------------------------------------------------------------- /Source/HaloSharp/IQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/IQuery.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/CacheSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/CacheSettings.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Common/ISO8601.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Common/ISO8601.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Common/Identity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Common/Identity.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Common/Link.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Common/Link.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Common/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Common/Location.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Common/MatchSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Common/MatchSet.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Enumeration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Enumeration.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Error/HaloApiError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Error/HaloApiError.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Error/ValidationError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Error/ValidationError.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Common/Variant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Common/Variant.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Metadata/CampaignMission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Metadata/CampaignMission.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Metadata/Commendation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Metadata/Commendation.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Metadata/Common/RequisitionPack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Metadata/Common/RequisitionPack.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Metadata/Common/Reward.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Metadata/Common/Reward.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Metadata/CompetitiveSkillRankDesignation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Metadata/CompetitiveSkillRankDesignation.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Metadata/Enemy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Metadata/Enemy.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Metadata/FlexibleStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Metadata/FlexibleStat.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Metadata/GameBaseVariant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Metadata/GameBaseVariant.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Metadata/GameVariant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Metadata/GameVariant.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Metadata/Impulse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Metadata/Impulse.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Metadata/Map.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Metadata/Map.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Metadata/MapVariant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Metadata/MapVariant.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Metadata/Medal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Metadata/Medal.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Metadata/Playlist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Metadata/Playlist.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Metadata/Requisition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Metadata/Requisition.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Metadata/Season.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Metadata/Season.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Metadata/Skull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Metadata/Skull.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Metadata/SpartanRank.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Metadata/SpartanRank.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Metadata/TeamColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Metadata/TeamColor.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Metadata/Vehicle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Metadata/Vehicle.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Metadata/Weapon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Metadata/Weapon.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Profile/HaloImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Profile/HaloImage.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Stats/CarnageReport/ArenaMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Stats/CarnageReport/ArenaMatch.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Stats/CarnageReport/CampaignMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Stats/CarnageReport/CampaignMatch.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Common/BaseMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Common/BaseMatch.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Common/BasePlayerStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Common/BasePlayerStat.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Common/BoostInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Common/BoostInfo.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Common/CreditsEarned.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Common/CreditsEarned.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Common/MetaCommendationDelta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Common/MetaCommendationDelta.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Common/OpponentDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Common/OpponentDetails.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Common/ProgressiveCommendationDelta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Common/ProgressiveCommendationDelta.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Common/RewardSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Common/RewardSet.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Common/TeamStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Common/TeamStat.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Common/XpInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Common/XpInfo.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Stats/CarnageReport/CustomMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Stats/CarnageReport/CustomMatch.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Events/Death.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Events/Death.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Events/Impulse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Events/Impulse.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Events/MatchEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Events/MatchEvent.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Events/Medal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Events/Medal.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Events/PlayerSpawn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Events/PlayerSpawn.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Events/RoundEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Events/RoundEnd.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Events/RoundStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Events/RoundStart.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Events/WeaponDrop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Events/WeaponDrop.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Events/WeaponPickup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Events/WeaponPickup.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Events/WeaponPickupPad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Stats/CarnageReport/Events/WeaponPickupPad.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Stats/CarnageReport/MatchEventSummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Stats/CarnageReport/MatchEventSummary.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Stats/CarnageReport/WarzoneMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Stats/CarnageReport/WarzoneMatch.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Stats/Common/BaseStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Stats/Common/BaseStat.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Stats/Common/CompetitiveSkillRanking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Stats/Common/CompetitiveSkillRanking.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Stats/Common/FlexibleStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Stats/Common/FlexibleStats.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Stats/Leaderboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Stats/Leaderboard.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Stats/Lifetime/ArenaServiceRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Stats/Lifetime/ArenaServiceRecord.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Stats/Lifetime/CampaignServiceRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Stats/Lifetime/CampaignServiceRecord.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Stats/Lifetime/Common/BaseResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Stats/Lifetime/Common/BaseResult.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Stats/Lifetime/Common/BaseServiceRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Stats/Lifetime/Common/BaseServiceRecord.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Stats/Lifetime/Common/BaseServiceRecordResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Stats/Lifetime/Common/BaseServiceRecordResult.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Stats/Lifetime/Common/GameBaseVariantStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Stats/Lifetime/Common/GameBaseVariantStat.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Stats/Lifetime/Common/TopGameBaseVariant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Stats/Lifetime/Common/TopGameBaseVariant.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Stats/Lifetime/CustomServiceRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Stats/Lifetime/CustomServiceRecord.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Stats/Lifetime/WarzoneServiceRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Stats/Lifetime/WarzoneServiceRecord.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/Stats/MatchSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/Stats/MatchSet.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/UserGeneratedContent/Common/Stats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/UserGeneratedContent/Common/Stats.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/UserGeneratedContent/GameVariant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/UserGeneratedContent/GameVariant.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/UserGeneratedContent/GameVariantResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/UserGeneratedContent/GameVariantResult.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/UserGeneratedContent/MapVariant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/UserGeneratedContent/MapVariant.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Halo5/UserGeneratedContent/MapVariantResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Halo5/UserGeneratedContent/MapVariantResult.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/CampaignLevel/CampaignLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/CampaignLevel/CampaignLevel.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/CampaignLevel/DisplayInfo/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/CampaignLevel/DisplayInfo/View.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/CampaignLevel/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/CampaignLevel/View.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/CampaignLog/CampaignLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/CampaignLog/CampaignLog.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/CampaignLog/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/CampaignLog/View.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/CampaignObjective/CampaignObjective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/CampaignObjective/CampaignObjective.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/CampaignObjective/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/CampaignObjective/View.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/Card/Card.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/Card/Card.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/Card/DisplayInfo/DisplayInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/Card/DisplayInfo/DisplayInfo.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/Card/DisplayInfo/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/Card/DisplayInfo/View.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/Card/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/Card/View.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/CardKeyword/CardKeyword.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/CardKeyword/CardKeyword.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/CardKeyword/DisplayInfo/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/CardKeyword/DisplayInfo/View.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/CardKeyword/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/CardKeyword/View.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/Common.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/CompetitiveSkillRankDesignation/CompetitiveSkillRankDesignation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/CompetitiveSkillRankDesignation/CompetitiveSkillRankDesignation.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/CompetitiveSkillRankDesignation/DisplayInfo/DisplayInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/CompetitiveSkillRankDesignation/DisplayInfo/DisplayInfo.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/CompetitiveSkillRankDesignation/DisplayInfo/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/CompetitiveSkillRankDesignation/DisplayInfo/View.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/CompetitiveSkillRankDesignation/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/CompetitiveSkillRankDesignation/View.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/CompetitiveSkillRankDesignationTier/Tier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/CompetitiveSkillRankDesignationTier/Tier.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/CompetitiveSkillRankDesignationTier/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/CompetitiveSkillRankDesignationTier/View.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/ContentItemTypeA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/ContentItemTypeA.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/ContentItemTypeB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/ContentItemTypeB.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/ContentItemTypeC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/ContentItemTypeC.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/ContentItemTypeD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/ContentItemTypeD.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/Difficulty/Difficulty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/Difficulty/Difficulty.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/Difficulty/DisplayInfo/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/Difficulty/DisplayInfo/View.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/Difficulty/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/Difficulty/View.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/DisplayInfo/BatchLocalization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/DisplayInfo/BatchLocalization.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/DisplayInfo/DisplayInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/DisplayInfo/DisplayInfo.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/DisplayInfo/Localization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/DisplayInfo/Localization.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/DisplayInfo/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/DisplayInfo/View.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/GameObject/DisplayInfo/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/GameObject/DisplayInfo/View.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/GameObject/GameObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/GameObject/GameObject.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/GameObject/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/GameObject/View.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/GameObjectCategory/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/GameObjectCategory/View.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/Image/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/Image/Image.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/Image/Media.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/Image/Media.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/Image/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/Image/View.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/Leader/DisplayInfo/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/Leader/DisplayInfo/View.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/Leader/Leader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/Leader/Leader.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/Leader/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/Leader/View.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/LeaderPower/DisplayInfo/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/LeaderPower/DisplayInfo/View.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/LeaderPower/LeaderPower.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/LeaderPower/LeaderPower.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/LeaderPower/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/LeaderPower/View.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/Link.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/Link.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/Map/DisplayInfo/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/Map/DisplayInfo/View.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/Map/Map.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/Map/Map.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/Map/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/Map/View.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/Pack/Displayinfo/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/Pack/Displayinfo/View.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/Pack/Pack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/Pack/Pack.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/Pack/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/Pack/View.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/PagedResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/PagedResponse.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/Paging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/Paging.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/Playlist/CardsFixedAtLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/Playlist/CardsFixedAtLevel.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/Playlist/Displayinfo/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/Playlist/Displayinfo/View.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/Playlist/Playlist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/Playlist/Playlist.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/Playlist/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/Playlist/View.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/PlaylistEntry/PlaylistEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/PlaylistEntry/PlaylistEntry.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/PlaylistEntry/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/PlaylistEntry/View.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/Season/DisplayInfo/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/Season/DisplayInfo/View.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/Season/Season.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/Season/Season.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/Season/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/Season/View.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/Skull/Skull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/Skull/Skull.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/Skull/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/Skull/View.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/SpartanRank/DisplayInfo/DisplayInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/SpartanRank/DisplayInfo/DisplayInfo.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/SpartanRank/DisplayInfo/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/SpartanRank/DisplayInfo/View.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/SpartanRank/SpartanRank.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/SpartanRank/SpartanRank.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/SpartanRank/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/SpartanRank/View.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/StartingArmy/DisplayInfo/DisplayInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/StartingArmy/DisplayInfo/DisplayInfo.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/StartingArmy/DisplayInfo/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/StartingArmy/DisplayInfo/View.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/StartingArmy/StartingArmy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/StartingArmy/StartingArmy.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/StartingArmy/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/StartingArmy/View.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/Tech/DisplayInfo/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/Tech/DisplayInfo/View.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/Tech/Tech.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/Tech/Tech.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/Tech/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/Tech/View.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Metadata/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Metadata/View.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/BuildingConstructionCompleted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/BuildingConstructionCompleted.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/BuildingConstructionQueued.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/BuildingConstructionQueued.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/BuildingRecycled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/BuildingRecycled.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/BuildingUpgraded.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/BuildingUpgraded.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/CardCycled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/CardCycled.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/CardPlayed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/CardPlayed.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/Death.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/Death.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/FirefightWaveCompleted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/FirefightWaveCompleted.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/FirefightWaveSpawned.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/FirefightWaveSpawned.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/FirefightWaveStarted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/FirefightWaveStarted.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/LeaderPowerCast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/LeaderPowerCast.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/LeaderPowerUnlocked.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/LeaderPowerUnlocked.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/ManaOrbCollected.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/ManaOrbCollected.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/MatchEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/MatchEnd.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/MatchEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/MatchEvent.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/MatchStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/MatchStart.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/PlayerEliminated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/PlayerEliminated.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/PlayerJoinedMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/PlayerJoinedMatch.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/PlayerLeftMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/PlayerLeftMatch.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/PointCaptured.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/PointCaptured.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/PointCreated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/PointCreated.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/PointStatusChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/PointStatusChange.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/ResourceHeartbeat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/ResourceHeartbeat.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/ResourceTransferred.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/ResourceTransferred.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/TechResearched.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/TechResearched.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/UnitControlTransferred.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/UnitControlTransferred.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/UnitPromoted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/UnitPromoted.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/UnitTrained.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Events/UnitTrained.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Match.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/Match.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/MatchEventSummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/CarnageReport/MatchEventSummary.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/Common/CompetitiveSkillRanking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/Common/CompetitiveSkillRanking.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/Common/ExperienceProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/Common/ExperienceProgress.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/Common/MatchmakingRanking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/Common/MatchmakingRanking.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/Common/RatingProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/Common/RatingProgress.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/Common/Stats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/Common/Stats.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/Common/Team.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/Common/Team.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/Lifetime/CampaignSummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/Lifetime/CampaignSummary.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/Lifetime/ExperienceSummaryResultSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/Lifetime/ExperienceSummaryResultSet.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/Lifetime/PlayerSummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/Lifetime/PlayerSummary.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/Lifetime/PlaylistSummaryResultSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/Lifetime/PlaylistSummaryResultSet.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/Lifetime/SeasonSummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/Lifetime/SeasonSummary.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/HaloWars2/Stats/PlayerMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/HaloWars2/Stats/PlayerMatch.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/Product.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Model/ValidationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Model/ValidationResult.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5/Metadata/GetCampaignMissions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5/Metadata/GetCampaignMissions.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5/Metadata/GetCommendations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5/Metadata/GetCommendations.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5/Metadata/GetCompetitiveSkillRankDesignations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5/Metadata/GetCompetitiveSkillRankDesignations.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5/Metadata/GetEnemies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5/Metadata/GetEnemies.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5/Metadata/GetFlexibleStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5/Metadata/GetFlexibleStats.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5/Metadata/GetGameBaseVariants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5/Metadata/GetGameBaseVariants.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5/Metadata/GetGameVariant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5/Metadata/GetGameVariant.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5/Metadata/GetImpulses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5/Metadata/GetImpulses.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5/Metadata/GetMapVariant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5/Metadata/GetMapVariant.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5/Metadata/GetMaps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5/Metadata/GetMaps.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5/Metadata/GetMedals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5/Metadata/GetMedals.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5/Metadata/GetPlaylists.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5/Metadata/GetPlaylists.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5/Metadata/GetRequisition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5/Metadata/GetRequisition.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5/Metadata/GetRequisitionPack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5/Metadata/GetRequisitionPack.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5/Metadata/GetSeasons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5/Metadata/GetSeasons.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5/Metadata/GetSkulls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5/Metadata/GetSkulls.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5/Metadata/GetSpartanRanks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5/Metadata/GetSpartanRanks.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5/Metadata/GetTeamColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5/Metadata/GetTeamColors.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5/Metadata/GetVehicles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5/Metadata/GetVehicles.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5/Metadata/GetWeapons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5/Metadata/GetWeapons.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5/Profile/GetEmblemImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5/Profile/GetEmblemImage.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5/Profile/GetSpartanImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5/Profile/GetSpartanImage.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5/Stats/CarnageReport/GetArenaMatchDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5/Stats/CarnageReport/GetArenaMatchDetails.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5/Stats/CarnageReport/GetCampaignMatchDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5/Stats/CarnageReport/GetCampaignMatchDetails.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5/Stats/CarnageReport/GetCustomMatchDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5/Stats/CarnageReport/GetCustomMatchDetails.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5/Stats/CarnageReport/GetMatchEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5/Stats/CarnageReport/GetMatchEvents.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5/Stats/CarnageReport/GetWarzoneMatchDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5/Stats/CarnageReport/GetWarzoneMatchDetails.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5/Stats/GetLeaderboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5/Stats/GetLeaderboard.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5/Stats/GetMatchHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5/Stats/GetMatchHistory.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5/Stats/Lifetime/GetArenaServiceRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5/Stats/Lifetime/GetArenaServiceRecord.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5/Stats/Lifetime/GetCampaignServiceRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5/Stats/Lifetime/GetCampaignServiceRecord.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5/Stats/Lifetime/GetCustomServiceRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5/Stats/Lifetime/GetCustomServiceRecord.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5/Stats/Lifetime/GetWarzoneServiceRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5/Stats/Lifetime/GetWarzoneServiceRecord.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5/UserGeneratedContent/GetGameVariant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5/UserGeneratedContent/GetGameVariant.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5/UserGeneratedContent/GetMapVariant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5/UserGeneratedContent/GetMapVariant.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5/UserGeneratedContent/ListGameVariants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5/UserGeneratedContent/ListGameVariants.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5/UserGeneratedContent/ListMapVariants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5/UserGeneratedContent/ListMapVariants.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5Forge/Stats/CarnageReport/GetCustomMatchDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5Forge/Stats/CarnageReport/GetCustomMatchDetails.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5Forge/Stats/GetMatchHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5Forge/Stats/GetMatchHistory.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Halo5Forge/Stats/Lifetime/GetCustomServiceRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Halo5Forge/Stats/Lifetime/GetCustomServiceRecord.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/HaloWars2/Metadata/GetCampaignLevels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/HaloWars2/Metadata/GetCampaignLevels.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/HaloWars2/Metadata/GetCampaignLogs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/HaloWars2/Metadata/GetCampaignLogs.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/HaloWars2/Metadata/GetCardKeywords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/HaloWars2/Metadata/GetCardKeywords.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/HaloWars2/Metadata/GetCards.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/HaloWars2/Metadata/GetCards.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/HaloWars2/Metadata/GetCompetitiveSkillRankDesignations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/HaloWars2/Metadata/GetCompetitiveSkillRankDesignations.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/HaloWars2/Metadata/GetDifficulties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/HaloWars2/Metadata/GetDifficulties.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/HaloWars2/Metadata/GetGameObjectCategories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/HaloWars2/Metadata/GetGameObjectCategories.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/HaloWars2/Metadata/GetGameObjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/HaloWars2/Metadata/GetGameObjects.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/HaloWars2/Metadata/GetLeaderPowers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/HaloWars2/Metadata/GetLeaderPowers.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/HaloWars2/Metadata/GetLeaders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/HaloWars2/Metadata/GetLeaders.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/HaloWars2/Metadata/GetMaps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/HaloWars2/Metadata/GetMaps.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/HaloWars2/Metadata/GetPacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/HaloWars2/Metadata/GetPacks.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/HaloWars2/Metadata/GetPlaylists.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/HaloWars2/Metadata/GetPlaylists.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/HaloWars2/Metadata/GetSeasons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/HaloWars2/Metadata/GetSeasons.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/HaloWars2/Metadata/GetSpartanRanks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/HaloWars2/Metadata/GetSpartanRanks.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/HaloWars2/Metadata/GetTechs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/HaloWars2/Metadata/GetTechs.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/HaloWars2/Stats/CarnageReport/GetMatchDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/HaloWars2/Stats/CarnageReport/GetMatchDetails.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/HaloWars2/Stats/CarnageReport/GetMatchEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/HaloWars2/Stats/CarnageReport/GetMatchEvents.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/HaloWars2/Stats/GetMatchHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/HaloWars2/Stats/GetMatchHistory.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/HaloWars2/Stats/Lifetime/GetCampaignSummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/HaloWars2/Stats/Lifetime/GetCampaignSummary.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/HaloWars2/Stats/Lifetime/GetExperienceSummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/HaloWars2/Stats/Lifetime/GetExperienceSummary.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/HaloWars2/Stats/Lifetime/GetPlaylistRatings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/HaloWars2/Stats/Lifetime/GetPlaylistRatings.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/HaloWars2/Stats/Lifetime/GetSeasonSummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/HaloWars2/Stats/Lifetime/GetSeasonSummary.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/HaloWars2/Stats/Lifetime/GetSummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/HaloWars2/Stats/Lifetime/GetSummary.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/ImageQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/ImageQuery.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Query/Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Query/Query.cs -------------------------------------------------------------------------------- /Source/HaloSharp/RateGate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/RateGate.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Validation/Common/GamertagValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Validation/Common/GamertagValidator.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Validation/Common/GuidValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Validation/Common/GuidValidator.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Validation/Common/ImageSizeValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Validation/Common/ImageSizeValidator.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Validation/Common/StartAtValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Validation/Common/StartAtValidator.cs -------------------------------------------------------------------------------- /Source/HaloSharp/Validation/Common/TakeValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/Validation/Common/TakeValidator.cs -------------------------------------------------------------------------------- /Source/HaloSharp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitFurious/HaloSharp/HEAD/Source/HaloSharp/packages.config --------------------------------------------------------------------------------