summaryrefslogtreecommitdiff
path: root/src/SMAPI.Toolkit/Framework/Constants.cs
blob: 55f265822528cd2f96371d7321c9b757d409f0db (plain)
1
2
3
4
5
6
7
8
9
namespace StardewModdingAPI.Toolkit.Framework
{
    /// <summary>Contains the SMAPI installer's constants and assumptions.</summary>
    internal static class Constants
    {
        /// <summary>The name of the game's main DLL, used to detect game folders.</summary>
        public const string GameDllName = "Stardew Valley.dll";
    }
}