From 02c771d1b8e39abe23f179a9864586cf60f7fa98 Mon Sep 17 00:00:00 2001 From: Noah Pilarski Date: Sat, 25 Jan 2025 04:21:59 -0500 Subject: [PATCH] Add schema --- SchemaExporter/SchemaExporter.cs | 3 +++ 1 file changed, 3 insertions(+) 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!"); }