diff --git a/SchemaExporter/SchemaExporter.cs b/SchemaExporter/SchemaExporter.cs index 00e37f02..4f4d6ddf 100644 --- a/SchemaExporter/SchemaExporter.cs +++ b/SchemaExporter/SchemaExporter.cs @@ -33,6 +33,9 @@ public static class SchemaExporter var translationSchema = new Schema("Translation Schema", "Schema for a translation file in New Horizons", $"{folderName}/translation_schema", settings); translationSchema.Output(); + var titleScreenSchema = new Schema("Title Screen Schema", + "Schema for the title screen config in New Horizons", $"{folderName}/title_screen_schema", settings); + titleScreenSchema.Output(); Console.WriteLine("Done!"); }