diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-03-12 20:12:47 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-03-12 20:12:47 -0400 |
commit | 183fb9ff6e66e519ee9c0e3a3357504e8caf662a (patch) | |
tree | 85cf57e27d879da6ceb79d820642abe917e4573e /src/StardewModdingAPI/Advanced/IConfigFile.cs | |
parent | 6a87f3566fcdde312483a5e9a0ec0698aa95d3b6 (diff) | |
download | SMAPI-183fb9ff6e66e519ee9c0e3a3357504e8caf662a.tar.gz SMAPI-183fb9ff6e66e519ee9c0e3a3357504e8caf662a.tar.bz2 SMAPI-183fb9ff6e66e519ee9c0e3a3357504e8caf662a.zip |
remove unused IConfigFile (#238)
Diffstat (limited to 'src/StardewModdingAPI/Advanced/IConfigFile.cs')
-rw-r--r-- | src/StardewModdingAPI/Advanced/IConfigFile.cs | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/src/StardewModdingAPI/Advanced/IConfigFile.cs b/src/StardewModdingAPI/Advanced/IConfigFile.cs deleted file mode 100644 index 1b424ace..00000000 --- a/src/StardewModdingAPI/Advanced/IConfigFile.cs +++ /dev/null @@ -1,28 +0,0 @@ -using System; - -namespace StardewModdingAPI.Advanced -{ - /// <summary>Wraps a configuration file with IO methods for convenience.</summary> - [Obsolete] - public interface IConfigFile - { - /********* - ** Accessors - *********/ - /// <summary>Provides simplified APIs for writing mods.</summary> - IModHelper ModHelper { get; set; } - - /// <summary>The file path from which the model was loaded, relative to the mod directory.</summary> - string FilePath { get; set; } - - - /********* - ** Methods - *********/ - /// <summary>Reparse the underlying file and update this model.</summary> - void Reload(); - - /// <summary>Save this model to the underlying file.</summary> - void Save(); - } -} |