Ignore:
Timestamp:
02/08/12 16:28:21 (12 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
default
Phase:
public
Message:

Added the checks

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/flight.py

    r9 r11  
    66
    77import threading
     8
     9#---------------------------------------------------------------------------------------
     10
     11class Options(object):
     12    """Various configuration options."""
     13    def __init__(self):
     14        """Construct the object with default values."""
     15        self.fs2Crew = False
     16        self.compensation = None       
    817
    918#---------------------------------------------------------------------------------------
     
    1827        self._stage = None
    1928        self.logger = logger
     29
    2030        self.cruiseAltitude = None
    2131        self.flareTimeFromFS = False
     32        self.entranceExam = False
     33        self.zfw = 50000
     34
     35        self.options = Options()
     36
    2237        self.aircraftType = None
    2338        self.aircraft = None
Note: See TracChangeset for help on using the changeset viewer.