├── .gitignore ├── LICENSE ├── LegendsViewer.sln ├── LegendsViewer.userprefs ├── LegendsViewer ├── 7z.dll ├── 7z64.dll ├── Controls │ ├── Chart │ │ ├── ChartControl.cs │ │ ├── dlgHF.Designer.cs │ │ ├── dlgHF.cs │ │ └── dlgHF.resx │ ├── DwarfTabControl.cs │ ├── DwarfTabPage.cs │ ├── HTML │ │ ├── ArtifactPrinter.cs │ │ ├── BattlePrinter.cs │ │ ├── BeastAttackPrinter.cs │ │ ├── EntityPrinter.cs │ │ ├── EraPrinter.cs │ │ ├── HTMLControl.cs │ │ ├── HTMLPrinter.cs │ │ ├── HistoricalFigurePrinter.cs │ │ ├── RegionPrinter.cs │ │ ├── SiteConqueredPrinter.cs │ │ ├── SitePrinter.cs │ │ ├── StringPrinter.cs │ │ ├── UndergroundRegionPrinter.cs │ │ ├── WarPrinter.cs │ │ └── WorldStatsPrinter.cs │ ├── Map │ │ ├── HeatMapMaker.cs │ │ ├── MapControl.cs │ │ ├── MapDrawer.cs │ │ ├── MapMenu.cs │ │ ├── PathMaker.cs │ │ ├── dlgPopulation.Designer.cs │ │ ├── dlgPopulation.cs │ │ └── dlgPopulation.resx │ ├── PageControl.cs │ ├── Query │ │ ├── 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 │ └── appClasses.cs ├── FileLoader.cs ├── Legends │ ├── Artifact.cs │ ├── DwarfObject.cs │ ├── Entity.cs │ ├── EntityPopulation.cs │ ├── EntityReputation.cs │ ├── Era.cs │ ├── EventCollections │ │ ├── Abduction.cs │ │ ├── Battle.cs │ │ ├── BeastAttack.cs │ │ ├── Duel.cs │ │ ├── EventCollections.cs │ │ ├── Insurrection.cs │ │ ├── Journey.cs │ │ ├── SiteConquered.cs │ │ ├── Theft.cs │ │ └── War.cs │ ├── Events.cs │ ├── Formatting.cs │ ├── HistoricalFigure.cs │ ├── HistoryParser.cs │ ├── IdenticonRenderer.cs │ ├── Link.cs │ ├── Misc.cs │ ├── OwnerPeriod.cs │ ├── ParsingErrors.cs │ ├── Population.cs │ ├── Region.cs │ ├── Site.cs │ ├── SitesAndPopsParser.cs │ ├── UndergroundRegion.cs │ ├── World.cs │ ├── WorldObject.cs │ └── XMLParser.cs ├── LegendsViewer.Designer.cs ├── LegendsViewer.cs ├── LegendsViewer.csproj ├── LegendsViewer.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.resources │ ├── Settings.Designer.cs │ └── Settings.settings ├── ReadMe.txt ├── SevenZipSharp.dll ├── app.config ├── dlgFileSelect.Designer.cs ├── dlgFileSelect.cs └── dlgFileSelect.resx └── appveyor.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LICENSE -------------------------------------------------------------------------------- /LegendsViewer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer.sln -------------------------------------------------------------------------------- /LegendsViewer.userprefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer.userprefs -------------------------------------------------------------------------------- /LegendsViewer/7z.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/7z.dll -------------------------------------------------------------------------------- /LegendsViewer/7z64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/7z64.dll -------------------------------------------------------------------------------- /LegendsViewer/Controls/Chart/ChartControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/Chart/ChartControl.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Chart/dlgHF.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/Chart/dlgHF.Designer.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Chart/dlgHF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/Chart/dlgHF.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Chart/dlgHF.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/Chart/dlgHF.resx -------------------------------------------------------------------------------- /LegendsViewer/Controls/DwarfTabControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/DwarfTabControl.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/DwarfTabPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/DwarfTabPage.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/ArtifactPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/HTML/ArtifactPrinter.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/BattlePrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/HTML/BattlePrinter.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/BeastAttackPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/HTML/BeastAttackPrinter.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/EntityPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/HTML/EntityPrinter.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/EraPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/HTML/EraPrinter.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/HTMLControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/HTML/HTMLControl.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/HTMLPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/HTML/HTMLPrinter.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/HistoricalFigurePrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/HTML/HistoricalFigurePrinter.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/RegionPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/HTML/RegionPrinter.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/SiteConqueredPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/HTML/SiteConqueredPrinter.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/SitePrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/HTML/SitePrinter.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/StringPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/HTML/StringPrinter.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/UndergroundRegionPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/HTML/UndergroundRegionPrinter.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/WarPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/HTML/WarPrinter.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/HTML/WorldStatsPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/HTML/WorldStatsPrinter.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Map/HeatMapMaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/Map/HeatMapMaker.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Map/MapControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/Map/MapControl.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Map/MapDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/Map/MapDrawer.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Map/MapMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/Map/MapMenu.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Map/PathMaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/Map/PathMaker.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Map/dlgPopulation.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/Map/dlgPopulation.Designer.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Map/dlgPopulation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/Map/dlgPopulation.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Map/dlgPopulation.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/Map/dlgPopulation.resx -------------------------------------------------------------------------------- /LegendsViewer/Controls/PageControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/PageControl.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Query/CriteriaLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/Query/CriteriaLine.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Query/CriteriaPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/Query/CriteriaPanel.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Query/DwarfQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/Query/DwarfQuery.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Query/Dynamic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/Query/Dynamic.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Query/PropertyBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/Query/PropertyBox.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Query/QueryControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/Query/QueryControl.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Query/QueryControl.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/Query/QueryControl.designer.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Query/QueryControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/Query/QueryControl.resx -------------------------------------------------------------------------------- /LegendsViewer/Controls/Query/SearchInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/Query/SearchInfo.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Query/SearchList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/Query/SearchList.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/Query/SearchProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/Query/SearchProperty.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/SimpleLists.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/SimpleLists.cs -------------------------------------------------------------------------------- /LegendsViewer/Controls/appClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Controls/appClasses.cs -------------------------------------------------------------------------------- /LegendsViewer/FileLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/FileLoader.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Artifact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Legends/Artifact.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/DwarfObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Legends/DwarfObject.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Legends/Entity.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/EntityPopulation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Legends/EntityPopulation.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/EntityReputation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Legends/EntityReputation.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Era.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Legends/Era.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/EventCollections/Abduction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Legends/EventCollections/Abduction.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/EventCollections/Battle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Legends/EventCollections/Battle.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/EventCollections/BeastAttack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Legends/EventCollections/BeastAttack.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/EventCollections/Duel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Legends/EventCollections/Duel.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/EventCollections/EventCollections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Legends/EventCollections/EventCollections.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/EventCollections/Insurrection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Legends/EventCollections/Insurrection.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/EventCollections/Journey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Legends/EventCollections/Journey.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/EventCollections/SiteConquered.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Legends/EventCollections/SiteConquered.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/EventCollections/Theft.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Legends/EventCollections/Theft.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/EventCollections/War.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Legends/EventCollections/War.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Legends/Events.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Formatting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Legends/Formatting.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/HistoricalFigure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Legends/HistoricalFigure.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/HistoryParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Legends/HistoryParser.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/IdenticonRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Legends/IdenticonRenderer.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Link.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Legends/Link.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Legends/Misc.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/OwnerPeriod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Legends/OwnerPeriod.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/ParsingErrors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Legends/ParsingErrors.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Population.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Legends/Population.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Region.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Legends/Region.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/Site.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Legends/Site.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/SitesAndPopsParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Legends/SitesAndPopsParser.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/UndergroundRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Legends/UndergroundRegion.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/World.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Legends/World.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/WorldObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Legends/WorldObject.cs -------------------------------------------------------------------------------- /LegendsViewer/Legends/XMLParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Legends/XMLParser.cs -------------------------------------------------------------------------------- /LegendsViewer/LegendsViewer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/LegendsViewer.Designer.cs -------------------------------------------------------------------------------- /LegendsViewer/LegendsViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/LegendsViewer.cs -------------------------------------------------------------------------------- /LegendsViewer/LegendsViewer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/LegendsViewer.csproj -------------------------------------------------------------------------------- /LegendsViewer/LegendsViewer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/LegendsViewer.resx -------------------------------------------------------------------------------- /LegendsViewer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Program.cs -------------------------------------------------------------------------------- /LegendsViewer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LegendsViewer/Properties/Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Properties/Resources.resources -------------------------------------------------------------------------------- /LegendsViewer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /LegendsViewer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/Properties/Settings.settings -------------------------------------------------------------------------------- /LegendsViewer/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/ReadMe.txt -------------------------------------------------------------------------------- /LegendsViewer/SevenZipSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/SevenZipSharp.dll -------------------------------------------------------------------------------- /LegendsViewer/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/app.config -------------------------------------------------------------------------------- /LegendsViewer/dlgFileSelect.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/dlgFileSelect.Designer.cs -------------------------------------------------------------------------------- /LegendsViewer/dlgFileSelect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/dlgFileSelect.cs -------------------------------------------------------------------------------- /LegendsViewer/dlgFileSelect.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/LegendsViewer/dlgFileSelect.resx -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parker147/Legends-Viewer/HEAD/appveyor.yml --------------------------------------------------------------------------------