summaryrefslogtreecommitdiff
path: root/src/SMAPI.Installer/Enums/ScriptAction.cs
blob: 27f649a6a73972a4c353d7015e60ec0efb05a097 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace StardewModdingApi.Installer.Enums
{
    /// <summary>The action to perform.</summary>
    internal enum ScriptAction
    {
        /// <summary>Install SMAPI to the game directory.</summary>
        Install,

        /// <summary>Remove SMAPI from the game directory.</summary>
        Uninstall
    }
}