public BBSOption(string optionCode, string text, string cmd, BBSOption parent, bool jumpPrevious) { this.OptionCode = optionCode; this.Text = text; this.Options = new List <BBSOption>(); this.Parent = parent; this.JumpPrevious = jumpPrevious; this.Cmd = cmd; }
public BBS(SystemBody body) : this() { this.BBSName = body.Name; this.BBSCode = string.Format("{0}/{1}", body.Coords.ToString(), body.Name); this.Parent = null; }
public BBS(StarSystem system) : this() { this.BBSName = system.Name; this.BBSCode = system.Coords.ToString(); this.Parent = null; }