├── .gitignore ├── LICENSE ├── WaymarkPresetPlugin.sln ├── WaymarkPresetPlugin ├── Configuration.cs ├── DalamudPackager.targets ├── GameStructs.cs ├── ImGuiUtils.cs ├── IpcProvider.cs ├── MemoryHandler.cs ├── Plugin.cs ├── PluginUI.cs ├── Resources │ ├── CoordinateSystemDiagrams.png │ └── Localization │ │ ├── WaymarkPresetPlugin_Localizable.json │ │ └── loc_fr.json ├── ToDo.txt ├── UI │ ├── MapViewState.cs │ ├── ScratchPreset.cs │ ├── Window_Debug.cs │ ├── Window_Editor.cs │ ├── Window_Help.cs │ ├── Window_InfoPane.cs │ ├── Window_Library.cs │ ├── Window_Map.cs │ └── Window_Settings.cs ├── Waymark.cs ├── WaymarkInfo.txt ├── WaymarkPreset.cs ├── WaymarkPresetExport.cs ├── WaymarkPresetLibrary.cs ├── WaymarkPresetPlugin.csproj ├── WaymarkPresetPlugin.json ├── Win32Clipboard.cs ├── ZoneInfoHandler.cs ├── ZoneSearcher.cs ├── ZoneSortComparer.cs ├── ZoneSortType.cs └── packages.lock.json └── docs ├── CONTRIBUTING.md ├── Images ├── icon.png ├── image1.png ├── image2.png └── image3.png └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/LICENSE -------------------------------------------------------------------------------- /WaymarkPresetPlugin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/WaymarkPresetPlugin.sln -------------------------------------------------------------------------------- /WaymarkPresetPlugin/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/WaymarkPresetPlugin/Configuration.cs -------------------------------------------------------------------------------- /WaymarkPresetPlugin/DalamudPackager.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/WaymarkPresetPlugin/DalamudPackager.targets -------------------------------------------------------------------------------- /WaymarkPresetPlugin/GameStructs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/WaymarkPresetPlugin/GameStructs.cs -------------------------------------------------------------------------------- /WaymarkPresetPlugin/ImGuiUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/WaymarkPresetPlugin/ImGuiUtils.cs -------------------------------------------------------------------------------- /WaymarkPresetPlugin/IpcProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/WaymarkPresetPlugin/IpcProvider.cs -------------------------------------------------------------------------------- /WaymarkPresetPlugin/MemoryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/WaymarkPresetPlugin/MemoryHandler.cs -------------------------------------------------------------------------------- /WaymarkPresetPlugin/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/WaymarkPresetPlugin/Plugin.cs -------------------------------------------------------------------------------- /WaymarkPresetPlugin/PluginUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/WaymarkPresetPlugin/PluginUI.cs -------------------------------------------------------------------------------- /WaymarkPresetPlugin/Resources/CoordinateSystemDiagrams.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/WaymarkPresetPlugin/Resources/CoordinateSystemDiagrams.png -------------------------------------------------------------------------------- /WaymarkPresetPlugin/Resources/Localization/WaymarkPresetPlugin_Localizable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/WaymarkPresetPlugin/Resources/Localization/WaymarkPresetPlugin_Localizable.json -------------------------------------------------------------------------------- /WaymarkPresetPlugin/Resources/Localization/loc_fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/WaymarkPresetPlugin/Resources/Localization/loc_fr.json -------------------------------------------------------------------------------- /WaymarkPresetPlugin/ToDo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/WaymarkPresetPlugin/ToDo.txt -------------------------------------------------------------------------------- /WaymarkPresetPlugin/UI/MapViewState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/WaymarkPresetPlugin/UI/MapViewState.cs -------------------------------------------------------------------------------- /WaymarkPresetPlugin/UI/ScratchPreset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/WaymarkPresetPlugin/UI/ScratchPreset.cs -------------------------------------------------------------------------------- /WaymarkPresetPlugin/UI/Window_Debug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/WaymarkPresetPlugin/UI/Window_Debug.cs -------------------------------------------------------------------------------- /WaymarkPresetPlugin/UI/Window_Editor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/WaymarkPresetPlugin/UI/Window_Editor.cs -------------------------------------------------------------------------------- /WaymarkPresetPlugin/UI/Window_Help.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/WaymarkPresetPlugin/UI/Window_Help.cs -------------------------------------------------------------------------------- /WaymarkPresetPlugin/UI/Window_InfoPane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/WaymarkPresetPlugin/UI/Window_InfoPane.cs -------------------------------------------------------------------------------- /WaymarkPresetPlugin/UI/Window_Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/WaymarkPresetPlugin/UI/Window_Library.cs -------------------------------------------------------------------------------- /WaymarkPresetPlugin/UI/Window_Map.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/WaymarkPresetPlugin/UI/Window_Map.cs -------------------------------------------------------------------------------- /WaymarkPresetPlugin/UI/Window_Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/WaymarkPresetPlugin/UI/Window_Settings.cs -------------------------------------------------------------------------------- /WaymarkPresetPlugin/Waymark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/WaymarkPresetPlugin/Waymark.cs -------------------------------------------------------------------------------- /WaymarkPresetPlugin/WaymarkInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/WaymarkPresetPlugin/WaymarkInfo.txt -------------------------------------------------------------------------------- /WaymarkPresetPlugin/WaymarkPreset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/WaymarkPresetPlugin/WaymarkPreset.cs -------------------------------------------------------------------------------- /WaymarkPresetPlugin/WaymarkPresetExport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/WaymarkPresetPlugin/WaymarkPresetExport.cs -------------------------------------------------------------------------------- /WaymarkPresetPlugin/WaymarkPresetLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/WaymarkPresetPlugin/WaymarkPresetLibrary.cs -------------------------------------------------------------------------------- /WaymarkPresetPlugin/WaymarkPresetPlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/WaymarkPresetPlugin/WaymarkPresetPlugin.csproj -------------------------------------------------------------------------------- /WaymarkPresetPlugin/WaymarkPresetPlugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/WaymarkPresetPlugin/WaymarkPresetPlugin.json -------------------------------------------------------------------------------- /WaymarkPresetPlugin/Win32Clipboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/WaymarkPresetPlugin/Win32Clipboard.cs -------------------------------------------------------------------------------- /WaymarkPresetPlugin/ZoneInfoHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/WaymarkPresetPlugin/ZoneInfoHandler.cs -------------------------------------------------------------------------------- /WaymarkPresetPlugin/ZoneSearcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/WaymarkPresetPlugin/ZoneSearcher.cs -------------------------------------------------------------------------------- /WaymarkPresetPlugin/ZoneSortComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/WaymarkPresetPlugin/ZoneSortComparer.cs -------------------------------------------------------------------------------- /WaymarkPresetPlugin/ZoneSortType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/WaymarkPresetPlugin/ZoneSortType.cs -------------------------------------------------------------------------------- /WaymarkPresetPlugin/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/WaymarkPresetPlugin/packages.lock.json -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/Images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/docs/Images/icon.png -------------------------------------------------------------------------------- /docs/Images/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/docs/Images/image1.png -------------------------------------------------------------------------------- /docs/Images/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/docs/Images/image2.png -------------------------------------------------------------------------------- /docs/Images/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/docs/Images/image3.png -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PunishedPineapple/WaymarkPresetPlugin/HEAD/docs/README.md --------------------------------------------------------------------------------