/// <summary>
 /// This constructor is for provided StarOpCode + flareStar
 /// </summary>
 /// <param name="c">The OpCode (what type of system it is)</param>
 /// <param name="flareStar">Whether or not the object is a flare star</param>
 public StellarObject(SOOpCode c, bool flareStar)
 {
     this.stellarType = c;
        this.isFlareStar = flareStar;
        this.ident = Guid.NewGuid().ToString();
 }
 public StellarObject(SOOpCode c, string n)
 {
     this.stellarType = c;
        this.stellarName = n;
        this.ident = Guid.NewGuid().ToString();
 }