new-horizons/NewHorizons/External/Configs/TitleScreenConfig.cs
2025-01-25 04:19:45 -05:00

20 lines
421 B
C#

using NewHorizons.External.SerializableData;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NewHorizons.External.Configs
{
[JsonObject]
public class TitleScreenConfig
{
/// <summary>
/// Colour of the text on the main menu
/// </summary>
public MColor menuTextTint;
}
}