From 929dccb75a1405737975d76648e015a3e7c00177 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Sat, 7 Oct 2017 23:07:10 -0400 Subject: reorganise repo structure --- src/SMAPI.Installer/Enums/Platform.cs | 12 ++++++++++++ src/SMAPI.Installer/Enums/ScriptAction.cs | 12 ++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 src/SMAPI.Installer/Enums/Platform.cs create mode 100644 src/SMAPI.Installer/Enums/ScriptAction.cs (limited to 'src/SMAPI.Installer/Enums') diff --git a/src/SMAPI.Installer/Enums/Platform.cs b/src/SMAPI.Installer/Enums/Platform.cs new file mode 100644 index 00000000..9bcaa3c3 --- /dev/null +++ b/src/SMAPI.Installer/Enums/Platform.cs @@ -0,0 +1,12 @@ +namespace StardewModdingApi.Installer.Enums +{ + /// The game's platform version. + internal enum Platform + { + /// The Linux/Mac version of the game. + Mono, + + /// The Windows version of the game. + Windows + } +} \ No newline at end of file diff --git a/src/SMAPI.Installer/Enums/ScriptAction.cs b/src/SMAPI.Installer/Enums/ScriptAction.cs new file mode 100644 index 00000000..e62b2a7c --- /dev/null +++ b/src/SMAPI.Installer/Enums/ScriptAction.cs @@ -0,0 +1,12 @@ +namespace StardewModdingApi.Installer.Enums +{ + /// The action to perform. + internal enum ScriptAction + { + /// Install SMAPI to the game directory. + Install, + + /// Remove SMAPI from the game directory. + Uninstall + } +} \ No newline at end of file -- cgit