blob: c3a787c7f1e9cbf9fc758e0aa57d379b9beeb471 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#nullable disable
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";
}
}
|