// // NostaleDataOptions.cs // // Copyright (c) František Boháček. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using NosSmooth.Data.Abstractions.Language; namespace NosSmooth.Data.NOSFiles.Options; /// /// Options for loading nostale files. /// public class NostaleDataOptions { /// /// Gets or sets the supported languages that will be loaded into the memory.. /// public Language[] SupportedLanguages { get; set; } = new Language[] { Language.Uk }; /// /// Gets or sets the path to .nos files. /// public string NostaleDataPath { get; set; } = "NostaleData"; /// /// Gets or sets the name of the file with map grid data. /// public string MapGridsFileName { get; set; } = "NStcData.NOS"; /// /// Gets or sets the name of the file with infos data. /// public string InfosFileName { get; set; } = "NSgtdData.NOS"; /// /// Gets or sets the name of the file with language data. /// /// /// Should contain %lang% string to be replaced with the language abbrev. /// public string LanguageFileName { get; set; } = "NSlangData_%lang%.NOS"; }