static void Main()
        {
            //Application.EnableVisualStyles();
            //Application.SetCompatibleTextRenderingDefault(false);
            AirField airfield = new AirField();
            //Application.Run(airfield);
            ITuple  setupTuple = new dotSpace.Objects.Space.Tuple(noOfRunways, noOfTaxiWays, taxiWayCapacity, noOfPlanes, airfield, realisticMode, windDirection);
            Airport airport    = new Airport(setupTuple);

            //airport.printElements();
            //Console.Read();
        }
 //Fire-and-forget method, to update the GUI
 public void updateGraphicalPosition(string credentials, string previousLocation, string nextLocation)
 {
     dotSpace.Objects.Space.Tuple releventDataTuple = new dotSpace.Objects.Space.Tuple(credentials, previousLocation, nextLocation);
     //Tell graphics the input information, so we can draw it
 }