Air.AirConfiguration.AirConfiguration C# (CSharp) Method

AirConfiguration() public method

Initializes a new instance of the AirConfiguration class.
public AirConfiguration ( ) : System
return System
        public AirConfiguration()
        {
            Storage = new LocalAirStorage();
            Serialisation = new SimpleAirSerialisation();
            CommandProcessor = new SimpleAirCommandProcessor(this);
            IdFactory = new SimpleAirIdFactory(2);
        }
AirConfiguration