Beispiel #1
0
 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;
 }
Beispiel #2
0
 public BBS(SystemBody body) : this()
 {
     this.BBSName = body.Name;
     this.BBSCode = string.Format("{0}/{1}", body.Coords.ToString(), body.Name);
     this.Parent  = null;
 }
Beispiel #3
0
 public BBS(StarSystem system) : this()
 {
     this.BBSName = system.Name;
     this.BBSCode = system.Coords.ToString();
     this.Parent  = null;
 }