├── .gitignore ├── LICENSE ├── LegendsViewer.sln ├── LegendsViewer ├── 7z.dll ├── 7z64.dll ├── ClassDiagram1.cd ├── Controls │ ├── AppHelpers.cs │ ├── Chart │ │ ├── ChartControl.cs │ │ ├── ChartMenuItem.cs │ │ ├── ChartOption.cs │ │ ├── ChartPanel.cs │ │ ├── dlgHF.Designer.cs │ │ ├── dlgHF.cs │ │ └── dlgHF.resx │ ├── DwarfTabControl.cs │ ├── DwarfTabPage.cs │ ├── EventArgs.cs │ ├── HTML │ │ ├── ArtFormPrinter.cs │ │ ├── ArtifactPrinter.cs │ │ ├── BattlePrinter.cs │ │ ├── BeastAttackPrinter.cs │ │ ├── EntityPrinter.cs │ │ ├── EraPrinter.cs │ │ ├── EventOverviewPrinter.cs │ │ ├── HTMLControl.cs │ │ ├── HTMLPrinter.cs │ │ ├── HistoricalFigurePrinter.cs │ │ ├── LandmassPrinter.cs │ │ ├── MountainPeakPrinter.cs │ │ ├── RaidPrinter.cs │ │ ├── ReadMeControl.cs │ │ ├── RegionPrinter.cs │ │ ├── RiverPrinter.cs │ │ ├── SiteConqueredPrinter.cs │ │ ├── SitePrinter.cs │ │ ├── StringPrinter.cs │ │ ├── StructurePrinter.cs │ │ ├── UndergroundRegionPrinter.cs │ │ ├── Utilities │ │ │ ├── BrowserUtil.cs │ │ │ ├── HTMLStyleUtil.cs │ │ │ └── SkillDictionary.cs │ │ ├── WarPrinter.cs │ │ ├── WorldConstructionPrinter.cs │ │ ├── WorldStatsPrinter.cs │ │ └── WrittenContentPrinter.cs │ ├── InputBox.cs │ ├── LVCoordinator.cs │ ├── Map │ │ ├── HeatMapMaker.cs │ │ ├── MapControl.cs │ │ ├── MapMenu.cs │ │ ├── MapPanel.cs │ │ ├── MapUtil.cs │ │ ├── PathMaker.cs │ │ ├── dlgPopulation.Designer.cs │ │ ├── dlgPopulation.cs │ │ └── dlgPopulation.resx │ ├── PageControl.cs │ ├── Query │ │ ├── Attributes │ │ │ ├── AllowAdvancedSearchAttribute.cs │ │ │ └── ShowInAdvancedSearchResultsAttribute.cs │ │ ├── CriteriaLine.cs │ │ ├── CriteriaPanel.cs │ │ ├── DwarfQuery.cs │ │ ├── Dynamic.cs │ │ ├── PropertyBox.cs │ │ ├── QueryControl.cs │ │ ├── QueryControl.designer.cs │ │ ├── QueryControl.resx │ │ ├── SearchInfo.cs │ │ ├── SearchList.cs │ │ └── SearchProperty.cs │ ├── SimpleLists.cs │ ├── TabControlImproved.cs │ └── Tabs │ │ ├── ArtAndCraftsTab.Designer.cs │ │ ├── ArtAndCraftsTab.cs │ │ ├── ArtAndCraftsTab.resx │ │ ├── BaseSearchTab.cs │ │ ├── BaseSearchTab.designer.cs │ │ ├── BaseSearchTab.resx │ │ ├── CivsTab.cs │ │ ├── CivsTab.designer.cs │ │ ├── CivsTab.resx │ │ ├── CollectionsTab.cs │ │ ├── CollectionsTab.designer.cs │ │ ├── CollectionsTab.resx │ │ ├── GeographyTab.cs │ │ ├── GeographyTab.designer.cs │ │ ├── GeographyTab.resx │ │ ├── HistoricalFiguresTab.cs │ │ ├── HistoricalFiguresTab.designer.cs │ │ ├── HistoricalFiguresTab.resx │ │ ├── InfrastructureTab.Designer.cs │ │ ├── InfrastructureTab.cs │ │ ├── InfrastructureTab.resx │ │ ├── SummaryTab.cs │ │ ├── SummaryTab.designer.cs │ │ ├── SummaryTab.resx │ │ ├── WarfareTab.cs │ │ ├── WarfareTab.designer.cs │ │ └── WarfareTab.resx ├── FileLoader.cs ├── Legends │ ├── ArtForm.cs │ ├── CreatureInfo.cs │ ├── EntityEntityLink.cs │ ├── EntityLink.cs │ ├── EntityOccasion.cs │ ├── EntityPopulation.cs │ ├── EntityPosition.cs │ ├── EntityPositionAssignment.cs │ ├── EntityReputation.cs │ ├── EntitySiteLink.cs │ ├── Enums │ │ ├── AbuseType.cs │ │ ├── ActionsForEntities.cs │ │ ├── ActionsForHistoricalFigures.cs │ │ ├── AgreementReason.cs │ │ ├── AgreementTopic.cs │ │ ├── ArtifactReason.cs │ │ ├── BattleOutcome.cs │ │ ├── BodyState.cs │ │ ├── ChangeHfStateReason.cs │ │ ├── Circumstance.cs │ │ ├── Claim.cs │ │ ├── ConfrontReason.cs │ │ ├── ConfrontSituation.cs │ │ ├── DeathCause.cs │ │ ├── Dispute.cs │ │ ├── DissolveReason.cs │ │ ├── EntityLawType.cs │ │ ├── EntityLinkType.cs │ │ ├── EntityType.cs │ │ ├── Evilness.cs │ │ ├── FormType.cs │ │ ├── HFSimpleBattleType.cs │ │ ├── HFState.cs │ │ ├── HfEntityLinkType.cs │ │ ├── HistoricalFigureLinkType.cs │ │ ├── InsurrectionOutcome.cs │ │ ├── IntrigueAction.cs │ │ ├── IntrigueMethod.cs │ │ ├── Mood.cs │ │ ├── OccasionType.cs │ │ ├── PileType.cs │ │ ├── PreachTopic.cs │ │ ├── ReasonForCreatingEntity.cs │ │ ├── ReferenceType.cs │ │ ├── RelationShipProfileType.cs │ │ ├── ReputationType.cs │ │ ├── ScheduleType.cs │ │ ├── SecretGoal.cs │ │ ├── SiteConqueredType.cs │ │ ├── SiteLinkType.cs │ │ ├── SitePropertyType.cs │ │ ├── SiteType.cs │ │ ├── StructureSubType.cs │ │ ├── StructureType.cs │ │ ├── TacticalSituationType.cs │ │ ├── UnitType.cs │ │ ├── VagueRelationshipType.cs │ │ ├── WorldConstructionType.cs │ │ └── WrittenContentType.cs │ ├── Era.cs │ ├── EventCollections │ │ ├── Abduction.cs │ │ ├── Battle.cs │ │ ├── BeastAttack.cs │ │ ├── CeremonyCollection.cs │ │ ├── CompetitionCollection.cs │ │ ├── Duel.cs │ │ ├── EntityOverthrownCollection.cs │ │ ├── EventCollections.cs │ │ ├── Insurrection.cs │ │ ├── Journey.cs │ │ ├── Occasion.cs │ │ ├── PerformanceCollection.cs │ │ ├── Persecution.cs │ │ ├── ProcessionCollection.cs │ │ ├── Purge.cs │ │ ├── Raid.cs │ │ ├── SiteConquered.cs │ │ ├── Theft.cs │ │ └── War.cs │ ├── Events │ │ ├── AddHFEntityLink.cs │ │ ├── AddHFHFLink.cs │ │ ├── AddHFSiteLink.cs │ │ ├── AddHfEntityHonor.cs │ │ ├── AgreementConcluded.cs │ │ ├── AgreementFormed.cs │ │ ├── AgreementMade.cs │ │ ├── AgreementRejected.cs │ │ ├── AgreementVoid.cs │ │ ├── ArtifactClaimFormed.cs │ │ ├── ArtifactCopied.cs │ │ ├── ArtifactCreated.cs │ │ ├── ArtifactDestroyed.cs │ │ ├── ArtifactFound.cs │ │ ├── ArtifactGiven.cs │ │ ├── ArtifactLost.cs │ │ ├── ArtifactPossessed.cs │ │ ├── ArtifactRecovered.cs │ │ ├── ArtifactStored.cs │ │ ├── ArtifactTransformed.cs │ │ ├── AssumeIdentity.cs │ │ ├── AttackedSite.cs │ │ ├── BodyAbused.cs │ │ ├── BuildingProfileAcquired.cs │ │ ├── Ceremony.cs │ │ ├── ChangeHFBodyState.cs │ │ ├── ChangeHFJob.cs │ │ ├── ChangeHFState.cs │ │ ├── ChangedCreatureType.cs │ │ ├── Competition.cs │ │ ├── CreateEntityPosition.cs │ │ ├── CreatedSite.cs │ │ ├── CreatedStructure.cs │ │ ├── CreatedWorldConstruction.cs │ │ ├── CreatureDevoured.cs │ │ ├── DanceFormCreated.cs │ │ ├── DestroyedSite.cs │ │ ├── DiplomatLost.cs │ │ ├── EntityAllianceFormed.cs │ │ ├── EntityBreachFeatureLayer.cs │ │ ├── EntityCreated.cs │ │ ├── EntityDissolved.cs │ │ ├── EntityEquipmentPurchase.cs │ │ ├── EntityExpelsHF.cs │ │ ├── EntityFledSite.cs │ │ ├── EntityIncorporated.cs │ │ ├── EntityLaw.cs │ │ ├── EntityOverthrown.cs │ │ ├── EntityPersecuted.cs │ │ ├── EntityPrimaryCriminals.cs │ │ ├── EntityRampagedInSite.cs │ │ ├── EntityRelocate.cs │ │ ├── EntitySearchedSite.cs │ │ ├── FailedFrameAttempt.cs │ │ ├── FailedIntrigueCorruption.cs │ │ ├── FieldBattle.cs │ │ ├── FirstContact.cs │ │ ├── FormCreatedEvent.cs │ │ ├── Gamble.cs │ │ ├── HFAbducted.cs │ │ ├── HFConfronted.cs │ │ ├── HFDied.cs │ │ ├── HFDisturbedStructure.cs │ │ ├── HFDoesInteraction.cs │ │ ├── HFFreed.cs │ │ ├── HFGainsSecretGoal.cs │ │ ├── HFLearnsSecret.cs │ │ ├── HFNewPet.cs │ │ ├── HFProfanedStructure.cs │ │ ├── HFRazedStructure.cs │ │ ├── HFReachSummit.cs │ │ ├── HFRelationShipDenied.cs │ │ ├── HFReunion.cs │ │ ├── HFRevived.cs │ │ ├── HFSimpleBattleEvent.cs │ │ ├── HFTravel.cs │ │ ├── HFWounded.cs │ │ ├── HfAskedAboutArtifact.cs │ │ ├── HfAttackedSite.cs │ │ ├── HfCarouse.cs │ │ ├── HfConvicted.cs │ │ ├── HfDestroyedSite.cs │ │ ├── HfEnslaved.cs │ │ ├── HfEquipmentPurchase.cs │ │ ├── HfInterrogated.cs │ │ ├── HfPerformedHorribleExperiments.cs │ │ ├── HfPrayedInsideStructure.cs │ │ ├── HfPreach.cs │ │ ├── HfRansomed.cs │ │ ├── HfRecruitedUnitTypeForEntity.cs │ │ ├── HfViewedArtifact.cs │ │ ├── HfsFormedIntrigueRelationship.cs │ │ ├── HfsFormedReputationRelationship.cs │ │ ├── HolyCityDeclaration.cs │ │ ├── ImpersonateHF.cs │ │ ├── InsurrectionStarted.cs │ │ ├── ItemStolen.cs │ │ ├── KnowledgeDiscovered.cs │ │ ├── MasterpieceArch.cs │ │ ├── MasterpieceArchConstructed.cs │ │ ├── MasterpieceArchDesign.cs │ │ ├── MasterpieceDye.cs │ │ ├── MasterpieceEngraving.cs │ │ ├── MasterpieceFood.cs │ │ ├── MasterpieceItem.cs │ │ ├── MasterpieceItemImprovement.cs │ │ ├── MasterpieceLost.cs │ │ ├── Merchant.cs │ │ ├── ModifiedBuilding.cs │ │ ├── MusicalFormCreated.cs │ │ ├── NewSiteLeader.cs │ │ ├── OccasionEvent.cs │ │ ├── PeaceAccepted.cs │ │ ├── PeaceEfforts.cs │ │ ├── PeaceRejected.cs │ │ ├── Performance.cs │ │ ├── PlunderedSite.cs │ │ ├── PlusEvents │ │ │ └── HistoricalEventRelationShip.cs │ │ ├── PoeticFormCreated.cs │ │ ├── Procession.cs │ │ ├── RazedStructure.cs │ │ ├── ReclaimSite.cs │ │ ├── RegionpopIncorporatedIntoEntity.cs │ │ ├── RemoveHFEntityLink.cs │ │ ├── RemoveHFSiteLink.cs │ │ ├── RemoveHfHfLink.cs │ │ ├── ReplacedStructure.cs │ │ ├── Sabotage.cs │ │ ├── SiteAbandoned.cs │ │ ├── SiteDied.cs │ │ ├── SiteDispute.cs │ │ ├── SiteRetired.cs │ │ ├── SiteSurrendered.cs │ │ ├── SiteTakenOver.cs │ │ ├── SiteTributeForced.cs │ │ ├── SneakIntoSite.cs │ │ ├── SpottedLeavingSite.cs │ │ ├── SquadVsSquad.cs │ │ ├── TacticalSituation.cs │ │ ├── Trade.cs │ │ ├── WorldEvent.cs │ │ └── WrittenContentComposed.cs │ ├── Feature.cs │ ├── Formatting.cs │ ├── HistoricalFigureLink.cs │ ├── Honor.cs │ ├── HonorEntity.cs │ ├── Identity.cs │ ├── IncidentalEvents │ │ └── BattleFought.cs │ ├── Interfaces │ │ ├── IFeatured.cs │ │ └── IHasCoordinates.cs │ ├── IntrigueActor.cs │ ├── IntriguePlot.cs │ ├── Location.cs │ ├── Misc.cs │ ├── OwnerPeriod.cs │ ├── Parser │ │ ├── HistoryParser.cs │ │ ├── ParsingErrors.cs │ │ ├── Property.cs │ │ ├── Section.cs │ │ ├── SitesAndPopsParser.cs │ │ ├── XMLParser.cs │ │ └── XMLPlusParser.cs │ ├── PlotActor.cs │ ├── Population.cs │ ├── Reference.cs │ ├── RelationshipProfileHF.cs │ ├── Reputation.cs │ ├── Schedule.cs │ ├── SiteLink.cs │ ├── SiteProperty.cs │ ├── Skill.cs │ ├── VagueRelationship.cs │ ├── World.cs │ ├── WorldObject.cs │ └── WorldObjects │ │ ├── Artifact.cs │ │ ├── DanceForm.cs │ │ ├── DwarfObject.cs │ │ ├── Entity.cs │ │ ├── HistoricalFigure.cs │ │ ├── Landmass.cs │ │ ├── MountainPeak.cs │ │ ├── MusicalForm.cs │ │ ├── PoeticForm.cs │ │ ├── Region.cs │ │ ├── River.cs │ │ ├── Site.cs │ │ ├── Structure.cs │ │ ├── UndergroundRegion.cs │ │ ├── WorldConstruction.cs │ │ └── WrittenContent.cs ├── LegendsViewer.Designer.cs ├── LegendsViewer.cs ├── LegendsViewer.csproj ├── LegendsViewer.csproj.DotSettings ├── LegendsViewer.resx ├── LocalFileProvider.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resources │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── arrow_back16x16.png │ ├── arrow_forward16x16.png │ ├── chart16x16.png │ ├── globe16x16.png │ ├── map16x16.png │ ├── piechart16x16.png │ └── search16x16.png ├── SevenZipSharp.dll ├── WebContent │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── images │ │ ├── sort_asc.png │ │ ├── sort_asc_disabled.png │ │ ├── sort_both.png │ │ ├── sort_desc.png │ │ └── sort_desc_disabled.png │ ├── scripts │ │ ├── Chart.bundle.min.js │ │ ├── cytoscape-dagre.js │ │ ├── cytoscape.min.js │ │ ├── familygraph.js │ │ ├── jquery-3.1.1.min.js │ │ ├── jquery.dataTables.min.js │ │ └── warfaregraph.js │ └── styles │ │ ├── bootstrap.min.css │ │ ├── font-awesome.min.css │ │ ├── github-markdown.css │ │ ├── jquery.dataTables.min.css │ │ └── legends.css ├── app.config ├── book.ico ├── dlgFileSelect.Designer.cs ├── dlgFileSelect.cs ├── dlgFileSelect.resx └── packages.config ├── README.md ├── ThirdPartyNotices.txt └── appveyor.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LICENSE -------------------------------------------------------------------------------- /LegendsViewer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer.sln -------------------------------------------------------------------------------- /LegendsViewer/7z.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/7z.dll -------------------------------------------------------------------------------- /LegendsViewer/7z64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/7z64.dll -------------------------------------------------------------------------------- /LegendsViewer/ClassDiagram1.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/ClassDiagram1.cd -------------------------------------------------------------------------------- /LegendsViewer/Controls/AppHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/AppHelpers.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Chart/ChartControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Chart/ChartControl.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Chart/ChartMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Chart/ChartMenuItem.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Chart/ChartOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Chart/ChartOption.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Chart/ChartPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Chart/ChartPanel.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Chart/dlgHF.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Chart/dlgHF.Designer.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Chart/dlgHF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Chart/dlgHF.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Chart/dlgHF.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Chart/dlgHF.resx -------------------------------------------------------------------------------- /LegendsViewer/Controls/DwarfTabControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/DwarfTabControl.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/DwarfTabPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/DwarfTabPage.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/EventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/EventArgs.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/ArtFormPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/HTML/ArtFormPrinter.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/ArtifactPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/HTML/ArtifactPrinter.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/BattlePrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/HTML/BattlePrinter.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/BeastAttackPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/HTML/BeastAttackPrinter.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/EntityPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/HTML/EntityPrinter.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/EraPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/HTML/EraPrinter.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/EventOverviewPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/HTML/EventOverviewPrinter.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/HTMLControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/HTML/HTMLControl.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/HTMLPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/HTML/HTMLPrinter.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/HistoricalFigurePrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/HTML/HistoricalFigurePrinter.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/LandmassPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/HTML/LandmassPrinter.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/MountainPeakPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/HTML/MountainPeakPrinter.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/RaidPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/HTML/RaidPrinter.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/ReadMeControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/HTML/ReadMeControl.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/RegionPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/HTML/RegionPrinter.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/RiverPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/HTML/RiverPrinter.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/SiteConqueredPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/HTML/SiteConqueredPrinter.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/SitePrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/HTML/SitePrinter.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/StringPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/HTML/StringPrinter.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/StructurePrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/HTML/StructurePrinter.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/UndergroundRegionPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/HTML/UndergroundRegionPrinter.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/Utilities/BrowserUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/HTML/Utilities/BrowserUtil.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/Utilities/HTMLStyleUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/HTML/Utilities/HTMLStyleUtil.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/Utilities/SkillDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/HTML/Utilities/SkillDictionary.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/WarPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/HTML/WarPrinter.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/WorldConstructionPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/HTML/WorldConstructionPrinter.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/WorldStatsPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/HTML/WorldStatsPrinter.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/WrittenContentPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/HTML/WrittenContentPrinter.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/InputBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/InputBox.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/LVCoordinator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/LVCoordinator.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Map/HeatMapMaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Map/HeatMapMaker.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Map/MapControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Map/MapControl.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Map/MapMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Map/MapMenu.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Map/MapPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Map/MapPanel.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Map/MapUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Map/MapUtil.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Map/PathMaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Map/PathMaker.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Map/dlgPopulation.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Map/dlgPopulation.Designer.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Map/dlgPopulation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Map/dlgPopulation.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Map/dlgPopulation.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Map/dlgPopulation.resx -------------------------------------------------------------------------------- /LegendsViewer/Controls/PageControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/PageControl.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Query/Attributes/AllowAdvancedSearchAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Query/Attributes/AllowAdvancedSearchAttribute.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Query/Attributes/ShowInAdvancedSearchResultsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Query/Attributes/ShowInAdvancedSearchResultsAttribute.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Query/CriteriaLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Query/CriteriaLine.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Query/CriteriaPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Query/CriteriaPanel.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Query/DwarfQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Query/DwarfQuery.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Query/Dynamic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Query/Dynamic.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Query/PropertyBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Query/PropertyBox.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Query/QueryControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Query/QueryControl.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Query/QueryControl.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Query/QueryControl.designer.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Query/QueryControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Query/QueryControl.resx -------------------------------------------------------------------------------- /LegendsViewer/Controls/Query/SearchInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Query/SearchInfo.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Query/SearchList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Query/SearchList.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Query/SearchProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Query/SearchProperty.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/SimpleLists.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/SimpleLists.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/TabControlImproved.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/TabControlImproved.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Tabs/ArtAndCraftsTab.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Tabs/ArtAndCraftsTab.Designer.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Tabs/ArtAndCraftsTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Tabs/ArtAndCraftsTab.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Tabs/ArtAndCraftsTab.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Tabs/ArtAndCraftsTab.resx -------------------------------------------------------------------------------- /LegendsViewer/Controls/Tabs/BaseSearchTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Tabs/BaseSearchTab.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Tabs/BaseSearchTab.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Tabs/BaseSearchTab.designer.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Tabs/BaseSearchTab.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Tabs/BaseSearchTab.resx -------------------------------------------------------------------------------- /LegendsViewer/Controls/Tabs/CivsTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Tabs/CivsTab.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Tabs/CivsTab.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Tabs/CivsTab.designer.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Tabs/CivsTab.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Tabs/CivsTab.resx -------------------------------------------------------------------------------- /LegendsViewer/Controls/Tabs/CollectionsTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Tabs/CollectionsTab.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Tabs/CollectionsTab.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Tabs/CollectionsTab.designer.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Tabs/CollectionsTab.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Tabs/CollectionsTab.resx -------------------------------------------------------------------------------- /LegendsViewer/Controls/Tabs/GeographyTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Tabs/GeographyTab.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Tabs/GeographyTab.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Tabs/GeographyTab.designer.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Tabs/GeographyTab.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Tabs/GeographyTab.resx -------------------------------------------------------------------------------- /LegendsViewer/Controls/Tabs/HistoricalFiguresTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Tabs/HistoricalFiguresTab.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Tabs/HistoricalFiguresTab.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Tabs/HistoricalFiguresTab.designer.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Tabs/HistoricalFiguresTab.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Tabs/HistoricalFiguresTab.resx -------------------------------------------------------------------------------- /LegendsViewer/Controls/Tabs/InfrastructureTab.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Tabs/InfrastructureTab.Designer.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Tabs/InfrastructureTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Tabs/InfrastructureTab.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Tabs/InfrastructureTab.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Tabs/InfrastructureTab.resx -------------------------------------------------------------------------------- /LegendsViewer/Controls/Tabs/SummaryTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Tabs/SummaryTab.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Tabs/SummaryTab.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Tabs/SummaryTab.designer.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Tabs/SummaryTab.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Tabs/SummaryTab.resx -------------------------------------------------------------------------------- /LegendsViewer/Controls/Tabs/WarfareTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Tabs/WarfareTab.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Tabs/WarfareTab.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Tabs/WarfareTab.designer.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Tabs/WarfareTab.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Controls/Tabs/WarfareTab.resx -------------------------------------------------------------------------------- /LegendsViewer/FileLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/FileLoader.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/ArtForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/ArtForm.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/CreatureInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/CreatureInfo.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/EntityEntityLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/EntityEntityLink.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/EntityLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/EntityLink.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/EntityOccasion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/EntityOccasion.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/EntityPopulation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/EntityPopulation.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/EntityPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/EntityPosition.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/EntityPositionAssignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/EntityPositionAssignment.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/EntityReputation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/EntityReputation.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/EntitySiteLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/EntitySiteLink.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/AbuseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/AbuseType.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/ActionsForEntities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/ActionsForEntities.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/ActionsForHistoricalFigures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/ActionsForHistoricalFigures.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/AgreementReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/AgreementReason.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/AgreementTopic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/AgreementTopic.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/ArtifactReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/ArtifactReason.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/BattleOutcome.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/BattleOutcome.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/BodyState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/BodyState.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/ChangeHfStateReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/ChangeHfStateReason.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/Circumstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/Circumstance.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/Claim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/Claim.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/ConfrontReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/ConfrontReason.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/ConfrontSituation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/ConfrontSituation.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/DeathCause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/DeathCause.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/Dispute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/Dispute.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/DissolveReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/DissolveReason.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/EntityLawType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/EntityLawType.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/EntityLinkType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/EntityLinkType.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/EntityType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/EntityType.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/Evilness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/Evilness.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/FormType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/FormType.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/HFSimpleBattleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/HFSimpleBattleType.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/HFState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/HFState.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/HfEntityLinkType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/HfEntityLinkType.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/HistoricalFigureLinkType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/HistoricalFigureLinkType.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/InsurrectionOutcome.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/InsurrectionOutcome.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/IntrigueAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/IntrigueAction.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/IntrigueMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/IntrigueMethod.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/Mood.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/Mood.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/OccasionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/OccasionType.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/PileType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/PileType.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/PreachTopic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/PreachTopic.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/ReasonForCreatingEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/ReasonForCreatingEntity.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/ReferenceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/ReferenceType.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/RelationShipProfileType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/RelationShipProfileType.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/ReputationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/ReputationType.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/ScheduleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/ScheduleType.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/SecretGoal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/SecretGoal.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/SiteConqueredType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/SiteConqueredType.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/SiteLinkType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/SiteLinkType.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/SitePropertyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/SitePropertyType.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/SiteType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/SiteType.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/StructureSubType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/StructureSubType.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/StructureType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/StructureType.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/TacticalSituationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/TacticalSituationType.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/UnitType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/UnitType.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/VagueRelationshipType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/VagueRelationshipType.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/WorldConstructionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/WorldConstructionType.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Enums/WrittenContentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Enums/WrittenContentType.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Era.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Era.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/EventCollections/Abduction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/EventCollections/Abduction.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/EventCollections/Battle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/EventCollections/Battle.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/EventCollections/BeastAttack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/EventCollections/BeastAttack.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/EventCollections/CeremonyCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/EventCollections/CeremonyCollection.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/EventCollections/CompetitionCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/EventCollections/CompetitionCollection.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/EventCollections/Duel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/EventCollections/Duel.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/EventCollections/EntityOverthrownCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/EventCollections/EntityOverthrownCollection.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/EventCollections/EventCollections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/EventCollections/EventCollections.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/EventCollections/Insurrection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/EventCollections/Insurrection.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/EventCollections/Journey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/EventCollections/Journey.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/EventCollections/Occasion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/EventCollections/Occasion.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/EventCollections/PerformanceCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/EventCollections/PerformanceCollection.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/EventCollections/Persecution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/EventCollections/Persecution.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/EventCollections/ProcessionCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/EventCollections/ProcessionCollection.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/EventCollections/Purge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/EventCollections/Purge.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/EventCollections/Raid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/EventCollections/Raid.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/EventCollections/SiteConquered.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/EventCollections/SiteConquered.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/EventCollections/Theft.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/EventCollections/Theft.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/EventCollections/War.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/EventCollections/War.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/AddHFEntityLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/AddHFEntityLink.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/AddHFHFLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/AddHFHFLink.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/AddHFSiteLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/AddHFSiteLink.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/AddHfEntityHonor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/AddHfEntityHonor.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/AgreementConcluded.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/AgreementConcluded.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/AgreementFormed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/AgreementFormed.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/AgreementMade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/AgreementMade.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/AgreementRejected.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/AgreementRejected.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/AgreementVoid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/AgreementVoid.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/ArtifactClaimFormed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/ArtifactClaimFormed.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/ArtifactCopied.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/ArtifactCopied.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/ArtifactCreated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/ArtifactCreated.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/ArtifactDestroyed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/ArtifactDestroyed.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/ArtifactFound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/ArtifactFound.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/ArtifactGiven.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/ArtifactGiven.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/ArtifactLost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/ArtifactLost.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/ArtifactPossessed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/ArtifactPossessed.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/ArtifactRecovered.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/ArtifactRecovered.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/ArtifactStored.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/ArtifactStored.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/ArtifactTransformed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/ArtifactTransformed.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/AssumeIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/AssumeIdentity.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/AttackedSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/AttackedSite.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/BodyAbused.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/BodyAbused.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/BuildingProfileAcquired.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/BuildingProfileAcquired.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/Ceremony.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/Ceremony.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/ChangeHFBodyState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/ChangeHFBodyState.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/ChangeHFJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/ChangeHFJob.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/ChangeHFState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/ChangeHFState.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/ChangedCreatureType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/ChangedCreatureType.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/Competition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/Competition.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/CreateEntityPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/CreateEntityPosition.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/CreatedSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/CreatedSite.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/CreatedStructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/CreatedStructure.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/CreatedWorldConstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/CreatedWorldConstruction.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/CreatureDevoured.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/CreatureDevoured.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/DanceFormCreated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/DanceFormCreated.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/DestroyedSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/DestroyedSite.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/DiplomatLost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/DiplomatLost.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/EntityAllianceFormed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/EntityAllianceFormed.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/EntityBreachFeatureLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/EntityBreachFeatureLayer.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/EntityCreated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/EntityCreated.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/EntityDissolved.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/EntityDissolved.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/EntityEquipmentPurchase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/EntityEquipmentPurchase.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/EntityExpelsHF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/EntityExpelsHF.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/EntityFledSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/EntityFledSite.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/EntityIncorporated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/EntityIncorporated.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/EntityLaw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/EntityLaw.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/EntityOverthrown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/EntityOverthrown.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/EntityPersecuted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/EntityPersecuted.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/EntityPrimaryCriminals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/EntityPrimaryCriminals.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/EntityRampagedInSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/EntityRampagedInSite.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/EntityRelocate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/EntityRelocate.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/EntitySearchedSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/EntitySearchedSite.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/FailedFrameAttempt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/FailedFrameAttempt.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/FailedIntrigueCorruption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/FailedIntrigueCorruption.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/FieldBattle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/FieldBattle.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/FirstContact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/FirstContact.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/FormCreatedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/FormCreatedEvent.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/Gamble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/Gamble.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/HFAbducted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/HFAbducted.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/HFConfronted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/HFConfronted.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/HFDied.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/HFDied.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/HFDisturbedStructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/HFDisturbedStructure.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/HFDoesInteraction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/HFDoesInteraction.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/HFFreed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/HFFreed.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/HFGainsSecretGoal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/HFGainsSecretGoal.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/HFLearnsSecret.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/HFLearnsSecret.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/HFNewPet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/HFNewPet.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/HFProfanedStructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/HFProfanedStructure.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/HFRazedStructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/HFRazedStructure.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/HFReachSummit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/HFReachSummit.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/HFRelationShipDenied.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/HFRelationShipDenied.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/HFReunion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/HFReunion.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/HFRevived.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/HFRevived.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/HFSimpleBattleEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/HFSimpleBattleEvent.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/HFTravel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/HFTravel.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/HFWounded.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/HFWounded.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/HfAskedAboutArtifact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/HfAskedAboutArtifact.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/HfAttackedSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/HfAttackedSite.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/HfCarouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/HfCarouse.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/HfConvicted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/HfConvicted.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/HfDestroyedSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/HfDestroyedSite.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/HfEnslaved.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/HfEnslaved.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/HfEquipmentPurchase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/HfEquipmentPurchase.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/HfInterrogated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/HfInterrogated.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/HfPerformedHorribleExperiments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/HfPerformedHorribleExperiments.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/HfPrayedInsideStructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/HfPrayedInsideStructure.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/HfPreach.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/HfPreach.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/HfRansomed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/HfRansomed.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/HfRecruitedUnitTypeForEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/HfRecruitedUnitTypeForEntity.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/HfViewedArtifact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/HfViewedArtifact.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/HfsFormedIntrigueRelationship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/HfsFormedIntrigueRelationship.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/HfsFormedReputationRelationship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/HfsFormedReputationRelationship.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/HolyCityDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/HolyCityDeclaration.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/ImpersonateHF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/ImpersonateHF.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/InsurrectionStarted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/InsurrectionStarted.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/ItemStolen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/ItemStolen.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/KnowledgeDiscovered.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/KnowledgeDiscovered.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/MasterpieceArch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/MasterpieceArch.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/MasterpieceArchConstructed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/MasterpieceArchConstructed.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/MasterpieceArchDesign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/MasterpieceArchDesign.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/MasterpieceDye.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/MasterpieceDye.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/MasterpieceEngraving.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/MasterpieceEngraving.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/MasterpieceFood.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/MasterpieceFood.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/MasterpieceItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/MasterpieceItem.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/MasterpieceItemImprovement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/MasterpieceItemImprovement.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/MasterpieceLost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/MasterpieceLost.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/Merchant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/Merchant.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/ModifiedBuilding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/ModifiedBuilding.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/MusicalFormCreated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/MusicalFormCreated.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/NewSiteLeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/NewSiteLeader.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/OccasionEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/OccasionEvent.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/PeaceAccepted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/PeaceAccepted.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/PeaceEfforts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/PeaceEfforts.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/PeaceRejected.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/PeaceRejected.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/Performance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/Performance.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/PlunderedSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/PlunderedSite.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/PlusEvents/HistoricalEventRelationShip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/PlusEvents/HistoricalEventRelationShip.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/PoeticFormCreated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/PoeticFormCreated.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/Procession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/Procession.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/RazedStructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/RazedStructure.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/ReclaimSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/ReclaimSite.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/RegionpopIncorporatedIntoEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/RegionpopIncorporatedIntoEntity.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/RemoveHFEntityLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/RemoveHFEntityLink.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/RemoveHFSiteLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/RemoveHFSiteLink.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/RemoveHfHfLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/RemoveHfHfLink.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/ReplacedStructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/ReplacedStructure.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/Sabotage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/Sabotage.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/SiteAbandoned.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/SiteAbandoned.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/SiteDied.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/SiteDied.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/SiteDispute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/SiteDispute.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/SiteRetired.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/SiteRetired.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/SiteSurrendered.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/SiteSurrendered.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/SiteTakenOver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/SiteTakenOver.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/SiteTributeForced.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/SiteTributeForced.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/SneakIntoSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/SneakIntoSite.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/SpottedLeavingSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/SpottedLeavingSite.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/SquadVsSquad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/SquadVsSquad.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/TacticalSituation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/TacticalSituation.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/Trade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/Trade.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/WorldEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/WorldEvent.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events/WrittenContentComposed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Events/WrittenContentComposed.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Feature.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Formatting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Formatting.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/HistoricalFigureLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/HistoricalFigureLink.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Honor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Honor.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/HonorEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/HonorEntity.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Identity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Identity.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/IncidentalEvents/BattleFought.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/IncidentalEvents/BattleFought.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Interfaces/IFeatured.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Interfaces/IFeatured.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Interfaces/IHasCoordinates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Interfaces/IHasCoordinates.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/IntrigueActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/IntrigueActor.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/IntriguePlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/IntriguePlot.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Location.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Misc.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/OwnerPeriod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/OwnerPeriod.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Parser/HistoryParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Parser/HistoryParser.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Parser/ParsingErrors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Parser/ParsingErrors.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Parser/Property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Parser/Property.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Parser/Section.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Parser/Section.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Parser/SitesAndPopsParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Parser/SitesAndPopsParser.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Parser/XMLParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Parser/XMLParser.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Parser/XMLPlusParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Parser/XMLPlusParser.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/PlotActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/PlotActor.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Population.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Population.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Reference.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/RelationshipProfileHF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/RelationshipProfileHF.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Reputation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Reputation.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Schedule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Schedule.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/SiteLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/SiteLink.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/SiteProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/SiteProperty.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Skill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/Skill.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/VagueRelationship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/VagueRelationship.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/World.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/World.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/WorldObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/WorldObject.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/WorldObjects/Artifact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/WorldObjects/Artifact.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/WorldObjects/DanceForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/WorldObjects/DanceForm.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/WorldObjects/DwarfObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/WorldObjects/DwarfObject.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/WorldObjects/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/WorldObjects/Entity.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/WorldObjects/HistoricalFigure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/WorldObjects/HistoricalFigure.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/WorldObjects/Landmass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/WorldObjects/Landmass.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/WorldObjects/MountainPeak.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/WorldObjects/MountainPeak.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/WorldObjects/MusicalForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/WorldObjects/MusicalForm.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/WorldObjects/PoeticForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/WorldObjects/PoeticForm.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/WorldObjects/Region.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/WorldObjects/Region.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/WorldObjects/River.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/WorldObjects/River.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/WorldObjects/Site.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/WorldObjects/Site.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/WorldObjects/Structure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/WorldObjects/Structure.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/WorldObjects/UndergroundRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/WorldObjects/UndergroundRegion.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/WorldObjects/WorldConstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/WorldObjects/WorldConstruction.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/WorldObjects/WrittenContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Legends/WorldObjects/WrittenContent.cs -------------------------------------------------------------------------------- /LegendsViewer/LegendsViewer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/LegendsViewer.Designer.cs -------------------------------------------------------------------------------- /LegendsViewer/LegendsViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/LegendsViewer.cs -------------------------------------------------------------------------------- /LegendsViewer/LegendsViewer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/LegendsViewer.csproj -------------------------------------------------------------------------------- /LegendsViewer/LegendsViewer.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/LegendsViewer.csproj.DotSettings -------------------------------------------------------------------------------- /LegendsViewer/LegendsViewer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/LegendsViewer.resx -------------------------------------------------------------------------------- /LegendsViewer/LocalFileProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/LocalFileProvider.cs -------------------------------------------------------------------------------- /LegendsViewer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Program.cs -------------------------------------------------------------------------------- /LegendsViewer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LegendsViewer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /LegendsViewer/Properties/Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Properties/Resources.resources -------------------------------------------------------------------------------- /LegendsViewer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Properties/Resources.resx -------------------------------------------------------------------------------- /LegendsViewer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /LegendsViewer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Properties/Settings.settings -------------------------------------------------------------------------------- /LegendsViewer/Resources/arrow_back16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Resources/arrow_back16x16.png -------------------------------------------------------------------------------- /LegendsViewer/Resources/arrow_forward16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Resources/arrow_forward16x16.png -------------------------------------------------------------------------------- /LegendsViewer/Resources/chart16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Resources/chart16x16.png -------------------------------------------------------------------------------- /LegendsViewer/Resources/globe16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Resources/globe16x16.png -------------------------------------------------------------------------------- /LegendsViewer/Resources/map16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Resources/map16x16.png -------------------------------------------------------------------------------- /LegendsViewer/Resources/piechart16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Resources/piechart16x16.png -------------------------------------------------------------------------------- /LegendsViewer/Resources/search16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/Resources/search16x16.png -------------------------------------------------------------------------------- /LegendsViewer/SevenZipSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/SevenZipSharp.dll -------------------------------------------------------------------------------- /LegendsViewer/WebContent/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/WebContent/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /LegendsViewer/WebContent/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/WebContent/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /LegendsViewer/WebContent/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/WebContent/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /LegendsViewer/WebContent/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/WebContent/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /LegendsViewer/WebContent/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/WebContent/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /LegendsViewer/WebContent/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/WebContent/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /LegendsViewer/WebContent/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/WebContent/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /LegendsViewer/WebContent/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/WebContent/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /LegendsViewer/WebContent/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/WebContent/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /LegendsViewer/WebContent/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/WebContent/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /LegendsViewer/WebContent/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/WebContent/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /LegendsViewer/WebContent/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/WebContent/images/sort_asc.png -------------------------------------------------------------------------------- /LegendsViewer/WebContent/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/WebContent/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /LegendsViewer/WebContent/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/WebContent/images/sort_both.png -------------------------------------------------------------------------------- /LegendsViewer/WebContent/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/WebContent/images/sort_desc.png -------------------------------------------------------------------------------- /LegendsViewer/WebContent/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/WebContent/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /LegendsViewer/WebContent/scripts/Chart.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/WebContent/scripts/Chart.bundle.min.js -------------------------------------------------------------------------------- /LegendsViewer/WebContent/scripts/cytoscape-dagre.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/WebContent/scripts/cytoscape-dagre.js -------------------------------------------------------------------------------- /LegendsViewer/WebContent/scripts/cytoscape.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/WebContent/scripts/cytoscape.min.js -------------------------------------------------------------------------------- /LegendsViewer/WebContent/scripts/familygraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/WebContent/scripts/familygraph.js -------------------------------------------------------------------------------- /LegendsViewer/WebContent/scripts/jquery-3.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/WebContent/scripts/jquery-3.1.1.min.js -------------------------------------------------------------------------------- /LegendsViewer/WebContent/scripts/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/WebContent/scripts/jquery.dataTables.min.js -------------------------------------------------------------------------------- /LegendsViewer/WebContent/scripts/warfaregraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/WebContent/scripts/warfaregraph.js -------------------------------------------------------------------------------- /LegendsViewer/WebContent/styles/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/WebContent/styles/bootstrap.min.css -------------------------------------------------------------------------------- /LegendsViewer/WebContent/styles/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/WebContent/styles/font-awesome.min.css -------------------------------------------------------------------------------- /LegendsViewer/WebContent/styles/github-markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/WebContent/styles/github-markdown.css -------------------------------------------------------------------------------- /LegendsViewer/WebContent/styles/jquery.dataTables.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/WebContent/styles/jquery.dataTables.min.css -------------------------------------------------------------------------------- /LegendsViewer/WebContent/styles/legends.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/WebContent/styles/legends.css -------------------------------------------------------------------------------- /LegendsViewer/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/app.config -------------------------------------------------------------------------------- /LegendsViewer/book.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/book.ico -------------------------------------------------------------------------------- /LegendsViewer/dlgFileSelect.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/dlgFileSelect.Designer.cs -------------------------------------------------------------------------------- /LegendsViewer/dlgFileSelect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/dlgFileSelect.cs -------------------------------------------------------------------------------- /LegendsViewer/dlgFileSelect.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/dlgFileSelect.resx -------------------------------------------------------------------------------- /LegendsViewer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/LegendsViewer/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/README.md -------------------------------------------------------------------------------- /ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kromtec/LegendsViewer/HEAD/appveyor.yml --------------------------------------------------------------------------------