From bb165f2079e33d02c0e673db73ac5b336272a3fa Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Thu, 11 May 2017 23:21:02 -0400 Subject: organise a few framework classes --- .../Framework/AssemblyParseResult.cs | 31 ---------------------- 1 file changed, 31 deletions(-) delete mode 100644 src/StardewModdingAPI/Framework/AssemblyParseResult.cs (limited to 'src/StardewModdingAPI/Framework/AssemblyParseResult.cs') diff --git a/src/StardewModdingAPI/Framework/AssemblyParseResult.cs b/src/StardewModdingAPI/Framework/AssemblyParseResult.cs deleted file mode 100644 index bff976aa..00000000 --- a/src/StardewModdingAPI/Framework/AssemblyParseResult.cs +++ /dev/null @@ -1,31 +0,0 @@ -using System.IO; -using Mono.Cecil; - -namespace StardewModdingAPI.Framework -{ - /// Metadata about a parsed assembly definition. - internal class AssemblyParseResult - { - /********* - ** Accessors - *********/ - /// The original assembly file. - public readonly FileInfo File; - - /// The assembly definition. - public readonly AssemblyDefinition Definition; - - - /********* - ** Public methods - *********/ - /// Construct an instance. - /// The original assembly file. - /// The assembly definition. - public AssemblyParseResult(FileInfo file, AssemblyDefinition assembly) - { - this.File = file; - this.Definition = assembly; - } - } -} \ No newline at end of file -- cgit