using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace MudEngine.DAL { /// /// Contains the paths for the engines file storage. /// public struct DataPaths { /// /// Path to the engines Script directory /// public String Scripts { get; set; } /// /// Path to the engines Environment files. /// public String Environments { get; set; } /// /// Path to the engines saved objects (Equipment etc). /// public String Objects { get; set; } } }