Example #1
0
 public Coordinate(int galaxy = 1, int system = 1, int position = 1, Celestials type = Celestials.Planet)
 {
     Galaxy   = galaxy;
     System   = system;
     Position = position;
     Type     = type;
 }
 public void AddCelestial(string name, string clasification)
 {
     Celestials.Add(new Celestial(name, clasification, Name));
 }