aboutsummaryrefslogtreecommitdiff
path: root/V3/Data/IOptionsManager.cs
diff options
context:
space:
mode:
Diffstat (limited to 'V3/Data/IOptionsManager.cs')
-rw-r--r--V3/Data/IOptionsManager.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/V3/Data/IOptionsManager.cs b/V3/Data/IOptionsManager.cs
new file mode 100644
index 0000000..6910107
--- /dev/null
+++ b/V3/Data/IOptionsManager.cs
@@ -0,0 +1,18 @@
+namespace V3.Data
+{
+ /// <summary>
+ /// Handles the storing and loading of game options to the hard disk.
+ /// </summary>
+ public interface IOptionsManager
+ {
+ /// <summary>
+ /// The current options.
+ /// </summary>
+ Options Options { get; }
+
+ /// <summary>
+ /// Saves the current options to the hard disk.
+ /// </summary>
+ void SaveOptions();
+ }
+}