diff --git a/NewHorizons/External/Configs/TitleScreenConfig.cs b/NewHorizons/External/Configs/TitleScreenConfig.cs
index e5a73046..b7c18a12 100644
--- a/NewHorizons/External/Configs/TitleScreenConfig.cs
+++ b/NewHorizons/External/Configs/TitleScreenConfig.cs
@@ -6,15 +6,24 @@ using Newtonsoft.Json;
namespace NewHorizons.External.Configs
{
+ ///
+ /// Allows you to configure the title screen with custom music, skyboxes, and loading props from asset bundles.
+ /// You can define a list of title screen configurations, with different persistent condition/ship log facts required to display them.
+ ///
[JsonObject]
public class TitleScreenConfig
{
///
- /// Create title screens
+ /// Create title screens.
+ /// The last title screen in the list with its display conditions (persistent condition and/or ship log) met will be displayed if this mod
+ /// is chosen to be shown on the main menu.
///
public TitleScreenInfo[] titleScreens = new TitleScreenInfo[0];
}
+ ///
+ /// A single title screen configuration
+ ///
[JsonObject]
public class TitleScreenInfo
{