-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path.gitmodules
1515 lines (1515 loc) · 53.9 KB
/
.gitmodules
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[submodule "Aircraft/21"]
path = Aircraft/21
url = https://github.com/FGMEMBERS/21.git
[submodule "Aircraft/14bis"]
path = Aircraft/14bis
url = https://github.com/FGMEMBERS/14bis.git
[submodule "Aircraft/707"]
path = Aircraft/707
url = https://github.com/FGMEMBERS/707.git
[submodule "Aircraft/717"]
path = Aircraft/717
url = https://github.com/FGMEMBERS/717.git
[submodule "Aircraft/727-230"]
path = Aircraft/727-230
url = https://github.com/FGMEMBERS/727-230.git
[submodule "Aircraft/737-100"]
path = Aircraft/737-100
url = https://github.com/FGMEMBERS/737-100.git
[submodule "Aircraft/737-200"]
path = Aircraft/737-200
url = https://github.com/FGMEMBERS/737-200.git
[submodule "Aircraft/737-300"]
path = Aircraft/737-300
url = https://github.com/FGMEMBERS/737-300.git
[submodule "Aircraft/737NG"]
path = Aircraft/737NG
url = https://github.com/FGMEMBERS/737NG.git
[submodule "Aircraft/747"]
path = Aircraft/747
url = https://github.com/FGMEMBERS/747.git
[submodule "Aircraft/747-200"]
path = Aircraft/747-200
url = https://github.com/FGMEMBERS/747-200.git
[submodule "Aircraft/747-400"]
path = Aircraft/747-400
url = https://github.com/FGMEMBERS/747-400.git
[submodule "Aircraft/747-8i"]
path = Aircraft/747-8i
url = https://github.com/FGMEMBERS/747-8i.git
[submodule "Aircraft/757-200"]
path = Aircraft/757-200
url = https://github.com/FGMEMBERS/757-200.git
[submodule "Aircraft/767-300"]
path = Aircraft/767-300
url = https://github.com/FGMEMBERS/767-300.git
[submodule "Aircraft/787"]
path = Aircraft/787
url = https://github.com/FGMEMBERS/787.git
[submodule "Aircraft/A-10"]
path = Aircraft/A-10
url = https://github.com/FGMEMBERS/A-10.git
[submodule "Aircraft/A24-Viking"]
path = Aircraft/A24-Viking
url = https://github.com/FGMEMBERS/A24-Viking.git
[submodule "Aircraft/A-26-Invader"]
path = Aircraft/A-26-Invader
url = https://github.com/FGMEMBERS/A-26-Invader.git
[submodule "Aircraft/A300"]
path = Aircraft/A300
url = https://github.com/FGMEMBERS/A300.git
[submodule "Aircraft/A320-family"]
path = Aircraft/A320-family
url = https://github.com/FGMEMBERS/A320-family.git
[submodule "Aircraft/A340-600"]
path = Aircraft/A340-600
url = https://github.com/FGMEMBERS/A340-600.git
[submodule "Aircraft/A380"]
path = Aircraft/A380
url = https://github.com/FGMEMBERS/A380.git
[submodule "Aircraft/A-6E"]
path = Aircraft/A-6E
url = https://github.com/FGMEMBERS/A-6E.git
[submodule "Aircraft/Aerocar"]
path = Aircraft/Aerocar
url = https://github.com/FGMEMBERS/Aerocar.git
[submodule "Aircraft/Aero-Commander"]
path = Aircraft/Aero-Commander
url = https://github.com/FGMEMBERS/Aero-Commander.git
[submodule "Aircraft/Aerostar-700"]
path = Aircraft/Aerostar-700
url = https://github.com/FGMEMBERS/Aerostar-700.git
[submodule "Aircraft/AG-14"]
path = Aircraft/AG-14
url = https://github.com/FGMEMBERS/AG-14.git
[submodule "Aircraft/Aichi-D3A"]
path = Aircraft/Aichi-D3A
url = https://github.com/FGMEMBERS/Aichi-D3A.git
[submodule "Aircraft/Aichi-M6A"]
path = Aircraft/Aichi-M6A
url = https://github.com/FGMEMBERS/Aichi-M6A.git
[submodule "Aircraft/Airco-DH2"]
path = Aircraft/Airco-DH2
url = https://github.com/FGMEMBERS/Airco-DH2.git
[submodule "Aircraft/AirCrane"]
path = Aircraft/AirCrane
url = https://github.com/FGMEMBERS/AirCrane.git
[submodule "Aircraft/Albatros-BII"]
path = Aircraft/Albatros-BII
url = https://github.com/FGMEMBERS/Albatros-BII.git
[submodule "Aircraft/Albatross"]
path = Aircraft/Albatross
url = https://github.com/FGMEMBERS/Albatross.git
[submodule "Aircraft/Allegro-2000"]
path = Aircraft/Allegro-2000
url = https://github.com/FGMEMBERS/Allegro-2000.git
[submodule "Aircraft/Alouette-II"]
path = Aircraft/Alouette-II
url = https://github.com/FGMEMBERS/Alouette-II.git
[submodule "Aircraft/Alouette-III"]
path = Aircraft/Alouette-III
url = https://github.com/FGMEMBERS/Alouette-III.git
[submodule "Aircraft/Alphajet"]
path = Aircraft/Alphajet
url = https://github.com/FGMEMBERS/Alphajet.git
[submodule "Aircraft/AN-225"]
path = Aircraft/AN-225
url = https://github.com/FGMEMBERS/AN-225.git
[submodule "Aircraft/ANT-20"]
path = Aircraft/ANT-20
url = https://github.com/FGMEMBERS/ANT-20.git
[submodule "Aircraft/Antoinette"]
path = Aircraft/Antoinette
url = https://github.com/FGMEMBERS/Antoinette.git
[submodule "Aircraft/Antonov-An-12"]
path = Aircraft/Antonov-An-12
url = https://github.com/FGMEMBERS/Antonov-An-12.git
[submodule "Aircraft/Antonov-An-22"]
path = Aircraft/Antonov-An-22
url = https://github.com/FGMEMBERS/Antonov-An-22.git
[submodule "Aircraft/AR-234"]
path = Aircraft/AR-234
url = https://github.com/FGMEMBERS/AR-234.git
[submodule "Aircraft/Arsenal-VG33"]
path = Aircraft/Arsenal-VG33
url = https://github.com/FGMEMBERS/Arsenal-VG33.git
[submodule "Aircraft/Arup-S2"]
path = Aircraft/Arup-S2
url = https://github.com/FGMEMBERS/Arup-S2.git
[submodule "Aircraft/ASK21"]
path = Aircraft/ASK21
url = https://github.com/FGMEMBERS/ASK21.git
[submodule "Aircraft/ASK21-MI"]
path = Aircraft/ASK21-MI
url = https://github.com/FGMEMBERS/ASK21-MI.git
[submodule "Aircraft/ATC"]
path = Aircraft/ATC
url = https://github.com/FGMEMBERS/ATC.git
[submodule "Aircraft/ATC-ML"]
path = Aircraft/ATC-ML
url = https://github.com/FGMEMBERS/ATC-ML.git
[submodule "Aircraft/ATI-Resolution"]
path = Aircraft/ATI-Resolution
url = https://github.com/FGMEMBERS/ATI-Resolution.git
[submodule "Aircraft/ATR-72-500"]
path = Aircraft/ATR-72-500
url = https://github.com/FGMEMBERS/ATR-72-500.git
[submodule "Aircraft/Avro-Arrow"]
path = Aircraft/Avro-Arrow
url = https://github.com/FGMEMBERS/Avro-Arrow.git
[submodule "Aircraft/AVRO-IV-Triplane"]
path = Aircraft/AVRO-IV-Triplane
url = https://github.com/FGMEMBERS/AVRO-IV-Triplane.git
[submodule "Aircraft/Avro-Lancaster"]
path = Aircraft/Avro-Lancaster
url = https://github.com/FGMEMBERS/Avro-Lancaster.git
[submodule "Aircraft/a4"]
path = Aircraft/a4
url = https://github.com/FGMEMBERS/a4.git
[submodule "Aircraft/airwaveXtreme150"]
path = Aircraft/airwaveXtreme150
url = https://github.com/FGMEMBERS/airwaveXtreme150.git
[submodule "Aircraft/an2"]
path = Aircraft/an2
url = https://github.com/FGMEMBERS/an2.git
[submodule "Aircraft/apache"]
path = Aircraft/apache
url = https://github.com/FGMEMBERS/apache.git
[submodule "Aircraft/as332"]
path = Aircraft/as332
url = https://github.com/FGMEMBERS/as332.git
[submodule "Aircraft/asw20"]
path = Aircraft/asw20
url = https://github.com/FGMEMBERS/asw20.git
[submodule "Aircraft/B-17"]
path = Aircraft/B-17
url = https://github.com/FGMEMBERS/B-17.git
[submodule "Aircraft/B-1B"]
path = Aircraft/B-1B
url = https://github.com/FGMEMBERS/B-1B.git
[submodule "Aircraft/B-2"]
path = Aircraft/B-2
url = https://github.com/FGMEMBERS/B-2.git
[submodule "Aircraft/B-24-Liberator"]
path = Aircraft/B-24-Liberator
url = https://github.com/FGMEMBERS/B-24-Liberator.git
[submodule "Aircraft/B-25"]
path = Aircraft/B-25
url = https://github.com/FGMEMBERS/B-25.git
[submodule "Aircraft/B-36D-Peacemaker"]
path = Aircraft/B-36D-Peacemaker
url = https://github.com/FGMEMBERS/B-36D-Peacemaker.git
[submodule "Aircraft/B-52F"]
path = Aircraft/B-52F
url = https://github.com/FGMEMBERS/B-52F.git
[submodule "Aircraft/BAC-TSR2"]
path = Aircraft/BAC-TSR2
url = https://github.com/FGMEMBERS/BAC-TSR2.git
[submodule "Aircraft/BAe-125"]
path = Aircraft/BAe-125
url = https://github.com/FGMEMBERS/BAe-125.git
[submodule "Aircraft/Beechcraft-Staggerwing"]
path = Aircraft/Beechcraft-Staggerwing
url = https://github.com/FGMEMBERS/Beechcraft-Staggerwing.git
[submodule "Aircraft/Bell-222X"]
path = Aircraft/Bell-222X
url = https://github.com/FGMEMBERS/Bell-222X.git
[submodule "Aircraft/Bell-P-39"]
path = Aircraft/Bell-P-39
url = https://github.com/FGMEMBERS/Bell-P-39.git
[submodule "Aircraft/Bell-P-59"]
path = Aircraft/Bell-P-59
url = https://github.com/FGMEMBERS/Bell-P-59.git
[submodule "Aircraft/Bell-X1"]
path = Aircraft/Bell-X1
url = https://github.com/FGMEMBERS/Bell-X1.git
[submodule "Aircraft/Bernard-HV220"]
path = Aircraft/Bernard-HV220
url = https://github.com/FGMEMBERS/Bernard-HV220.git
[submodule "Aircraft/Bleriot-125"]
path = Aircraft/Bleriot-125
url = https://github.com/FGMEMBERS/Bleriot-125.git
[submodule "Aircraft/Bleriot-SPAD-S.510"]
path = Aircraft/Bleriot-SPAD-S.510
url = https://github.com/FGMEMBERS/Bleriot-SPAD-S.510.git
[submodule "Aircraft/Boeing-247"]
path = Aircraft/Boeing-247
url = https://github.com/FGMEMBERS/Boeing-247.git
[submodule "Aircraft/Boeing314"]
path = Aircraft/Boeing314
url = https://github.com/FGMEMBERS/Boeing314.git
[submodule "Aircraft/Bombardier-415"]
path = Aircraft/Bombardier-415
url = https://github.com/FGMEMBERS/Bombardier-415.git
[submodule "Aircraft/Br-761"]
path = Aircraft/Br-761
url = https://github.com/FGMEMBERS/Br-761.git
[submodule "Aircraft/Brabazon"]
path = Aircraft/Brabazon
url = https://github.com/FGMEMBERS/Brabazon.git
[submodule "Aircraft/Breda-B.Z.308"]
path = Aircraft/Breda-B.Z.308
url = https://github.com/FGMEMBERS/Breda-B.Z.308.git
[submodule "Aircraft/Breguet-XIX"]
path = Aircraft/Breguet-XIX
url = https://github.com/FGMEMBERS/Breguet-XIX.git
[submodule "Aircraft/Buccaneer"]
path = Aircraft/Buccaneer
url = https://github.com/FGMEMBERS/Buccaneer.git
[submodule "Aircraft/Bugatti"]
path = Aircraft/Bugatti
url = https://github.com/FGMEMBERS/Bugatti.git
[submodule "Aircraft/Burnelli-CBY-3"]
path = Aircraft/Burnelli-CBY-3
url = https://github.com/FGMEMBERS/Burnelli-CBY-3.git
[submodule "Aircraft/BV-141"]
path = Aircraft/BV-141
url = https://github.com/FGMEMBERS/BV-141.git
[submodule "Aircraft/BV-170"]
path = Aircraft/BV-170
url = https://github.com/FGMEMBERS/BV-170.git
[submodule "Aircraft/b26"]
path = Aircraft/b26
url = https://github.com/FGMEMBERS/b26.git
[submodule "Aircraft/b29"]
path = Aircraft/b29
url = https://github.com/FGMEMBERS/b29.git
[submodule "Aircraft/beaufighter"]
path = Aircraft/beaufighter
url = https://github.com/FGMEMBERS/beaufighter.git
[submodule "Aircraft/beech99"]
path = Aircraft/beech99
url = https://github.com/FGMEMBERS/beech99.git
[submodule "Aircraft/bf109"]
path = Aircraft/bf109
url = https://github.com/FGMEMBERS/bf109.git
[submodule "Aircraft/bleriot-XI"]
path = Aircraft/bleriot-XI
url = https://github.com/FGMEMBERS/bleriot-XI.git
[submodule "Aircraft/bluebird"]
path = Aircraft/bluebird
url = https://github.com/FGMEMBERS/bluebird.git
[submodule "Aircraft/bocian"]
path = Aircraft/bocian
url = https://github.com/FGMEMBERS/bocian.git
[submodule "Aircraft/EF-Typhoon"]
path = Aircraft/EF-Typhoon
url = https://github.com/FGMEMBERS/EF-Typhoon.git
[submodule "Aircraft/C130"]
path = Aircraft/C130
url = https://github.com/FGMEMBERS/C130.git
[submodule "Aircraft/c150"]
path = Aircraft/c150
url = https://github.com/FGMEMBERS/c150.git
[submodule "Aircraft/C-160-Transall"]
path = Aircraft/C-160-Transall
url = https://github.com/FGMEMBERS/C-160-Transall.git
[submodule "Aircraft/c172"]
path = Aircraft/c172
url = https://github.com/FGMEMBERS/c172.git
[submodule "Aircraft/c172r"]
path = Aircraft/c172r
url = https://github.com/FGMEMBERS/c172r.git
[submodule "Aircraft/c182"]
path = Aircraft/c182
url = https://github.com/FGMEMBERS/c182.git
[submodule "Aircraft/c182rg"]
path = Aircraft/c182rg
url = https://github.com/FGMEMBERS/c182rg.git
[submodule "Aircraft/C-2A"]
path = Aircraft/C-2A
url = https://github.com/FGMEMBERS/C-2A.git
[submodule "Aircraft/c310"]
path = Aircraft/c310
url = https://github.com/FGMEMBERS/c310.git
[submodule "Aircraft/c310u3a"]
path = Aircraft/c310u3a
url = https://github.com/FGMEMBERS/c310u3a.git
[submodule "Aircraft/C460"]
path = Aircraft/C460
url = https://github.com/FGMEMBERS/C460.git
[submodule "Aircraft/C561"]
path = Aircraft/C561
url = https://github.com/FGMEMBERS/C561.git
[submodule "Aircraft/C684"]
path = Aircraft/C684
url = https://github.com/FGMEMBERS/C684.git
[submodule "Aircraft/Campini-Caproni-N1"]
path = Aircraft/Campini-Caproni-N1
url = https://github.com/FGMEMBERS/Campini-Caproni-N1.git
[submodule "Aircraft/CanberraBI8"]
path = Aircraft/CanberraBI8
url = https://github.com/FGMEMBERS/CanberraBI8.git
[submodule "Aircraft/Cap10B"]
path = Aircraft/Cap10B
url = https://github.com/FGMEMBERS/Cap10B.git
[submodule "Aircraft/Cap10C"]
path = Aircraft/Cap10C
url = https://github.com/FGMEMBERS/Cap10C.git
[submodule "Aircraft/Caproni-C22J"]
path = Aircraft/Caproni-C22J
url = https://github.com/FGMEMBERS/Caproni-C22J.git
[submodule "Aircraft/Caravelle"]
path = Aircraft/Caravelle
url = https://github.com/FGMEMBERS/Caravelle.git
[submodule "Aircraft/Carreidas"]
path = Aircraft/Carreidas
url = https://github.com/FGMEMBERS/Carreidas.git
[submodule "Aircraft/Caudron-G3"]
path = Aircraft/Caudron-G3
url = https://github.com/FGMEMBERS/Caudron-G3.git
[submodule "Aircraft/Caudron-G4"]
path = Aircraft/Caudron-G4
url = https://github.com/FGMEMBERS/Caudron-G4.git
[submodule "Aircraft/Cessna-208-Caravan"]
path = Aircraft/Cessna-208-Caravan
url = https://github.com/FGMEMBERS/Cessna-208-Caravan.git
[submodule "Aircraft/Cessna337"]
path = Aircraft/Cessna337
url = https://github.com/FGMEMBERS/Cessna337.git
[submodule "Aircraft/Cessna-421-Golden-Eagle"]
path = Aircraft/Cessna-421-Golden-Eagle
url = https://github.com/FGMEMBERS/Cessna-421-Golden-Eagle.git
[submodule "Aircraft/ch47"]
path = Aircraft/ch47
url = https://github.com/FGMEMBERS/ch47.git
[submodule "Aircraft/ch53e"]
path = Aircraft/ch53e
url = https://github.com/FGMEMBERS/ch53e.git
[submodule "Aircraft/Cirrus-SR22"]
path = Aircraft/Cirrus-SR22
url = https://github.com/FGMEMBERS/Cirrus-SR22.git
[submodule "Aircraft/Citation"]
path = Aircraft/Citation
url = https://github.com/FGMEMBERS/Citation.git
[submodule "Aircraft/Citation-Bravo"]
path = Aircraft/Citation-Bravo
url = https://github.com/FGMEMBERS/Citation-Bravo.git
[submodule "Aircraft/Coanda-1910"]
path = Aircraft/Coanda-1910
url = https://github.com/FGMEMBERS/Coanda-1910.git
[submodule "Aircraft/colditz"]
path = Aircraft/colditz
url = https://github.com/FGMEMBERS/colditz.git
[submodule "Aircraft/Commonwealth-Ca-12"]
path = Aircraft/Commonwealth-Ca-12
url = https://github.com/FGMEMBERS/Commonwealth-Ca-12.git
[submodule "Aircraft/ComperSwift"]
path = Aircraft/ComperSwift
url = https://github.com/FGMEMBERS/ComperSwift.git
[submodule "Aircraft/Concorde"]
path = Aircraft/Concorde
url = https://github.com/FGMEMBERS/Concorde.git
[submodule "Aircraft/Convair-XFY-1-Pogo"]
path = Aircraft/Convair-XFY-1-Pogo
url = https://github.com/FGMEMBERS/Convair-XFY-1-Pogo.git
[submodule "Aircraft/couzinet70"]
path = Aircraft/couzinet70
url = https://github.com/FGMEMBERS/couzinet70.git
[submodule "Aircraft/cri-cri"]
path = Aircraft/cri-cri
url = https://github.com/FGMEMBERS/cri-cri.git
[submodule "Aircraft/CRJ-200"]
path = Aircraft/CRJ-200
url = https://github.com/FGMEMBERS/CRJ-200.git
[submodule "Aircraft/Curtiss-Jenny"]
path = Aircraft/Curtiss-Jenny
url = https://github.com/FGMEMBERS/Curtiss-Jenny.git
[submodule "Aircraft/Curtiss-Model-F"]
path = Aircraft/Curtiss-Model-F
url = https://github.com/FGMEMBERS/Curtiss-Model-F.git
[submodule "Aircraft/Curtiss-P40"]
path = Aircraft/Curtiss-P40
url = https://github.com/FGMEMBERS/Curtiss-P40.git
[submodule "Aircraft/D510"]
path = Aircraft/D510
url = https://github.com/FGMEMBERS/D510.git
[submodule "Aircraft/D520"]
path = Aircraft/D520
url = https://github.com/FGMEMBERS/D520.git
[submodule "Aircraft/Dassault-Mystere-IV"]
path = Aircraft/Dassault-Mystere-IV
url = https://github.com/FGMEMBERS/Dassault-Mystere-IV.git
[submodule "Aircraft/Dauphin"]
path = Aircraft/Dauphin
url = https://github.com/FGMEMBERS/Dauphin.git
[submodule "Aircraft/DC-10-30"]
path = Aircraft/DC-10-30
url = https://github.com/FGMEMBERS/DC-10-30.git
[submodule "Aircraft/dc2"]
path = Aircraft/dc2
url = https://github.com/FGMEMBERS/dc2.git
[submodule "Aircraft/dc3"]
path = Aircraft/dc3
url = https://github.com/FGMEMBERS/dc3.git
[submodule "Aircraft/dc6"]
path = Aircraft/dc6
url = https://github.com/FGMEMBERS/dc6.git
[submodule "Aircraft/dc8-63"]
path = Aircraft/dc8-63
url = https://github.com/FGMEMBERS/dc8-63.git
[submodule "Aircraft/dc8-73"]
path = Aircraft/dc8-73
url = https://github.com/FGMEMBERS/dc8-73.git
[submodule "Aircraft/Deperdussin"]
path = Aircraft/Deperdussin
url = https://github.com/FGMEMBERS/Deperdussin.git
[submodule "Aircraft/DerKleineUhu"]
path = Aircraft/DerKleineUhu
url = https://github.com/FGMEMBERS/DerKleineUhu.git
[submodule "Aircraft/Deuche"]
path = Aircraft/Deuche
url = https://github.com/FGMEMBERS/Deuche.git
[submodule "Aircraft/DG-101G"]
path = Aircraft/DG-101G
url = https://github.com/FGMEMBERS/DG-101G.git
[submodule "Aircraft/DH-106"]
path = Aircraft/DH-106
url = https://github.com/FGMEMBERS/DH-106.git
[submodule "Aircraft/DH-88"]
path = Aircraft/DH-88
url = https://github.com/FGMEMBERS/DH-88.git
[submodule "Aircraft/DH-89"]
path = Aircraft/DH-89
url = https://github.com/FGMEMBERS/DH-89.git
[submodule "Aircraft/DH-91"]
path = Aircraft/DH-91
url = https://github.com/FGMEMBERS/DH-91.git
[submodule "Aircraft/dhc1"]
path = Aircraft/dhc1
url = https://github.com/FGMEMBERS/dhc1.git
[submodule "Aircraft/dhc3"]
path = Aircraft/dhc3
url = https://github.com/FGMEMBERS/dhc3.git
[submodule "Aircraft/dhc4"]
path = Aircraft/dhc4
url = https://github.com/FGMEMBERS/dhc4.git
[submodule "Aircraft/dhc6"]
path = Aircraft/dhc6
url = https://github.com/FGMEMBERS/dhc6.git
[submodule "Aircraft/dhc8"]
path = Aircraft/dhc8
url = https://github.com/FGMEMBERS/dhc8.git
[submodule "Aircraft/Diamond-Da40"]
path = Aircraft/Diamond-Da40
url = https://github.com/FGMEMBERS/Diamond-Da40.git
[submodule "Aircraft/Diamond-Da42"]
path = Aircraft/Diamond-Da42
url = https://github.com/FGMEMBERS/Diamond-Da42.git
[submodule "Aircraft/DO-228"]
path = Aircraft/DO-228
url = https://github.com/FGMEMBERS/DO-228.git
[submodule "Aircraft/DO-26"]
path = Aircraft/DO-26
url = https://github.com/FGMEMBERS/DO-26.git
[submodule "Aircraft/DO-335"]
path = Aircraft/DO-335
url = https://github.com/FGMEMBERS/DO-335.git
[submodule "Aircraft/Douglas-Dc3"]
path = Aircraft/Douglas-Dc3
url = https://github.com/FGMEMBERS/Douglas-Dc3.git
[submodule "Aircraft/Douglas-Dolphin"]
path = Aircraft/Douglas-Dolphin
url = https://github.com/FGMEMBERS/Douglas-Dolphin.git
[submodule "Aircraft/DO-X"]
path = Aircraft/DO-X
url = https://github.com/FGMEMBERS/DO-X.git
[submodule "Aircraft/DR400"]
path = Aircraft/DR400
url = https://github.com/FGMEMBERS/DR400.git
[submodule "Aircraft/DR400-dauphin"]
path = Aircraft/DR400-dauphin
url = https://github.com/FGMEMBERS/DR400-dauphin.git
[submodule "Aircraft/Dromader"]
path = Aircraft/Dromader
url = https://github.com/FGMEMBERS/Dromader.git
[submodule "Aircraft/Dunne-D.5"]
path = Aircraft/Dunne-D.5
url = https://github.com/FGMEMBERS/Dunne-D.5.git
[submodule "Aircraft/E-2C"]
path = Aircraft/E-2C
url = https://github.com/FGMEMBERS/E-2C.git
[submodule "Aircraft/E3B"]
path = Aircraft/E3B
url = https://github.com/FGMEMBERS/E3B.git
[submodule "Aircraft/eastbourne_mono"]
path = Aircraft/eastbourne_mono
url = https://github.com/FGMEMBERS/eastbourne_mono.git
[submodule "Aircraft/ec130"]
path = Aircraft/ec130
url = https://github.com/FGMEMBERS/ec130.git
[submodule "Aircraft/ec135"]
path = Aircraft/ec135
url = https://github.com/FGMEMBERS/ec135.git
[submodule "Aircraft/Embraer-ERJ-145"]
path = Aircraft/Embraer-ERJ-145
url = https://github.com/FGMEMBERS/Embraer-ERJ-145.git
[submodule "Aircraft/ercoupe"]
path = Aircraft/ercoupe
url = https://github.com/FGMEMBERS/ercoupe.git
[submodule "Aircraft/Etrich-Taube"]
path = Aircraft/Etrich-Taube
url = https://github.com/FGMEMBERS/Etrich-Taube.git
[submodule "Aircraft/eurofighter"]
path = Aircraft/eurofighter
url = https://github.com/FGMEMBERS/eurofighter.git
[submodule "Aircraft/extra500"]
path = Aircraft/extra500
url = https://github.com/FGMEMBERS/extra500.git
[submodule "Aircraft/F-106-dart"]
path = Aircraft/F-106-dart
url = https://github.com/FGMEMBERS/F-106-dart.git
[submodule "Aircraft/F-117"]
path = Aircraft/F-117
url = https://github.com/FGMEMBERS/F-117.git
[submodule "Aircraft/f15c"]
path = Aircraft/f15c
url = https://github.com/FGMEMBERS/f15c.git
[submodule "Aircraft/f16"]
path = Aircraft/f16
url = https://github.com/FGMEMBERS/f16.git
[submodule "Aircraft/f18"]
path = Aircraft/f18
url = https://github.com/FGMEMBERS/f18.git
[submodule "Aircraft/F-35B"]
path = Aircraft/F-35B
url = https://github.com/FGMEMBERS/F-35B.git
[submodule "Aircraft/F4U"]
path = Aircraft/F4U
url = https://github.com/FGMEMBERS/F4U.git
[submodule "Aircraft/F6F-Hellcat"]
path = Aircraft/F6F-Hellcat
url = https://github.com/FGMEMBERS/F6F-Hellcat.git
[submodule "Aircraft/F7F-Tigercat"]
path = Aircraft/F7F-Tigercat
url = https://github.com/FGMEMBERS/F7F-Tigercat.git
[submodule "Aircraft/F80C"]
path = Aircraft/F80C
url = https://github.com/FGMEMBERS/F80C.git
[submodule "Aircraft/F-86"]
path = Aircraft/F-86
url = https://github.com/FGMEMBERS/F-86.git
[submodule "Aircraft/F-8E-Crusader"]
path = Aircraft/F-8E-Crusader
url = https://github.com/FGMEMBERS/F-8E-Crusader.git
[submodule "Aircraft/F9F-Panther"]
path = Aircraft/F9F-Panther
url = https://github.com/FGMEMBERS/F9F-Panther.git
[submodule "Aircraft/fa223"]
path = Aircraft/fa223
url = https://github.com/FGMEMBERS/fa223.git
[submodule "Aircraft/Fairchild-C119"]
path = Aircraft/Fairchild-C119
url = https://github.com/FGMEMBERS/Fairchild-C119.git
[submodule "Aircraft/Fairchild-Metroliner"]
path = Aircraft/Fairchild-Metroliner
url = https://github.com/FGMEMBERS/Fairchild-Metroliner.git
[submodule "Aircraft/Fairey-Gannet"]
path = Aircraft/Fairey-Gannet
url = https://github.com/FGMEMBERS/Fairey-Gannet.git
[submodule "Aircraft/Falcon-50"]
path = Aircraft/Falcon-50
url = https://github.com/FGMEMBERS/Falcon-50.git
[submodule "Aircraft/Farman-III"]
path = Aircraft/Farman-III
url = https://github.com/FGMEMBERS/Farman-III.git
[submodule "Aircraft/Farman-IV"]
path = Aircraft/Farman-IV
url = https://github.com/FGMEMBERS/Farman-IV.git
[submodule "Aircraft/FK9MK2"]
path = Aircraft/FK9MK2
url = https://github.com/FGMEMBERS/FK9MK2.git
[submodule "Aircraft/fkdr1"]
path = Aircraft/fkdr1
url = https://github.com/FGMEMBERS/fkdr1.git
[submodule "Aircraft/flash2a"]
path = Aircraft/flash2a
url = https://github.com/FGMEMBERS/flash2a.git
[submodule "Aircraft/Focke-Wulf-F19-ente"]
path = Aircraft/Focke-Wulf-F19-ente
url = https://github.com/FGMEMBERS/Focke-Wulf-F19-ente.git
[submodule "Aircraft/Focke-Wulf-Ta.154"]
path = Aircraft/Focke-Wulf-Ta.154
url = https://github.com/FGMEMBERS/Focke-Wulf-Ta.154.git
[submodule "Aircraft/fokker100"]
path = Aircraft/fokker100
url = https://github.com/FGMEMBERS/fokker100.git
[submodule "Aircraft/fokker50"]
path = Aircraft/fokker50
url = https://github.com/FGMEMBERS/fokker50.git
[submodule "Aircraft/Fokker-Eindecker-EIII"]
path = Aircraft/Fokker-Eindecker-EIII
url = https://github.com/FGMEMBERS/Fokker-Eindecker-EIII.git
[submodule "Aircraft/Fokker-S-11"]
path = Aircraft/Fokker-S-11
url = https://github.com/FGMEMBERS/Fokker-S-11.git
[submodule "Aircraft/Fokker-Spin"]
path = Aircraft/Fokker-Spin
url = https://github.com/FGMEMBERS/Fokker-Spin.git
[submodule "Aircraft/followme"]
path = Aircraft/followme
url = https://github.com/FGMEMBERS/followme.git
[submodule "Aircraft/Ford-Trimotor"]
path = Aircraft/Ford-Trimotor
url = https://github.com/FGMEMBERS/Ford-Trimotor.git
[submodule "Aircraft/Fouga-Magister"]
path = Aircraft/Fouga-Magister
url = https://github.com/FGMEMBERS/Fouga-Magister.git
[submodule "Aircraft/fw190"]
path = Aircraft/fw190
url = https://github.com/FGMEMBERS/fw190.git
[submodule "Aircraft/Fw200"]
path = Aircraft/Fw200
url = https://github.com/FGMEMBERS/Fw200.git
[submodule "Aircraft/Fw61"]
path = Aircraft/Fw61
url = https://github.com/FGMEMBERS/Fw61.git
[submodule "Aircraft/G-164"]
path = Aircraft/G-164
url = https://github.com/FGMEMBERS/G-164.git
[submodule "Aircraft/Gee-Bee"]
path = Aircraft/Gee-Bee
url = https://github.com/FGMEMBERS/Gee-Bee.git
[submodule "Aircraft/Gloster-Meteor"]
path = Aircraft/Gloster-Meteor
url = https://github.com/FGMEMBERS/Gloster-Meteor.git
[submodule "Aircraft/Gloster-Whittle"]
path = Aircraft/Gloster-Whittle
url = https://github.com/FGMEMBERS/Gloster-Whittle.git
[submodule "Aircraft/Gotha-G-V"]
path = Aircraft/Gotha-G-V
url = https://github.com/FGMEMBERS/Gotha-G-V.git
[submodule "Aircraft/Grob-Astir"]
path = Aircraft/Grob-Astir
url = https://github.com/FGMEMBERS/Grob-Astir.git
[submodule "Aircraft/Grob-G109"]
path = Aircraft/Grob-G109
url = https://github.com/FGMEMBERS/Grob-G109.git
[submodule "Aircraft/Grob-G115"]
path = Aircraft/Grob-G115
url = https://github.com/FGMEMBERS/Grob-G115.git
[submodule "Aircraft/Grob-Gf200"]
path = Aircraft/Grob-Gf200
url = https://github.com/FGMEMBERS/Grob-Gf200.git
[submodule "Aircraft/Grumman-American-AA1"]
path = Aircraft/Grumman-American-AA1
url = https://github.com/FGMEMBERS/Grumman-American-AA1.git
[submodule "Aircraft/H1-Racer"]
path = Aircraft/H1-Racer
url = https://github.com/FGMEMBERS/H1-Racer.git
[submodule "Aircraft/H-21C-Shawnee"]
path = Aircraft/H-21C-Shawnee
url = https://github.com/FGMEMBERS/H-21C-Shawnee.git
[submodule "Aircraft/H4-Hercules"]
path = Aircraft/H4-Hercules
url = https://github.com/FGMEMBERS/H4-Hercules.git
[submodule "Aircraft/Handley-Page-Halifax"]
path = Aircraft/Handley-Page-Halifax
url = https://github.com/FGMEMBERS/Handley-Page-Halifax.git
[submodule "Aircraft/Hansajet"]
path = Aircraft/Hansajet
url = https://github.com/FGMEMBERS/Hansajet.git
[submodule "Aircraft/harrier"]
path = Aircraft/harrier
url = https://github.com/FGMEMBERS/harrier.git
[submodule "Aircraft/Harrier-GR1"]
path = Aircraft/Harrier-GR1
url = https://github.com/FGMEMBERS/Harrier-GR1.git
[submodule "Aircraft/Hawker-Siddeley-Nimrod"]
path = Aircraft/Hawker-Siddeley-Nimrod
url = https://github.com/FGMEMBERS/Hawker-Siddeley-Nimrod.git
[submodule "Aircraft/He-111"]
path = Aircraft/He-111
url = https://github.com/FGMEMBERS/He-111.git
[submodule "Aircraft/He162"]
path = Aircraft/He162
url = https://github.com/FGMEMBERS/He162.git
[submodule "Aircraft/Heinkel-He-111"]
path = Aircraft/Heinkel-He-111
url = https://github.com/FGMEMBERS/Heinkel-He-111.git
[submodule "Aircraft/Heinkel-He-177"]
path = Aircraft/Heinkel-He-177
url = https://github.com/FGMEMBERS/Heinkel-He-177.git
[submodule "Aircraft/Heinkel-He-178"]
path = Aircraft/Heinkel-He-178
url = https://github.com/FGMEMBERS/Heinkel-He-178.git
[submodule "Aircraft/Heinkel-He-280"]
path = Aircraft/Heinkel-He-280
url = https://github.com/FGMEMBERS/Heinkel-He-280.git
[submodule "Aircraft/HM-14"]
path = Aircraft/HM-14
url = https://github.com/FGMEMBERS/HM-14.git
[submodule "Aircraft/Hornet"]
path = Aircraft/Hornet
url = https://github.com/FGMEMBERS/Hornet.git
[submodule "Aircraft/Horsa"]
path = Aircraft/Horsa
url = https://github.com/FGMEMBERS/Horsa.git
[submodule "Aircraft/Horten-Ho-IX"]
path = Aircraft/Horten-Ho-IX
url = https://github.com/FGMEMBERS/Horten-Ho-IX.git
[submodule "Aircraft/HS-P-75"]
path = Aircraft/HS-P-75
url = https://github.com/FGMEMBERS/HS-P-75.git
[submodule "Aircraft/Hughes-XF11"]
path = Aircraft/Hughes-XF11
url = https://github.com/FGMEMBERS/Hughes-XF11.git
[submodule "Aircraft/Hunter"]
path = Aircraft/Hunter
url = https://github.com/FGMEMBERS/Hunter.git
[submodule "Aircraft/HUP-Retriever"]
path = Aircraft/HUP-Retriever
url = https://github.com/FGMEMBERS/HUP-Retriever.git
[submodule "Aircraft/Hurricane"]
path = Aircraft/Hurricane
url = https://github.com/FGMEMBERS/Hurricane.git
[submodule "Aircraft/IL-2"]
path = Aircraft/IL-2
url = https://github.com/FGMEMBERS/IL-2.git
[submodule "Aircraft/j22"]
path = Aircraft/j22
url = https://github.com/FGMEMBERS/j22.git
[submodule "Aircraft/j7w"]
path = Aircraft/j7w
url = https://github.com/FGMEMBERS/j7w.git
[submodule "Aircraft/JA37"]
path = Aircraft/JA37
url = https://github.com/FGMEMBERS/JA37.git
[submodule "Aircraft/Jaguar"]
path = Aircraft/Jaguar
url = https://github.com/FGMEMBERS/Jaguar.git
[submodule "Aircraft/JAS39-Gripen"]
path = Aircraft/JAS39-Gripen
url = https://github.com/FGMEMBERS/JAS39-Gripen.git
[submodule "Aircraft/jeep"]
path = Aircraft/jeep
url = https://github.com/FGMEMBERS/jeep.git
[submodule "Aircraft/jetman"]
path = Aircraft/jetman
url = https://github.com/FGMEMBERS/jetman.git
[submodule "Aircraft/Jodel-D140"]
path = Aircraft/Jodel-D140
url = https://github.com/FGMEMBERS/Jodel-D140.git
[submodule "Aircraft/JT-5B"]
path = Aircraft/JT-5B
url = https://github.com/FGMEMBERS/JT-5B.git
[submodule "Aircraft/ju52"]
path = Aircraft/ju52
url = https://github.com/FGMEMBERS/ju52.git
[submodule "Aircraft/ExpansionPack"]
path = Aircraft/ExpansionPack
url = https://github.com/FGMEMBERS/ExpansionPack.git
[submodule "Aircraft/Ju-87"]
path = Aircraft/Ju-87
url = https://github.com/FGMEMBERS/Ju-87.git
[submodule "Aircraft/Ju-88"]
path = Aircraft/Ju-88
url = https://github.com/FGMEMBERS/Ju-88.git
[submodule "Aircraft/Junkers-F13"]
path = Aircraft/Junkers-F13
url = https://github.com/FGMEMBERS/Junkers-F13.git
[submodule "Aircraft/Junkers-G.38ce"]
path = Aircraft/Junkers-G.38ce
url = https://github.com/FGMEMBERS/Junkers-G.38ce.git
[submodule "Aircraft/Junkers-Ju-390"]
path = Aircraft/Junkers-Ju-390
url = https://github.com/FGMEMBERS/Junkers-Ju-390.git
[submodule "Aircraft/Junkers-W34"]
path = Aircraft/Junkers-W34
url = https://github.com/FGMEMBERS/Junkers-W34.git
[submodule "Aircraft/K5Y1"]
path = Aircraft/K5Y1
url = https://github.com/FGMEMBERS/K5Y1.git
[submodule "Aircraft/K-7"]
path = Aircraft/K-7
url = https://github.com/FGMEMBERS/K-7.git
[submodule "Aircraft/Ka-50"]
path = Aircraft/Ka-50
url = https://github.com/FGMEMBERS/Ka-50.git
[submodule "Aircraft/Katana"]
path = Aircraft/Katana
url = https://github.com/FGMEMBERS/Katana.git
[submodule "Aircraft/Kawasaki-Ki-61-Hien"]
path = Aircraft/Kawasaki-Ki-61-Hien
url = https://github.com/FGMEMBERS/Kawasaki-Ki-61-Hien.git
[submodule "Aircraft/KC135"]
path = Aircraft/KC135
url = https://github.com/FGMEMBERS/KC135.git
[submodule "Aircraft/Ki-84"]
path = Aircraft/Ki-84
url = https://github.com/FGMEMBERS/Ki-84.git
[submodule "Aircraft/KM"]
path = Aircraft/KM
url = https://github.com/FGMEMBERS/KM.git
[submodule "Aircraft/kodiak"]
path = Aircraft/kodiak
url = https://github.com/FGMEMBERS/kodiak.git
[submodule "Aircraft/MD-10"]
path = Aircraft/MD-10
url = https://github.com/FGMEMBERS/MD-10.git
[submodule "Aircraft/L-1011-500"]
path = Aircraft/L-1011-500
url = https://github.com/FGMEMBERS/L-1011-500.git
[submodule "Aircraft/l39"]
path = Aircraft/l39
url = https://github.com/FGMEMBERS/l39.git
[submodule "Aircraft/La-5"]
path = Aircraft/La-5
url = https://github.com/FGMEMBERS/La-5.git
[submodule "Aircraft/Lancair-235"]
path = Aircraft/Lancair-235
url = https://github.com/FGMEMBERS/Lancair-235.git
[submodule "Aircraft/LATE-29"]
path = Aircraft/LATE-29
url = https://github.com/FGMEMBERS/LATE-29.git
[submodule "Aircraft/Late-631"]
path = Aircraft/Late-631
url = https://github.com/FGMEMBERS/Late-631.git
[submodule "Aircraft/Leduc-022"]
path = Aircraft/Leduc-022
url = https://github.com/FGMEMBERS/Leduc-022.git
[submodule "Aircraft/Lightning"]
path = Aircraft/Lightning
url = https://github.com/FGMEMBERS/Lightning.git
[submodule "Aircraft/Lionceau"]
path = Aircraft/Lionceau
url = https://github.com/FGMEMBERS/Lionceau.git
[submodule "Aircraft/Lockheed1049"]
path = Aircraft/Lockheed1049
url = https://github.com/FGMEMBERS/Lockheed1049.git
[submodule "Aircraft/Lockheed1049h"]
path = Aircraft/Lockheed1049h
url = https://github.com/FGMEMBERS/Lockheed1049h.git
[submodule "Aircraft/Lockheed-Martin-FA-22A-Raptor"]
path = Aircraft/Lockheed-Martin-FA-22A-Raptor
url = https://github.com/FGMEMBERS/Lockheed-Martin-FA-22A-Raptor.git
[submodule "Aircraft/Lockheed-NF104"]
path = Aircraft/Lockheed-NF104
url = https://github.com/FGMEMBERS/Lockheed-NF104.git
[submodule "Aircraft/Lockheed-NF104A"]
path = Aircraft/Lockheed-NF104A
url = https://github.com/FGMEMBERS/Lockheed-NF104A.git
[submodule "Aircraft/Lockheed-P38"]
path = Aircraft/Lockheed-P38
url = https://github.com/FGMEMBERS/Lockheed-P38.git
[submodule "Aircraft/Lockheed-SR71"]
path = Aircraft/Lockheed-SR71
url = https://github.com/FGMEMBERS/Lockheed-SR71.git
[submodule "Aircraft/Lockheed-U-2S"]
path = Aircraft/Lockheed-U-2S
url = https://github.com/FGMEMBERS/Lockheed-U-2S.git
[submodule "Aircraft/Lockheed-Vega"]
path = Aircraft/Lockheed-Vega
url = https://github.com/FGMEMBERS/Lockheed-Vega.git
[submodule "Aircraft/Long-EZ"]
path = Aircraft/Long-EZ
url = https://github.com/FGMEMBERS/Long-EZ.git
[submodule "Aircraft/Lynx-WG13"]
path = Aircraft/Lynx-WG13
url = https://github.com/FGMEMBERS/Lynx-WG13.git
[submodule "Aircraft/Macchi-Castoldi-MC72"]
path = Aircraft/Macchi-Castoldi-MC72
url = https://github.com/FGMEMBERS/Macchi-Castoldi-MC72.git
[submodule "Aircraft/Macchi-M33"]
path = Aircraft/Macchi-M33
url = https://github.com/FGMEMBERS/Macchi-M33.git
[submodule "Aircraft/marchetti"]
path = Aircraft/marchetti
url = https://github.com/FGMEMBERS/marchetti.git
[submodule "Aircraft/Martin-Baker-MB5"]
path = Aircraft/Martin-Baker-MB5
url = https://github.com/FGMEMBERS/Martin-Baker-MB5.git
[submodule "Aircraft/MB326"]
path = Aircraft/MB326
url = https://github.com/FGMEMBERS/MB326.git
[submodule "Aircraft/MD11"]
path = Aircraft/MD11
url = https://github.com/FGMEMBERS/MD11.git
[submodule "Aircraft/me163"]
path = Aircraft/me163
url = https://github.com/FGMEMBERS/me163.git
[submodule "Aircraft/ME-209-V1"]
path = Aircraft/ME-209-V1
url = https://github.com/FGMEMBERS/ME-209-V1.git
[submodule "Aircraft/ME-262"]
path = Aircraft/ME-262
url = https://github.com/FGMEMBERS/ME-262.git
[submodule "Aircraft/ME-262HGIII"]
path = Aircraft/ME-262HGIII
url = https://github.com/FGMEMBERS/ME-262HGIII.git
[submodule "Aircraft/me323"]
path = Aircraft/me323
url = https://github.com/FGMEMBERS/me323.git
[submodule "Aircraft/Messerschmitt-BF110"]
path = Aircraft/Messerschmitt-BF110
url = https://github.com/FGMEMBERS/Messerschmitt-BF110.git
[submodule "Aircraft/Messerschmitt-Libelle"]
path = Aircraft/Messerschmitt-Libelle
url = https://github.com/FGMEMBERS/Messerschmitt-Libelle.git
[submodule "Aircraft/Messerschmitt-P1101"]
path = Aircraft/Messerschmitt-P1101
url = https://github.com/FGMEMBERS/Messerschmitt-P1101.git
[submodule "Aircraft/MiG-15"]
path = Aircraft/MiG-15
url = https://github.com/FGMEMBERS/MiG-15.git
[submodule "Aircraft/MiG-21bis"]
path = Aircraft/MiG-21bis
url = https://github.com/FGMEMBERS/MiG-21bis.git
[submodule "Aircraft/Mig-29"]
path = Aircraft/Mig-29
url = https://github.com/FGMEMBERS/Mig-29.git
[submodule "Aircraft/Mil-Mi-12"]
path = Aircraft/Mil-Mi-12
url = https://github.com/FGMEMBERS/Mil-Mi-12.git
[submodule "Aircraft/Mil-Mi-24"]
path = Aircraft/Mil-Mi-24
url = https://github.com/FGMEMBERS/Mil-Mi-24.git
[submodule "Aircraft/mirage2000"]
path = Aircraft/mirage2000
url = https://github.com/FGMEMBERS/mirage2000.git
[submodule "Aircraft/Mirage-2000"]
path = Aircraft/Mirage-2000
url = https://github.com/FGMEMBERS/Mirage-2000.git
[submodule "Aircraft/Mirage_F1"]
path = Aircraft/Mirage_F1
url = https://github.com/FGMEMBERS/Mirage_F1.git
[submodule "Aircraft/MirageIII"]
path = Aircraft/MirageIII
url = https://github.com/FGMEMBERS/MirageIII.git
[submodule "Aircraft/MirageIV"]
path = Aircraft/MirageIV
url = https://github.com/FGMEMBERS/MirageIV.git
[submodule "Aircraft/mosquito"]
path = Aircraft/mosquito
url = https://github.com/FGMEMBERS/mosquito.git
[submodule "Aircraft/MPCarrier"]
path = Aircraft/MPCarrier
url = https://github.com/FGMEMBERS/MPCarrier.git
[submodule "Aircraft/MRJ"]
path = Aircraft/MRJ
url = https://github.com/FGMEMBERS/MRJ.git
[submodule "Aircraft/MS-406"]
path = Aircraft/MS-406
url = https://github.com/FGMEMBERS/MS-406.git
[submodule "Aircraft/M-XE"]
path = Aircraft/M-XE
url = https://github.com/FGMEMBERS/M-XE.git
[submodule "Aircraft/Nakajima-B5N"]
path = Aircraft/Nakajima-B5N
url = https://github.com/FGMEMBERS/Nakajima-B5N.git
[submodule "Aircraft/Nieuport-11"]