StarSystem.Init C# (CSharp) Method

Init() public method

public Init ( ) : void
return void
  public void Init()
  {
    Ships = (

      Enumerable.Empty<Ship>()).ToList<Ship>();
    Planets = (

Enumerable.Empty<Planet>()).ToList<Planet>();

    StarSystem1 = new List<Ship>(Ships);
    List<Ship> q;
    q = (

(Ships).Select(__ContextSymbol12 => new { ___s10 = __ContextSymbol12 })
.Where(__ContextSymbol13 => ((!(__ContextSymbol13.___s10.Arrived)) && (!(__ContextSymbol13.___s10.Destroyed))))
.Select(__ContextSymbol14 => __ContextSymbol14.___s10)
.ToList<Ship>()).ToList<Ship>();
    StarSystem1 = q;

  }
  public List<Planet> Planets;