summaryrefslogtreecommitdiff
path: root/src/StardewModdingAPI.Installer/Enums/ScriptAction.cs
blob: e62b2a7c3a19378dadcf0a3fd96e2600a8b0560b (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
    }
}