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 --- .../ModLoading/InstructionHandleResult.cs | 24 ---------------------- 1 file changed, 24 deletions(-) delete mode 100644 src/StardewModdingAPI/Framework/ModLoading/InstructionHandleResult.cs (limited to 'src/StardewModdingAPI/Framework/ModLoading/InstructionHandleResult.cs') diff --git a/src/StardewModdingAPI/Framework/ModLoading/InstructionHandleResult.cs b/src/StardewModdingAPI/Framework/ModLoading/InstructionHandleResult.cs deleted file mode 100644 index 0ae598fc..00000000 --- a/src/StardewModdingAPI/Framework/ModLoading/InstructionHandleResult.cs +++ /dev/null @@ -1,24 +0,0 @@ -namespace StardewModdingAPI.Framework.ModLoading -{ - /// Indicates how an instruction was handled. - internal enum InstructionHandleResult - { - /// No special handling is needed. - None, - - /// The instruction was successfully rewritten for compatibility. - Rewritten, - - /// The instruction is not compatible and can't be rewritten for compatibility. - NotCompatible, - - /// The instruction is compatible, but patches the game in a way that may impact stability. - DetectedGamePatch, - - /// The instruction is compatible, but affects the save serializer in a way that may make saves unloadable without the mod. - DetectedSaveSerialiser, - - /// The instruction is compatible, but uses the dynamic keyword which won't work on Linux/Mac. - DetectedDynamic - } -} -- cgit