diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-04-05 14:55:46 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-04-05 14:55:46 -0400 |
commit | dbb9bd84306830456032778fc11fb9a34dd140c7 (patch) | |
tree | 0219cab065bfffbbbb9b048b6a30044f510be2c5 /src/StardewModdingAPI/Advanced/IConfigFile.cs | |
parent | 9c9833c9086b758589dafee10243e3bf47e12d73 (diff) | |
parent | 4675da0600edf6781cd740549ad0a175b606fc1e (diff) | |
download | SMAPI-dbb9bd84306830456032778fc11fb9a34dd140c7.tar.gz SMAPI-dbb9bd84306830456032778fc11fb9a34dd140c7.tar.bz2 SMAPI-dbb9bd84306830456032778fc11fb9a34dd140c7.zip |
Merge branch 'develop-1.9' into stable
Diffstat (limited to 'src/StardewModdingAPI/Advanced/IConfigFile.cs')
-rw-r--r-- | src/StardewModdingAPI/Advanced/IConfigFile.cs | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/src/StardewModdingAPI/Advanced/IConfigFile.cs b/src/StardewModdingAPI/Advanced/IConfigFile.cs deleted file mode 100644 index 5bc31a88..00000000 --- a/src/StardewModdingAPI/Advanced/IConfigFile.cs +++ /dev/null @@ -1,25 +0,0 @@ -namespace StardewModdingAPI.Advanced -{ - /// <summary>Wraps a configuration file with IO methods for convenience.</summary> - 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(); - } -} |