aboutsummaryrefslogtreecommitdiff
path: root/V3/Data/IOptionsManager.cs
blob: 6910107d86da5b3625abd5233096e75d267efeab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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();
    }
}