summaryrefslogtreecommitdiff
path: root/src/SMAPI.Installer/Program.cs
blob: 8f328ecfb611db99f00fcf02cbd838c9235971f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace StardewModdingApi.Installer
{
    /// <summary>The entry point for SMAPI's install and uninstall console app.</summary>
    internal class Program
    {
        /*********
        ** Public methods
        *********/
        /// <summary>Run the install or uninstall script.</summary>
        /// <param name="args">The command line arguments.</param>
        public static void Main(string[] args)
        {
            var installer = new InteractiveInstaller();
            installer.Run(args);
        }
    }
}