From fb4b4d1fd98bef9840fae0259bada9f6a70581fc Mon Sep 17 00:00:00 2001 From: Ben C Date: Sun, 19 Jun 2022 15:13:50 -0400 Subject: [PATCH] Add `AddonConfig` to schema exporter --- SchemaExporter/SchemaExporter.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/SchemaExporter/SchemaExporter.cs b/SchemaExporter/SchemaExporter.cs index f58241a6..87a701bd 100644 --- a/SchemaExporter/SchemaExporter.cs +++ b/SchemaExporter/SchemaExporter.cs @@ -27,6 +27,9 @@ public static class SchemaExporter var systemSchema = new Schema("Star System Schema", "Schema for a star system in New Horizons", $"{folderName}/star_system_schema", settings); systemSchema.Output(); + var addonSchema = new Schema("Addon Manifest Schema", + "Schema for an addon manifest in New Horizons", $"{folderName}/addon_manifest_schema", settings); + addonSchema.Output(); var translationSchema = new Schema("Translation Schema", "Schema for a translation file in New Horizons", $"{folderName}/translation_schema", settings); translationSchema.Output();