namespace V3.Data { /// /// Handles the storing and loading of game options to the hard disk. /// public interface IOptionsManager { /// /// The current options. /// Options Options { get; } /// /// Saves the current options to the hard disk. /// void SaveOptions(); } }