├── .gitignore ├── App.config ├── Data ├── CharacterAliasConfig.cs ├── Config.cs ├── GameDataConfig.cs ├── GameDataHandler.cs ├── GamePresetContainer.cs ├── PresetLibrary.cs ├── ProgramConfig.cs ├── VersionInfoHelper.cs ├── Waymark.cs ├── WaymarkPreset.cs └── ZoneInfo.cs ├── LICENSE ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Support └── GameData.cfg ├── ToDo.txt ├── WaymarkLibrarian.csproj ├── WaymarkLibrarian.sln ├── WaymarkLibrarianForm.Designer.cs ├── WaymarkLibrarianForm.cs ├── WaymarkLibrarianForm.resx ├── WaymarkPreview.xaml ├── WaymarkPreview.xaml.cs ├── ZoneDictionaryGenerator ├── Program.cs └── ZoneDictionaryGenerator.csproj ├── docs ├── README.md ├── WaymarkLibrarianScreenshot.png └── WaymarkLibrarianScreenshot_Small.png └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkLibrarian/HEAD/.gitignore -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkLibrarian/HEAD/App.config -------------------------------------------------------------------------------- /Data/CharacterAliasConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkLibrarian/HEAD/Data/CharacterAliasConfig.cs -------------------------------------------------------------------------------- /Data/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkLibrarian/HEAD/Data/Config.cs -------------------------------------------------------------------------------- /Data/GameDataConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkLibrarian/HEAD/Data/GameDataConfig.cs -------------------------------------------------------------------------------- /Data/GameDataHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkLibrarian/HEAD/Data/GameDataHandler.cs -------------------------------------------------------------------------------- /Data/GamePresetContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkLibrarian/HEAD/Data/GamePresetContainer.cs -------------------------------------------------------------------------------- /Data/PresetLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkLibrarian/HEAD/Data/PresetLibrary.cs -------------------------------------------------------------------------------- /Data/ProgramConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkLibrarian/HEAD/Data/ProgramConfig.cs -------------------------------------------------------------------------------- /Data/VersionInfoHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkLibrarian/HEAD/Data/VersionInfoHelper.cs -------------------------------------------------------------------------------- /Data/Waymark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkLibrarian/HEAD/Data/Waymark.cs -------------------------------------------------------------------------------- /Data/WaymarkPreset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkLibrarian/HEAD/Data/WaymarkPreset.cs -------------------------------------------------------------------------------- /Data/ZoneInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkLibrarian/HEAD/Data/ZoneInfo.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkLibrarian/HEAD/LICENSE -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkLibrarian/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkLibrarian/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkLibrarian/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkLibrarian/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkLibrarian/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkLibrarian/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /Support/GameData.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkLibrarian/HEAD/Support/GameData.cfg -------------------------------------------------------------------------------- /ToDo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkLibrarian/HEAD/ToDo.txt -------------------------------------------------------------------------------- /WaymarkLibrarian.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkLibrarian/HEAD/WaymarkLibrarian.csproj -------------------------------------------------------------------------------- /WaymarkLibrarian.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkLibrarian/HEAD/WaymarkLibrarian.sln -------------------------------------------------------------------------------- /WaymarkLibrarianForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkLibrarian/HEAD/WaymarkLibrarianForm.Designer.cs -------------------------------------------------------------------------------- /WaymarkLibrarianForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkLibrarian/HEAD/WaymarkLibrarianForm.cs -------------------------------------------------------------------------------- /WaymarkLibrarianForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkLibrarian/HEAD/WaymarkLibrarianForm.resx -------------------------------------------------------------------------------- /WaymarkPreview.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkLibrarian/HEAD/WaymarkPreview.xaml -------------------------------------------------------------------------------- /WaymarkPreview.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkLibrarian/HEAD/WaymarkPreview.xaml.cs -------------------------------------------------------------------------------- /ZoneDictionaryGenerator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkLibrarian/HEAD/ZoneDictionaryGenerator/Program.cs -------------------------------------------------------------------------------- /ZoneDictionaryGenerator/ZoneDictionaryGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkLibrarian/HEAD/ZoneDictionaryGenerator/ZoneDictionaryGenerator.csproj -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkLibrarian/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/WaymarkLibrarianScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkLibrarian/HEAD/docs/WaymarkLibrarianScreenshot.png -------------------------------------------------------------------------------- /docs/WaymarkLibrarianScreenshot_Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkLibrarian/HEAD/docs/WaymarkLibrarianScreenshot_Small.png -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkLibrarian/HEAD/packages.config --------------------------------------------------------------------------------