mirror of
https://github.com/Wincent01/InfectedRose.git
synced 2025-12-30 16:59:37 -06:00
* An interface for adding npcs, missions, and zones. * Emit SQL to run on your server. * See README for InfectedRose.Interface for more info.
23 lines
803 B
C#
23 lines
803 B
C#
using System.Collections.Generic;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace InfectedRose.Interface
|
|
{
|
|
[XmlRoot("Config")]
|
|
public class Configuration
|
|
{
|
|
[XmlElement("CDClient")] public string CdClient { get; set; } = "cdclient.fdb";
|
|
|
|
[XmlElement("Output")] public string Output { get; set; } = "/res";
|
|
|
|
[XmlElement("SqlOutput")] public string SqlOutput { get; set; } = "output.sql";
|
|
|
|
[XmlElement("Release")] public bool Release { get; set; } = false;
|
|
|
|
[XmlElement("Zone")] public List<string> Zones { get; set; } = new List<string>();
|
|
|
|
[XmlElement("Npc")] public List<string> Npcs { get; set; } = new List<string>();
|
|
|
|
[XmlElement("Mission")] public List<string> Mission { get; set; } = new List<string>();
|
|
}
|
|
} |