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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
|
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
FA17FD5216BB0C1D0003E370 /* g_emp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA17FD5116BB0C1D0003E370 /* g_emp.cpp */; };
FA17FD5316BB0C530003E370 /* g_emp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA17FD5116BB0C1D0003E370 /* g_emp.cpp */; };
FA371694164DEE4400230CE8 /* con_act_sv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA371573164DD36800230CE8 /* con_act_sv.cpp */; };
FA371695164DEE4400230CE8 /* con_aux_sv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA371574164DD36800230CE8 /* con_aux_sv.cpp */; };
FA371696164DEE4400230CE8 /* con_com_sv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA371575164DD36800230CE8 /* con_com_sv.cpp */; };
FA371697164DEE4400230CE8 /* con_ext_sv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA371576164DD36800230CE8 /* con_ext_sv.cpp */; };
FA371698164DEE4400230CE8 /* con_info_sv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA371577164DD36800230CE8 /* con_info_sv.cpp */; };
FA371699164DEE4400230CE8 /* con_int_sv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA371578164DD36800230CE8 /* con_int_sv.cpp */; };
FA37169A164DEE4400230CE8 /* con_list_sv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA371579164DD36800230CE8 /* con_list_sv.cpp */; };
FA37169B164DEE4400230CE8 /* con_load_sv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA37157A164DD36800230CE8 /* con_load_sv.cpp */; };
FA37169C164DEE4400230CE8 /* con_main_sv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA37157B164DD36800230CE8 /* con_main_sv.cpp */; };
FA37169D164DEE4400230CE8 /* con_std_sv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA37157C164DD36800230CE8 /* con_std_sv.cpp */; };
FA37169E164DEE4400230CE8 /* e_colldet_sv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA37157E164DD36800230CE8 /* e_colldet_sv.cpp */; };
FA37169F164DEE4400230CE8 /* e_connmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA37157F164DD36800230CE8 /* e_connmanager.cpp */; };
FA3716A0164DEE4400230CE8 /* e_gameserver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA371580164DD36800230CE8 /* e_gameserver.cpp */; };
FA3716A1164DEE4400230CE8 /* e_global_sv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA371581164DD36800230CE8 /* e_global_sv.cpp */; };
FA3716A2164DEE4400230CE8 /* e_packethandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA371582164DD36800230CE8 /* e_packethandler.cpp */; };
FA3716A3164DEE4400230CE8 /* e_simnetinput.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA371583164DD36800230CE8 /* e_simnetinput.cpp */; };
FA3716A4164DEE4400230CE8 /* e_simnetoutput.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA371584164DD36800230CE8 /* e_simnetoutput.cpp */; };
FA3716A5164DEE4400230CE8 /* e_simplayerinfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA371585164DD36800230CE8 /* e_simplayerinfo.cpp */; };
FA3716A6164DEE4400230CE8 /* e_simulator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA371586164DD36800230CE8 /* e_simulator.cpp */; };
FA3716A7164DEE4400230CE8 /* e_world.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA371587164DD36800230CE8 /* e_world.cpp */; };
FA3716A8164DEE4400230CE8 /* g_main_sv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA371588164DD36800230CE8 /* g_main_sv.cpp */; };
FA3716A9164DEE4400230CE8 /* g_player.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA371589164DD36800230CE8 /* g_player.cpp */; };
FA3716AA164DEE4400230CE8 /* g_stgate_sv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA37158A164DD36800230CE8 /* g_stgate_sv.cpp */; };
FA3716AB164DEE7400230CE8 /* inp_main_sv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA3715B3164DD36800230CE8 /* inp_main_sv.cpp */; };
FA3716AC164DEE7400230CE8 /* net_packetdriver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA37167C164DD36800230CE8 /* net_packetdriver.cpp */; };
FA3716AD164DEE7400230CE8 /* net_util_sv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA37167D164DD36800230CE8 /* net_util_sv.cpp */; };
FA3716AE164DEE7400230CE8 /* nl_udpdriver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA37167E164DD36800230CE8 /* nl_udpdriver.cpp */; };
FA3716AF164DEE7400230CE8 /* sl_util_sv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA37167F164DD36800230CE8 /* sl_util_sv.cpp */; };
FA3716B0164DEE7400230CE8 /* sv_main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA371680164DD36800230CE8 /* sv_main.cpp */; };
FA3716B1164DEE7400230CE8 /* sys_err_sv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA371681164DD36800230CE8 /* sys_err_sv.cpp */; };
FA3716B2164DEE7400230CE8 /* sys_msg_sv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA371682164DD36800230CE8 /* sys_msg_sv.cpp */; };
FA3716B3164DEE7400230CE8 /* sys_util_sv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA371683164DD36800230CE8 /* sys_util_sv.cpp */; };
FA3716B4164DEE8100230CE8 /* con_arg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF87D163BE1CF0056CECD /* con_arg.cpp */; };
FA3716B5164DEE8100230CE8 /* con_tab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF87E163BE1CF0056CECD /* con_tab.cpp */; };
FA3716B6164DEE8100230CE8 /* con_vald.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF87F163BE1CF0056CECD /* con_vald.cpp */; };
FA3716B7164DEE8100230CE8 /* debug.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF880163BE1CF0056CECD /* debug.cpp */; };
FA3716B8164DEE8100230CE8 /* e_modulemanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF881163BE1CF0056CECD /* e_modulemanager.cpp */; };
FA3716B9164DEE8100230CE8 /* e_relist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF882163BE1CF0056CECD /* e_relist.cpp */; };
FA3716BA164DEE8100230CE8 /* g_extra.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF883163BE1CF0056CECD /* g_extra.cpp */; };
FA3716BB164DEE8D00230CE8 /* net_pckt_gmsv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8DE163BE1CF0056CECD /* net_pckt_gmsv.cpp */; };
FA3716BC164DEE8D00230CE8 /* net_stream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8DF163BE1CF0056CECD /* net_stream.cpp */; };
FA3716BD164DEE8D00230CE8 /* net_swap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8E0163BE1CF0056CECD /* net_swap.cpp */; };
FA3716BE164DEE8D00230CE8 /* net_util.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8E1163BE1CF0056CECD /* net_util.cpp */; };
FA3716BF164DEE8D00230CE8 /* net_wrap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8E2163BE1CF0056CECD /* net_wrap.cpp */; };
FA3716C0164DEE8D00230CE8 /* obj_clas.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8E3163BE1CF0056CECD /* obj_clas.cpp */; };
FA3716C1164DEE8D00230CE8 /* obj_creg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8E4163BE1CF0056CECD /* obj_creg.cpp */; };
FA3716C2164DEE8D00230CE8 /* obj_cust.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8E5163BE1CF0056CECD /* obj_cust.cpp */; };
FA3716C3164DEE8D00230CE8 /* obj_odt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8E6163BE1CF0056CECD /* obj_odt.cpp */; };
FA3716C4164DEE8D00230CE8 /* obj_type.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8E7163BE1CF0056CECD /* obj_type.cpp */; };
FA3716C5164DEE8D00230CE8 /* sl_path.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8E8163BE1CF0056CECD /* sl_path.cpp */; };
FA3716C6164DEE8D00230CE8 /* sl_timer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8E9163BE1CF0056CECD /* sl_timer.cpp */; };
FA3716C7164DEE8D00230CE8 /* sys_date.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8ED163BE1CF0056CECD /* sys_date.cpp */; };
FA3716C8164DEE8D00230CE8 /* sys_file.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8EE163BE1CF0056CECD /* sys_file.cpp */; };
FA3716C9164DEE8D00230CE8 /* sys_swap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8EF163BE1CF0056CECD /* sys_swap.cpp */; };
FA3716CA164DEE8D00230CE8 /* utl_bsp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8F0163BE1CF0056CECD /* utl_bsp.cpp */; };
FA3716CB164DEE8D00230CE8 /* utl_clip.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8F1163BE1CF0056CECD /* utl_clip.cpp */; };
FA3716CC164DEE8D00230CE8 /* utl_clpo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8F2163BE1CF0056CECD /* utl_clpo.cpp */; };
FA3716CD164DEE8D00230CE8 /* utl_cull.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8F3163BE1CF0056CECD /* utl_cull.cpp */; };
FA3716CE164DEE8D00230CE8 /* utl_logfile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8F4163BE1CF0056CECD /* utl_logfile.cpp */; };
FA3716CF164DEE8D00230CE8 /* utl_math.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8F5163BE1CF0056CECD /* utl_math.cpp */; };
FA3716D0164DEE8D00230CE8 /* utl_math2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8F6163BE1CF0056CECD /* utl_math2.cpp */; };
FA3716DA164DFC9800230CE8 /* libncurses.5.4.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = FA3716D9164DFC9800230CE8 /* libncurses.5.4.dylib */; };
FA3716DC164E07A300230CE8 /* libncurses.5.4.dylib in Copy Libraries */ = {isa = PBXBuildFile; fileRef = FA3716D9164DFC9800230CE8 /* libncurses.5.4.dylib */; };
FA5F84F9165478C600AD25B3 /* SDLMain.m in Sources */ = {isa = PBXBuildFile; fileRef = FA5F84F8165478C600AD25B3 /* SDLMain.m */; };
FA72A2BE16E8209C00997EBE /* init.con in Resources */ = {isa = PBXBuildFile; fileRef = FA72A15B16E8209B00997EBE /* init.con */; };
FA72A2C016E8209C00997EBE /* pscdata0.dat in Resources */ = {isa = PBXBuildFile; fileRef = FA72A15D16E8209B00997EBE /* pscdata0.dat */; };
FA72A2C116E8209C00997EBE /* pscdata1.dat in Resources */ = {isa = PBXBuildFile; fileRef = FA72A15E16E8209B00997EBE /* pscdata1.dat */; };
FA72A2C216E8209C00997EBE /* pscdata2.dat in Resources */ = {isa = PBXBuildFile; fileRef = FA72A15F16E8209B00997EBE /* pscdata2.dat */; };
FA72A2C316E8209C00997EBE /* pscdata3.dat in Resources */ = {isa = PBXBuildFile; fileRef = FA72A16016E8209B00997EBE /* pscdata3.dat */; };
FA72A2C516E820C300997EBE /* bindings.con in Copy Cons */ = {isa = PBXBuildFile; fileRef = FA729FFF16E8209A00997EBE /* bindings.con */; };
FA72A2C616E820C500997EBE /* strmpldr.con in Copy Cons */ = {isa = PBXBuildFile; fileRef = FA72A00016E8209A00997EBE /* strmpldr.con */; };
FA72A2C716E820C700997EBE /* user.con in Copy Cons */ = {isa = PBXBuildFile; fileRef = FA72A00116E8209A00997EBE /* user.con */; };
FA84A68016A7B59F005F649F /* stb_image_write.c in Sources */ = {isa = PBXBuildFile; fileRef = FA84A67F16A7B59F005F649F /* stb_image_write.c */; };
FAADE10016AB271B005D7250 /* glew.c in Sources */ = {isa = PBXBuildFile; fileRef = FAADE0FC16AB271B005D7250 /* glew.c */; };
FAB135B5164DAB73006CBB88 /* aud_sdlmixer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAB135B4164DAB73006CBB88 /* aud_sdlmixer.cpp */; };
FAB135BF164DB2CE006CBB88 /* parsec.icns in Resources */ = {isa = PBXBuildFile; fileRef = FAB135BE164DB2CE006CBB88 /* parsec.icns */; };
FAB135C2164DB2D4006CBB88 /* con.icns in Resources */ = {isa = PBXBuildFile; fileRef = FAB135C0164DB2D4006CBB88 /* con.icns */; };
FAB135C3164DB2D4006CBB88 /* dat.icns in Resources */ = {isa = PBXBuildFile; fileRef = FAB135C1164DB2D4006CBB88 /* dat.icns */; };
FAB42EDA16F819B40017E7FD /* CREDITS in Resources */ = {isa = PBXBuildFile; fileRef = FAB42ED916F819B40017E7FD /* CREDITS */; };
FAB42EDC16F819B80017E7FD /* LICENSE in Resources */ = {isa = PBXBuildFile; fileRef = FAB42EDB16F819B80017E7FD /* LICENSE */; };
FAB42EDE16F819BC0017E7FD /* LICENSE.readme in Resources */ = {isa = PBXBuildFile; fileRef = FAB42EDD16F819BC0017E7FD /* LICENSE.readme */; };
FAB6A4B916B666CA00052EF2 /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FAB6A4B816B666CA00052EF2 /* SDL.framework */; };
FAB6A4BB16B666CF00052EF2 /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FAB6A4BA16B666CF00052EF2 /* SDL_mixer.framework */; };
FABCE935163C86F60030912B /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FABCE934163C86F50030912B /* OpenGL.framework */; };
FABCE937163C876A0030912B /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FABCE936163C876A0030912B /* Cocoa.framework */; };
FAC1D4CC16B71D8A00DABF17 /* SDL.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = FAB6A4B816B666CA00052EF2 /* SDL.framework */; };
FAC1D4CD16B71D8C00DABF17 /* SDL_mixer.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = FAB6A4BA16B666CF00052EF2 /* SDL_mixer.framework */; };
FAC8E8D816F3FDDC004DADF3 /* LICENSE.artwork_sound in Resources */ = {isa = PBXBuildFile; fileRef = FAC8E8D716F3FDD2004DADF3 /* LICENSE.artwork_sound */; };
FAE294001655A28900D00541 /* sw_path.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAE293FE1655A28700D00541 /* sw_path.cpp */; };
FAE294011655A28900D00541 /* sw_timer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAE293FF1655A28800D00541 /* sw_timer.cpp */; };
FAE294061655A86F00D00541 /* nw_udp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAE294051655A86C00D00541 /* nw_udp.cpp */; };
FAE69DE316A74C4100C1AC79 /* stb_image.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAE69DE216A74C4100C1AC79 /* stb_image.cpp */; };
FAE69E1616A7631200C1AC79 /* MasterServer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAE69E1416A7631200C1AC79 /* MasterServer.cpp */; };
FAE69E1716A7631200C1AC79 /* MasterServerItem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAE69E1516A7631200C1AC79 /* MasterServerItem.cpp */; };
FAFE57FD16791C1C00A31DAA /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FAFE57FB16791C1100A31DAA /* CoreFoundation.framework */; };
FAFEFCE0163BE1D00056CECD /* con_arg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF87D163BE1CF0056CECD /* con_arg.cpp */; };
FAFEFCE1163BE1D00056CECD /* con_tab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF87E163BE1CF0056CECD /* con_tab.cpp */; };
FAFEFCE2163BE1D00056CECD /* con_vald.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF87F163BE1CF0056CECD /* con_vald.cpp */; };
FAFEFCE3163BE1D00056CECD /* debug.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF880163BE1CF0056CECD /* debug.cpp */; };
FAFEFCE4163BE1D00056CECD /* e_modulemanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF881163BE1CF0056CECD /* e_modulemanager.cpp */; };
FAFEFCE5163BE1D00056CECD /* e_relist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF882163BE1CF0056CECD /* e_relist.cpp */; };
FAFEFCE6163BE1D00056CECD /* g_extra.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF883163BE1CF0056CECD /* g_extra.cpp */; };
FAFEFCE8163BE1D00056CECD /* net_pckt_gmsv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8DE163BE1CF0056CECD /* net_pckt_gmsv.cpp */; };
FAFEFCE9163BE1D00056CECD /* net_stream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8DF163BE1CF0056CECD /* net_stream.cpp */; };
FAFEFCEA163BE1D00056CECD /* net_swap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8E0163BE1CF0056CECD /* net_swap.cpp */; };
FAFEFCEB163BE1D00056CECD /* net_util.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8E1163BE1CF0056CECD /* net_util.cpp */; };
FAFEFCEC163BE1D00056CECD /* net_wrap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8E2163BE1CF0056CECD /* net_wrap.cpp */; };
FAFEFCED163BE1D00056CECD /* obj_clas.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8E3163BE1CF0056CECD /* obj_clas.cpp */; };
FAFEFCEE163BE1D00056CECD /* obj_creg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8E4163BE1CF0056CECD /* obj_creg.cpp */; };
FAFEFCEF163BE1D00056CECD /* obj_cust.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8E5163BE1CF0056CECD /* obj_cust.cpp */; };
FAFEFCF0163BE1D00056CECD /* obj_odt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8E6163BE1CF0056CECD /* obj_odt.cpp */; };
FAFEFCF1163BE1D00056CECD /* obj_type.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8E7163BE1CF0056CECD /* obj_type.cpp */; };
FAFEFCF2163BE1D00056CECD /* sl_path.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8E8163BE1CF0056CECD /* sl_path.cpp */; };
FAFEFCF3163BE1D00056CECD /* sl_timer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8E9163BE1CF0056CECD /* sl_timer.cpp */; };
FAFEFCF7163BE1D00056CECD /* sys_date.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8ED163BE1CF0056CECD /* sys_date.cpp */; };
FAFEFCF8163BE1D00056CECD /* sys_file.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8EE163BE1CF0056CECD /* sys_file.cpp */; };
FAFEFCF9163BE1D00056CECD /* sys_swap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8EF163BE1CF0056CECD /* sys_swap.cpp */; };
FAFEFCFA163BE1D00056CECD /* utl_bsp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8F0163BE1CF0056CECD /* utl_bsp.cpp */; };
FAFEFCFB163BE1D00056CECD /* utl_clip.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8F1163BE1CF0056CECD /* utl_clip.cpp */; };
FAFEFCFC163BE1D00056CECD /* utl_clpo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8F2163BE1CF0056CECD /* utl_clpo.cpp */; };
FAFEFCFD163BE1D00056CECD /* utl_cull.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8F3163BE1CF0056CECD /* utl_cull.cpp */; };
FAFEFCFE163BE1D00056CECD /* utl_logfile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8F4163BE1CF0056CECD /* utl_logfile.cpp */; };
FAFEFCFF163BE1D00056CECD /* utl_math.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8F5163BE1CF0056CECD /* utl_math.cpp */; };
FAFEFD00163BE1D00056CECD /* utl_math2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8F6163BE1CF0056CECD /* utl_math2.cpp */; };
FAFEFD03163BE1D00056CECD /* aud_bkgn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8FA163BE1CF0056CECD /* aud_bkgn.cpp */; };
FAFEFD04163BE1D00056CECD /* aud_comm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8FB163BE1CF0056CECD /* aud_comm.cpp */; };
FAFEFD05163BE1D00056CECD /* aud_game.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8FC163BE1CF0056CECD /* aud_game.cpp */; };
FAFEFD06163BE1D00056CECD /* aud_glob.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8FD163BE1CF0056CECD /* aud_glob.cpp */; };
FAFEFD07163BE1D00056CECD /* aud_supp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF8FE163BE1CF0056CECD /* aud_supp.cpp */; };
FAFEFD0F163BE1D00056CECD /* con_act.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF906163BE1CF0056CECD /* con_act.cpp */; };
FAFEFD10163BE1D00056CECD /* con_aux.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF907163BE1CF0056CECD /* con_aux.cpp */; };
FAFEFD11163BE1D00056CECD /* con_cani.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF908163BE1CF0056CECD /* con_cani.cpp */; };
FAFEFD12163BE1D00056CECD /* con_com.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF909163BE1CF0056CECD /* con_com.cpp */; };
FAFEFD13163BE1D00056CECD /* con_conf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF90A163BE1CF0056CECD /* con_conf.cpp */; };
FAFEFD14163BE1D00056CECD /* con_ext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF90B163BE1CF0056CECD /* con_ext.cpp */; };
FAFEFD15163BE1D00056CECD /* con_geom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF90C163BE1CF0056CECD /* con_geom.cpp */; };
FAFEFD16163BE1D00056CECD /* con_info.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF90D163BE1CF0056CECD /* con_info.cpp */; };
FAFEFD17163BE1D00056CECD /* con_int.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF90E163BE1CF0056CECD /* con_int.cpp */; };
FAFEFD18163BE1D00056CECD /* con_kmap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF90F163BE1CF0056CECD /* con_kmap.cpp */; };
FAFEFD19163BE1D00056CECD /* con_list.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF910163BE1CF0056CECD /* con_list.cpp */; };
FAFEFD1A163BE1D00056CECD /* con_load.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF911163BE1CF0056CECD /* con_load.cpp */; };
FAFEFD1B163BE1D00056CECD /* con_main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF912163BE1CF0056CECD /* con_main.cpp */; };
FAFEFD1C163BE1D00056CECD /* con_path.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF913163BE1CF0056CECD /* con_path.cpp */; };
FAFEFD1D163BE1D00056CECD /* con_rc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF914163BE1CF0056CECD /* con_rc.cpp */; };
FAFEFD1E163BE1D00056CECD /* con_say.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF915163BE1CF0056CECD /* con_say.cpp */; };
FAFEFD1F163BE1D00056CECD /* con_shad.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF916163BE1CF0056CECD /* con_shad.cpp */; };
FAFEFD20163BE1D00056CECD /* con_std.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF917163BE1CF0056CECD /* con_std.cpp */; };
FAFEFD21163BE1D00056CECD /* con_tani.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF918163BE1CF0056CECD /* con_tani.cpp */; };
FAFEFD22163BE1D00056CECD /* d_glob.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF919163BE1CF0056CECD /* d_glob.cpp */; };
FAFEFD23163BE1D00056CECD /* d_misc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF91A163BE1CF0056CECD /* d_misc.cpp */; };
FAFEFD81163BE1D00056CECD /* do_bmap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9A3163BE1CF0056CECD /* do_bmap.cpp */; };
FAFEFD82163BE1D00056CECD /* do_font.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9A4163BE1CF0056CECD /* do_font.cpp */; };
FAFEFD83163BE1D00056CECD /* do_iter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9A5163BE1CF0056CECD /* do_iter.cpp */; };
FAFEFD84163BE1D00056CECD /* do_misc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9A6163BE1CF0056CECD /* do_misc.cpp */; };
FAFEFD85163BE1D00056CECD /* do_patch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9A7163BE1CF0056CECD /* do_patch.cpp */; };
FAFEFD86163BE1D00056CECD /* e_callbk.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9A8163BE1CF0056CECD /* e_callbk.cpp */; };
FAFEFD87163BE1D00056CECD /* e_colani.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9A9163BE1CF0056CECD /* e_colani.cpp */; };
FAFEFD88163BE1D00056CECD /* e_color.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9AA163BE1CF0056CECD /* e_color.cpp */; };
FAFEFD89163BE1D00056CECD /* e_demo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9AB163BE1CF0056CECD /* e_demo.cpp */; };
FAFEFD8A163BE1D00056CECD /* e_draw.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9AC163BE1CF0056CECD /* e_draw.cpp */; };
FAFEFD8B163BE1D00056CECD /* e_events.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9AD163BE1CF0056CECD /* e_events.cpp */; };
FAFEFD8C163BE1D00056CECD /* e_getopt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9AE163BE1CF0056CECD /* e_getopt.cpp */; };
FAFEFD8D163BE1D00056CECD /* e_global.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9AF163BE1CF0056CECD /* e_global.cpp */; };
FAFEFD8E163BE1D00056CECD /* e_level.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9B0163BE1CF0056CECD /* e_level.cpp */; };
FAFEFD8F163BE1D00056CECD /* e_loader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9B1163BE1CF0056CECD /* e_loader.cpp */; };
FAFEFD90163BE1D00056CECD /* e_mouse.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9B2163BE1CF0056CECD /* e_mouse.cpp */; };
FAFEFD91163BE1D00056CECD /* e_record.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9B3163BE1CF0056CECD /* e_record.cpp */; };
FAFEFD92163BE1D00056CECD /* e_replay.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9B4163BE1CF0056CECD /* e_replay.cpp */; };
FAFEFD93163BE1D00056CECD /* e_shader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9B5163BE1CF0056CECD /* e_shader.cpp */; };
FAFEFD94163BE1D00056CECD /* e_supp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9B6163BE1CF0056CECD /* e_supp.cpp */; };
FAFEFD95163BE1D00056CECD /* e_texani.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9B7163BE1CF0056CECD /* e_texani.cpp */; };
FAFEFD96163BE1D00056CECD /* e_vtxani.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9B8163BE1CF0056CECD /* e_vtxani.cpp */; };
FAFEFD97163BE1D00056CECD /* g_boot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9B9163BE1CF0056CECD /* g_boot.cpp */; };
FAFEFD98163BE1D00056CECD /* g_bot_cl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9BA163BE1CF0056CECD /* g_bot_cl.cpp */; };
FAFEFD99163BE1D00056CECD /* g_camera.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9BB163BE1CF0056CECD /* g_camera.cpp */; };
FAFEFD9A163BE1D00056CECD /* g_cloud.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9BC163BE1CF0056CECD /* g_cloud.cpp */; };
FAFEFD9C163BE1D00056CECD /* g_explod.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9BE163BE1CF0056CECD /* g_explod.cpp */; };
FAFEFD9D163BE1D00056CECD /* g_gameloop.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9BF163BE1CF0056CECD /* g_gameloop.cpp */; };
FAFEFD9E163BE1D00056CECD /* g_global.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9C0163BE1CF0056CECD /* g_global.cpp */; };
FAFEFD9F163BE1D00056CECD /* g_laser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9C1163BE1CF0056CECD /* g_laser.cpp */; };
FAFEFDA0163BE1D00056CECD /* g_planet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9C2163BE1CF0056CECD /* g_planet.cpp */; };
FAFEFDA1163BE1D00056CECD /* g_sfx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9C3163BE1CF0056CECD /* g_sfx.cpp */; };
FAFEFDA2163BE1D00056CECD /* g_shkwav.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9C4163BE1CF0056CECD /* g_shkwav.cpp */; };
FAFEFDA3163BE1D00056CECD /* g_stars.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9C5163BE1CF0056CECD /* g_stars.cpp */; };
FAFEFDA4163BE1D00056CECD /* g_stgate.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9C6163BE1CF0056CECD /* g_stgate.cpp */; };
FAFEFDA5163BE1D00056CECD /* g_supp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9C7163BE1CF0056CECD /* g_supp.cpp */; };
FAFEFDA6163BE1D00056CECD /* g_swarm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9C8163BE1CF0056CECD /* g_swarm.cpp */; };
FAFEFDA7163BE1D00056CECD /* g_telep.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9C9163BE1CF0056CECD /* g_telep.cpp */; };
FAFEFDA8163BE1D00056CECD /* g_vapor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9CA163BE1CF0056CECD /* g_vapor.cpp */; };
FAFEFDA9163BE1D00056CECD /* g_wfx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9CB163BE1CF0056CECD /* g_wfx.cpp */; };
FAFEFDAA163BE1D00056CECD /* h_cockpt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9CC163BE1CF0056CECD /* h_cockpt.cpp */; };
FAFEFDAB163BE1D00056CECD /* h_drwhud.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9CD163BE1CF0056CECD /* h_drwhud.cpp */; };
FAFEFDAC163BE1D00056CECD /* h_frmplt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9CE163BE1CF0056CECD /* h_frmplt.cpp */; };
FAFEFDAD163BE1D00056CECD /* h_global.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9CF163BE1CF0056CECD /* h_global.cpp */; };
FAFEFDAE163BE1D00056CECD /* h_radar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9D0163BE1CF0056CECD /* h_radar.cpp */; };
FAFEFDAF163BE1D00056CECD /* h_strmap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9D1163BE1CF0056CECD /* h_strmap.cpp */; };
FAFEFDB0163BE1D00056CECD /* h_supp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9D2163BE1CF0056CECD /* h_supp.cpp */; };
FAFEFDB1163BE1D00056CECD /* h_text.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9D3163BE1CF0056CECD /* h_text.cpp */; };
FAFEFDB7163BE1D00056CECD /* img_3df.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9D9163BE1CF0056CECD /* img_3df.cpp */; };
FAFEFDB8163BE1D00056CECD /* img_api.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9DA163BE1CF0056CECD /* img_api.cpp */; };
FAFEFDB9163BE1D00056CECD /* img_conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9DB163BE1CF0056CECD /* img_conv.cpp */; };
FAFEFDBA163BE1D00056CECD /* img_jpg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9DC163BE1CF0056CECD /* img_jpg.cpp */; };
FAFEFDBB163BE1D00056CECD /* img_load.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9DD163BE1CF0056CECD /* img_load.cpp */; };
FAFEFDBC163BE1D00056CECD /* img_supp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9DE163BE1CF0056CECD /* img_supp.cpp */; };
FAFEFDBE163BE1D00056CECD /* img_tga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEF9E0163BE1CF0056CECD /* img_tga.cpp */; };
FAFEFDBF163BE1D00056CECD /* inp_comm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFAF6163BE1D00056CECD /* inp_comm.cpp */; };
FAFEFDC0163BE1D00056CECD /* inp_glob.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFAF7163BE1D00056CECD /* inp_glob.cpp */; };
FAFEFDC1163BE1D00056CECD /* inp_init.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFAF8163BE1D00056CECD /* inp_init.cpp */; };
FAFEFDC2163BE1D00056CECD /* inp_sdl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFAF9163BE1D00056CECD /* inp_sdl.cpp */; };
FAFEFDC3163BE1D00056CECD /* inp_user.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFAFA163BE1D00056CECD /* inp_user.cpp */; };
FAFEFDC4163BE1D00056CECD /* isdl_joy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFAFB163BE1D00056CECD /* isdl_joy.cpp */; };
FAFEFDC5163BE1D00056CECD /* isdl_mouse.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFAFC163BE1D00056CECD /* isdl_mouse.cpp */; };
FAFEFDC6163BE1D00056CECD /* isdl_supp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFAFD163BE1D00056CECD /* isdl_supp.cpp */; };
FAFEFDCD163BE1D00056CECD /* m_button.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB04163BE1D00056CECD /* m_button.cpp */; };
FAFEFDCE163BE1D00056CECD /* m_list.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB05163BE1D00056CECD /* m_list.cpp */; };
FAFEFDCF163BE1D00056CECD /* m_logo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB06163BE1D00056CECD /* m_logo.cpp */; };
FAFEFDD0163BE1D00056CECD /* m_main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB07163BE1D00056CECD /* m_main.cpp */; };
FAFEFDD1163BE1D00056CECD /* m_option.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB08163BE1D00056CECD /* m_option.cpp */; };
FAFEFDD2163BE1D00056CECD /* m_status.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB09163BE1D00056CECD /* m_status.cpp */; };
FAFEFDD3163BE1D00056CECD /* m_viewer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB0A163BE1D00056CECD /* m_viewer.cpp */; };
FAFEFDD5163BE1D00056CECD /* net_conn.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB0C163BE1D00056CECD /* net_conn.cpp */; };
FAFEFDD6163BE1D00056CECD /* net_game.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB0D163BE1D00056CECD /* net_game.cpp */; };
FAFEFDD7163BE1D00056CECD /* net_game_gmsv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB0E163BE1D00056CECD /* net_game_gmsv.cpp */; };
FAFEFDD8163BE1D00056CECD /* net_game_peer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB0F163BE1D00056CECD /* net_game_peer.cpp */; };
FAFEFDD9163BE1D00056CECD /* net_glob.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB10163BE1D00056CECD /* net_glob.cpp */; };
FAFEFDDA163BE1D00056CECD /* net_gmsv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB11163BE1D00056CECD /* net_gmsv.cpp */; };
FAFEFDDB163BE1D00056CECD /* net_pckt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB12163BE1D00056CECD /* net_pckt.cpp */; };
FAFEFDDC163BE1D00056CECD /* net_pckt_peer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB13163BE1D00056CECD /* net_pckt_peer.cpp */; };
FAFEFDDD163BE1D00056CECD /* net_peer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB14163BE1D00056CECD /* net_peer.cpp */; };
FAFEFDDE163BE1D00056CECD /* net_prediction.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB15163BE1D00056CECD /* net_prediction.cpp */; };
FAFEFDDF163BE1D00056CECD /* net_rmev.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB16163BE1D00056CECD /* net_rmev.cpp */; };
FAFEFDE0163BE1D00056CECD /* net_rmev_gmsv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB17163BE1D00056CECD /* net_rmev_gmsv.cpp */; };
FAFEFDE1163BE1D00056CECD /* net_rmev_peer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB18163BE1D00056CECD /* net_rmev_peer.cpp */; };
FAFEFDE2163BE1D00056CECD /* net_serv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB19163BE1D00056CECD /* net_serv.cpp */; };
FAFEFDE3163BE1D00056CECD /* net_udp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB1A163BE1D00056CECD /* net_udp.cpp */; };
FAFEFDE4163BE1D00056CECD /* net_univ.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB1B163BE1D00056CECD /* net_univ.cpp */; };
FAFEFDE5163BE1D00056CECD /* net_util_cl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB1C163BE1D00056CECD /* net_util_cl.cpp */; };
FAFEFDE6163BE1D00056CECD /* nl_udp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB1D163BE1D00056CECD /* nl_udp.cpp */; };
FAFEFDE9163BE1D00056CECD /* obj_ani.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB20163BE1D00056CECD /* obj_ani.cpp */; };
FAFEFDEA163BE1D00056CECD /* obj_coll.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB21163BE1D00056CECD /* obj_coll.cpp */; };
FAFEFDEB163BE1D00056CECD /* obj_comm.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB22163BE1D00056CECD /* obj_comm.cpp */; };
FAFEFDEC163BE1D00056CECD /* obj_ctrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB23163BE1D00056CECD /* obj_ctrl.cpp */; };
FAFEFDED163BE1D00056CECD /* obj_expl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB24163BE1D00056CECD /* obj_expl.cpp */; };
FAFEFDEE163BE1D00056CECD /* obj_game.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB25163BE1D00056CECD /* obj_game.cpp */; };
FAFEFDEF163BE1D00056CECD /* obj_iter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB26163BE1D00056CECD /* obj_iter.cpp */; };
FAFEFDF0163BE1D00056CECD /* obj_part.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB27163BE1D00056CECD /* obj_part.cpp */; };
FAFEFDF1163BE1D00056CECD /* obj_vani.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB28163BE1D00056CECD /* obj_vani.cpp */; };
FAFEFDF2163BE1D00056CECD /* obj_xtra.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB29163BE1D00056CECD /* obj_xtra.cpp */; };
FAFEFDF3163BE1D00056CECD /* part_ani.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB2A163BE1D00056CECD /* part_ani.cpp */; };
FAFEFDF4163BE1D00056CECD /* part_api.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB2B163BE1D00056CECD /* part_api.cpp */; };
FAFEFDF5163BE1D00056CECD /* part_def.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB2C163BE1D00056CECD /* part_def.cpp */; };
FAFEFDF6163BE1D00056CECD /* part_sys.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB2D163BE1D00056CECD /* part_sys.cpp */; };
FAFEFDF7163BE1D00056CECD /* r_glob.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB2E163BE1D00056CECD /* r_glob.cpp */; };
FAFEFE00163BE1D00056CECD /* ro_api.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB37163BE1D00056CECD /* ro_api.cpp */; };
FAFEFE01163BE1D00056CECD /* ro_obj.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB38163BE1D00056CECD /* ro_obj.cpp */; };
FAFEFE02163BE1D00056CECD /* ro_part.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB39163BE1D00056CECD /* ro_part.cpp */; };
FAFEFE03163BE1D00056CECD /* ro_patch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB3A163BE1D00056CECD /* ro_patch.cpp */; };
FAFEFE04163BE1D00056CECD /* ro_perf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB3B163BE1D00056CECD /* ro_perf.cpp */; };
FAFEFE05163BE1D00056CECD /* ro_poly.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB3C163BE1D00056CECD /* ro_poly.cpp */; };
FAFEFE06163BE1D00056CECD /* ro_sfx.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB3D163BE1D00056CECD /* ro_sfx.cpp */; };
FAFEFE07163BE1D00056CECD /* ro_supp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB3E163BE1D00056CECD /* ro_supp.cpp */; };
FAFEFE08163BE1D00056CECD /* sl_err.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB3F163BE1D00056CECD /* sl_err.cpp */; };
FAFEFE09163BE1D00056CECD /* sl_main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB40163BE1D00056CECD /* sl_main.cpp */; };
FAFEFE0A163BE1D00056CECD /* sl_msg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB41163BE1D00056CECD /* sl_msg.cpp */; };
FAFEFE0B163BE1D00056CECD /* sl_opt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB42163BE1D00056CECD /* sl_opt.cpp */; };
FAFEFE0C163BE1D00056CECD /* snd_api.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB43163BE1D00056CECD /* snd_api.cpp */; };
FAFEFE0D163BE1D00056CECD /* snd_wav.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB44163BE1D00056CECD /* snd_wav.cpp */; };
FAFEFE1A163BE1D00056CECD /* sys_bind.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB51163BE1D00056CECD /* sys_bind.cpp */; };
FAFEFE1B163BE1D00056CECD /* sys_conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB52163BE1D00056CECD /* sys_conv.cpp */; };
FAFEFE1C163BE1D00056CECD /* sys_glob.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB53163BE1D00056CECD /* sys_glob.cpp */; };
FAFEFE1D163BE1D00056CECD /* t_pack.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB54163BE1D00056CECD /* t_pack.cpp */; };
FAFEFE1E163BE1D00056CECD /* vid_glob.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB55163BE1D00056CECD /* vid_glob.cpp */; };
FAFEFE1F163BE1D00056CECD /* vid_init.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB56163BE1D00056CECD /* vid_init.cpp */; };
FAFEFE20163BE1D00056CECD /* vid_plug.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB57163BE1D00056CECD /* vid_plug.cpp */; };
FAFEFE21163BE1D00056CECD /* vid_supp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB58163BE1D00056CECD /* vid_supp.cpp */; };
FAFEFE2A163BE1D00056CECD /* vsdl_buffo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB61163BE1D00056CECD /* vsdl_buffo.cpp */; };
FAFEFE2B163BE1D00056CECD /* vsdl_inito.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB62163BE1D00056CECD /* vsdl_inito.cpp */; };
FAFEFE2C163BE1D00056CECD /* vsdl_ogl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB63163BE1D00056CECD /* vsdl_ogl.cpp */; };
FAFEFE2D163BE1D00056CECD /* vsdl_suppo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAFEFB64163BE1D00056CECD /* vsdl_suppo.cpp */; };
/* End PBXBuildFile section */
/* Begin PBXCopyFilesBuildPhase section */
FA29208C163DC04B000B8C26 /* Copy Libraries */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = Contents/Libraries;
dstSubfolderSpec = 1;
files = (
);
name = "Copy Libraries";
runOnlyForDeploymentPostprocessing = 0;
};
FA371693164DED1300230CE8 /* Copy Libraries */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "";
dstSubfolderSpec = 6;
files = (
FA3716DC164E07A300230CE8 /* libncurses.5.4.dylib in Copy Libraries */,
);
name = "Copy Libraries";
runOnlyForDeploymentPostprocessing = 0;
};
FACC75FB164E6C590074A40E /* Copy Cons */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = cons;
dstSubfolderSpec = 7;
files = (
FA72A2C516E820C300997EBE /* bindings.con in Copy Cons */,
FA72A2C616E820C500997EBE /* strmpldr.con in Copy Cons */,
FA72A2C716E820C700997EBE /* user.con in Copy Cons */,
);
name = "Copy Cons";
runOnlyForDeploymentPostprocessing = 0;
};
FAFEFF41163BE7600056CECD /* Copy Frameworks */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "";
dstSubfolderSpec = 10;
files = (
FAC1D4CC16B71D8A00DABF17 /* SDL.framework in Copy Frameworks */,
FAC1D4CD16B71D8C00DABF17 /* SDL_mixer.framework in Copy Frameworks */,
);
name = "Copy Frameworks";
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
FA17FD5116BB0C1D0003E370 /* g_emp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = g_emp.cpp; sourceTree = "<group>"; };
FA371573164DD36800230CE8 /* con_act_sv.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = con_act_sv.cpp; sourceTree = "<group>"; };
FA371574164DD36800230CE8 /* con_aux_sv.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = con_aux_sv.cpp; sourceTree = "<group>"; };
FA371575164DD36800230CE8 /* con_com_sv.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = con_com_sv.cpp; sourceTree = "<group>"; };
FA371576164DD36800230CE8 /* con_ext_sv.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = con_ext_sv.cpp; sourceTree = "<group>"; };
FA371577164DD36800230CE8 /* con_info_sv.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = con_info_sv.cpp; sourceTree = "<group>"; };
FA371578164DD36800230CE8 /* con_int_sv.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = con_int_sv.cpp; sourceTree = "<group>"; };
FA371579164DD36800230CE8 /* con_list_sv.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = con_list_sv.cpp; sourceTree = "<group>"; };
FA37157A164DD36800230CE8 /* con_load_sv.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = con_load_sv.cpp; sourceTree = "<group>"; };
FA37157B164DD36800230CE8 /* con_main_sv.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 0; path = con_main_sv.cpp; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.cpp; };
FA37157C164DD36800230CE8 /* con_std_sv.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = con_std_sv.cpp; sourceTree = "<group>"; };
FA37157E164DD36800230CE8 /* e_colldet_sv.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = e_colldet_sv.cpp; sourceTree = "<group>"; };
FA37157F164DD36800230CE8 /* e_connmanager.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = e_connmanager.cpp; sourceTree = "<group>"; };
FA371580164DD36800230CE8 /* e_gameserver.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 0; path = e_gameserver.cpp; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.cpp; };
FA371581164DD36800230CE8 /* e_global_sv.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = e_global_sv.cpp; sourceTree = "<group>"; };
FA371582164DD36800230CE8 /* e_packethandler.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = e_packethandler.cpp; sourceTree = "<group>"; };
FA371583164DD36800230CE8 /* e_simnetinput.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = e_simnetinput.cpp; sourceTree = "<group>"; };
FA371584164DD36800230CE8 /* e_simnetoutput.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 0; path = e_simnetoutput.cpp; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.cpp; };
FA371585164DD36800230CE8 /* e_simplayerinfo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = e_simplayerinfo.cpp; sourceTree = "<group>"; };
FA371586164DD36800230CE8 /* e_simulator.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 0; path = e_simulator.cpp; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.cpp; };
FA371587164DD36800230CE8 /* e_world.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = e_world.cpp; sourceTree = "<group>"; };
FA371588164DD36800230CE8 /* g_main_sv.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = g_main_sv.cpp; sourceTree = "<group>"; };
FA371589164DD36800230CE8 /* g_player.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = g_player.cpp; sourceTree = "<group>"; };
FA37158A164DD36800230CE8 /* g_stgate_sv.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = g_stgate_sv.cpp; sourceTree = "<group>"; };
FA37158C164DD36800230CE8 /* con_act_sv.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = con_act_sv.h; sourceTree = "<group>"; };
FA37158D164DD36800230CE8 /* con_aux_sv.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = con_aux_sv.h; sourceTree = "<group>"; };
FA37158E164DD36800230CE8 /* con_com_sv.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = con_com_sv.h; sourceTree = "<group>"; };
FA37158F164DD36800230CE8 /* con_ext_sv.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = con_ext_sv.h; sourceTree = "<group>"; };
FA371590164DD36800230CE8 /* con_info_sv.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = con_info_sv.h; sourceTree = "<group>"; };
FA371591164DD36800230CE8 /* con_int_sv.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = con_int_sv.h; sourceTree = "<group>"; };
FA371592164DD36800230CE8 /* con_list_sv.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = con_list_sv.h; sourceTree = "<group>"; };
FA371593164DD36800230CE8 /* con_load_sv.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = con_load_sv.h; sourceTree = "<group>"; };
FA371594164DD36800230CE8 /* con_main_sv.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = con_main_sv.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
FA371595164DD36800230CE8 /* con_std_sv.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = con_std_sv.h; sourceTree = "<group>"; };
FA371596164DD36800230CE8 /* e_colldet.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = e_colldet.h; sourceTree = "<group>"; };
FA371597164DD36800230CE8 /* e_connmanager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = e_connmanager.h; sourceTree = "<group>"; };
FA371598164DD36800230CE8 /* e_defs.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = e_defs.h; sourceTree = "<group>"; };
FA371599164DD36800230CE8 /* e_gameserver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = e_gameserver.h; sourceTree = "<group>"; };
FA37159A164DD36800230CE8 /* e_global_sv.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = e_global_sv.h; sourceTree = "<group>"; };
FA37159B164DD36800230CE8 /* e_packethandler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = e_packethandler.h; sourceTree = "<group>"; };
FA37159C164DD36800230CE8 /* e_simnetinput.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = e_simnetinput.h; sourceTree = "<group>"; };
FA37159D164DD36800230CE8 /* e_simnetoutput.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = e_simnetoutput.h; sourceTree = "<group>"; };
FA37159E164DD36800230CE8 /* e_simplayerinfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = e_simplayerinfo.h; sourceTree = "<group>"; };
FA37159F164DD36800230CE8 /* e_simulator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = e_simulator.h; sourceTree = "<group>"; };
FA3715A0164DD36800230CE8 /* e_world.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = e_world.h; sourceTree = "<group>"; };
FA3715A1164DD36800230CE8 /* e_world_trans.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = e_world_trans.h; sourceTree = "<group>"; };
FA3715A2164DD36800230CE8 /* g_main_sv.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = g_main_sv.h; sourceTree = "<group>"; };
FA3715A3164DD36800230CE8 /* g_player.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = g_player.h; sourceTree = "<group>"; };
FA3715A4164DD36800230CE8 /* inp_defs_sv.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = inp_defs_sv.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
FA3715A5164DD36800230CE8 /* inp_keybmap_sv.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = inp_keybmap_sv.h; sourceTree = "<group>"; };
FA3715A6164DD36800230CE8 /* inp_main_sv.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = inp_main_sv.h; sourceTree = "<group>"; };
FA3715A7164DD36800230CE8 /* net_game_sv.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = net_game_sv.h; sourceTree = "<group>"; };
FA3715A8164DD36800230CE8 /* net_packetdriver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = net_packetdriver.h; sourceTree = "<group>"; };
FA3715A9164DD36800230CE8 /* net_subh_sv.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = net_subh_sv.h; sourceTree = "<group>"; };
FA3715AA164DD36800230CE8 /* net_udpdriver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = net_udpdriver.h; sourceTree = "<group>"; };
FA3715AB164DD36800230CE8 /* net_util_sv.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = net_util_sv.h; sourceTree = "<group>"; };
FA3715AC164DD36800230CE8 /* sl_util_sv.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = sl_util_sv.h; sourceTree = "<group>"; };
FA3715AF164DD36800230CE8 /* sys_err_sv.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = sys_err_sv.h; sourceTree = "<group>"; };
FA3715B0164DD36800230CE8 /* sys_msg_sv.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = sys_msg_sv.h; sourceTree = "<group>"; };
FA3715B1164DD36800230CE8 /* sys_refframe_sv.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = sys_refframe_sv.h; sourceTree = "<group>"; };
FA3715B2164DD36800230CE8 /* sys_util_sv.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = sys_util_sv.h; sourceTree = "<group>"; };
FA3715B3164DD36800230CE8 /* inp_main_sv.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 0; path = inp_main_sv.cpp; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.cpp; };
FA37167C164DD36800230CE8 /* net_packetdriver.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = net_packetdriver.cpp; sourceTree = "<group>"; };
FA37167D164DD36800230CE8 /* net_util_sv.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = net_util_sv.cpp; sourceTree = "<group>"; };
FA37167E164DD36800230CE8 /* nl_udpdriver.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 0; path = nl_udpdriver.cpp; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.cpp; };
FA37167F164DD36800230CE8 /* sl_util_sv.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = sl_util_sv.cpp; sourceTree = "<group>"; };
FA371680164DD36800230CE8 /* sv_main.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = sv_main.cpp; sourceTree = "<group>"; };
FA371681164DD36800230CE8 /* sys_err_sv.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = sys_err_sv.cpp; sourceTree = "<group>"; };
FA371682164DD36800230CE8 /* sys_msg_sv.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 0; path = sys_msg_sv.cpp; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.cpp; };
FA371683164DD36800230CE8 /* sys_util_sv.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = sys_util_sv.cpp; sourceTree = "<group>"; };
FA371689164DD43600230CE8 /* Parsec Server */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "Parsec Server"; sourceTree = BUILT_PRODUCTS_DIR; };
FA3716D9164DFC9800230CE8 /* libncurses.5.4.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libncurses.5.4.dylib; path = usr/lib/libncurses.5.4.dylib; sourceTree = SDKROOT; };
FA3716DB164E068600230CE8 /* al_initg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = al_initg.h; sourceTree = "<group>"; };
FA5F84F7165478C600AD25B3 /* SDLMain.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDLMain.h; sourceTree = "<group>"; };
FA5F84F8165478C600AD25B3 /* SDLMain.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDLMain.m; sourceTree = "<group>"; };
FA729FFE16E8209A00997EBE /* .bindings.con.swp */ = {isa = PBXFileReference; lastKnownFileType = file; path = .bindings.con.swp; sourceTree = "<group>"; };
FA729FFF16E8209A00997EBE /* bindings.con */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = bindings.con; sourceTree = "<group>"; };
FA72A00016E8209A00997EBE /* strmpldr.con */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = strmpldr.con; sourceTree = "<group>"; };
FA72A00116E8209A00997EBE /* user.con */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = user.con; sourceTree = "<group>"; };
FA72A15B16E8209B00997EBE /* init.con */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = init.con; sourceTree = "<group>"; };
FA72A15D16E8209B00997EBE /* pscdata0.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = pscdata0.dat; sourceTree = "<group>"; };
FA72A15E16E8209B00997EBE /* pscdata1.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = pscdata1.dat; sourceTree = "<group>"; };
FA72A15F16E8209B00997EBE /* pscdata2.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = pscdata2.dat; sourceTree = "<group>"; };
FA72A16016E8209B00997EBE /* pscdata3.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = pscdata3.dat; sourceTree = "<group>"; };
FA72A16116E8209B00997EBE /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README.md; sourceTree = "<group>"; };
FA82524016AD50DD003A9277 /* glew.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glew.h; sourceTree = "<group>"; };
FA84A67B16A7B515005F649F /* stb_image_write.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stb_image_write.h; sourceTree = "<group>"; };
FA84A67F16A7B59F005F649F /* stb_image_write.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = stb_image_write.c; sourceTree = "<group>"; };
FAADE0FC16AB271B005D7250 /* glew.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = glew.c; sourceTree = "<group>"; };
FAADE0FE16AB271B005D7250 /* glxew.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = glxew.h; sourceTree = "<group>"; };
FAADE0FF16AB271B005D7250 /* wglew.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wglew.h; sourceTree = "<group>"; };
FAB135B4164DAB73006CBB88 /* aud_sdlmixer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 0; path = aud_sdlmixer.cpp; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.cpp; };
FAB135B6164DAB97006CBB88 /* inp_keyn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = inp_keyn.h; sourceTree = "<group>"; };
FAB135B8164DAFA0006CBB88 /* keys_sdl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = keys_sdl.h; sourceTree = "<group>"; };
FAB135B9164DAFA0006CBB88 /* keys_server.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = keys_server.h; sourceTree = "<group>"; };
FAB135BE164DB2CE006CBB88 /* parsec.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = parsec.icns; sourceTree = SOURCE_ROOT; };
FAB135C0164DB2D4006CBB88 /* con.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = con.icns; sourceTree = SOURCE_ROOT; };
FAB135C1164DB2D4006CBB88 /* dat.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = dat.icns; sourceTree = SOURCE_ROOT; };
FAB42ED916F819B40017E7FD /* CREDITS */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = CREDITS; path = ../CREDITS; sourceTree = "<group>"; };
FAB42EDB16F819B80017E7FD /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = "<group>"; };
FAB42EDD16F819BC0017E7FD /* LICENSE.readme */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = LICENSE.readme; path = ../LICENSE.readme; sourceTree = "<group>"; };
FAB6A4B816B666CA00052EF2 /* SDL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL.framework; path = /Library/Frameworks/SDL.framework; sourceTree = "<absolute>"; };
FAB6A4BA16B666CF00052EF2 /* SDL_mixer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL_mixer.framework; path = /Library/Frameworks/SDL_mixer.framework; sourceTree = "<absolute>"; };
FABCE934163C86F50030912B /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = System/Library/Frameworks/OpenGL.framework; sourceTree = SDKROOT; };
FABCE936163C876A0030912B /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
FAC8E8D716F3FDD2004DADF3 /* LICENSE.artwork_sound */ = {isa = PBXFileReference; lastKnownFileType = text; path = LICENSE.artwork_sound; sourceTree = "<group>"; };
FAD2E087168BC22400E3EE7B /* _detail.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = _detail.hpp; sourceTree = "<group>"; };
FAD2E088168BC22400E3EE7B /* _fixes.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = _fixes.hpp; sourceTree = "<group>"; };
FAD2E089168BC22400E3EE7B /* _swizzle.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = _swizzle.hpp; sourceTree = "<group>"; };
FAD2E08A168BC22400E3EE7B /* _swizzle_func.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = _swizzle_func.hpp; sourceTree = "<group>"; };
FAD2E08B168BC22400E3EE7B /* _vectorize.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = _vectorize.hpp; sourceTree = "<group>"; };
FAD2E08D168BC22400E3EE7B /* func_common.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = func_common.hpp; sourceTree = "<group>"; };
FAD2E08E168BC22400E3EE7B /* func_common.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = func_common.inl; sourceTree = "<group>"; };
FAD2E08F168BC22400E3EE7B /* func_exponential.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = func_exponential.hpp; sourceTree = "<group>"; };
FAD2E090168BC22400E3EE7B /* func_exponential.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = func_exponential.inl; sourceTree = "<group>"; };
FAD2E091168BC22400E3EE7B /* func_geometric.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = func_geometric.hpp; sourceTree = "<group>"; };
FAD2E092168BC22400E3EE7B /* func_geometric.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = func_geometric.inl; sourceTree = "<group>"; };
FAD2E093168BC22400E3EE7B /* func_integer.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = func_integer.hpp; sourceTree = "<group>"; };
FAD2E094168BC22400E3EE7B /* func_integer.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = func_integer.inl; sourceTree = "<group>"; };
FAD2E095168BC22400E3EE7B /* func_matrix.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = func_matrix.hpp; sourceTree = "<group>"; };
FAD2E096168BC22400E3EE7B /* func_matrix.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = func_matrix.inl; sourceTree = "<group>"; };
FAD2E097168BC22400E3EE7B /* func_noise.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = func_noise.hpp; sourceTree = "<group>"; };
FAD2E098168BC22400E3EE7B /* func_noise.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = func_noise.inl; sourceTree = "<group>"; };
FAD2E099168BC22400E3EE7B /* func_packing.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = func_packing.hpp; sourceTree = "<group>"; };
FAD2E09A168BC22400E3EE7B /* func_packing.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = func_packing.inl; sourceTree = "<group>"; };
FAD2E09B168BC22400E3EE7B /* func_trigonometric.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = func_trigonometric.hpp; sourceTree = "<group>"; };
FAD2E09C168BC22400E3EE7B /* func_trigonometric.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = func_trigonometric.inl; sourceTree = "<group>"; };
FAD2E09D168BC22400E3EE7B /* func_vector_relational.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = func_vector_relational.hpp; sourceTree = "<group>"; };
FAD2E09E168BC22400E3EE7B /* func_vector_relational.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = func_vector_relational.inl; sourceTree = "<group>"; };
FAD2E09F168BC22400E3EE7B /* hint.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = hint.hpp; sourceTree = "<group>"; };
FAD2E0A0168BC22400E3EE7B /* intrinsic_common.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = intrinsic_common.hpp; sourceTree = "<group>"; };
FAD2E0A1168BC22400E3EE7B /* intrinsic_common.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = intrinsic_common.inl; sourceTree = "<group>"; };
FAD2E0A2168BC22400E3EE7B /* intrinsic_exponential.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = intrinsic_exponential.hpp; sourceTree = "<group>"; };
FAD2E0A3168BC22400E3EE7B /* intrinsic_exponential.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = intrinsic_exponential.inl; sourceTree = "<group>"; };
FAD2E0A4168BC22400E3EE7B /* intrinsic_geometric.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = intrinsic_geometric.hpp; sourceTree = "<group>"; };
FAD2E0A5168BC22400E3EE7B /* intrinsic_geometric.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = intrinsic_geometric.inl; sourceTree = "<group>"; };
FAD2E0A6168BC22400E3EE7B /* intrinsic_matrix.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = intrinsic_matrix.hpp; sourceTree = "<group>"; };
FAD2E0A7168BC22400E3EE7B /* intrinsic_matrix.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = intrinsic_matrix.inl; sourceTree = "<group>"; };
FAD2E0A8168BC22400E3EE7B /* intrinsic_trigonometric.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = intrinsic_trigonometric.hpp; sourceTree = "<group>"; };
FAD2E0A9168BC22400E3EE7B /* intrinsic_trigonometric.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = intrinsic_trigonometric.inl; sourceTree = "<group>"; };
FAD2E0AA168BC22400E3EE7B /* intrinsic_vector_relational.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = intrinsic_vector_relational.hpp; sourceTree = "<group>"; };
FAD2E0AB168BC22400E3EE7B /* intrinsic_vector_relational.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = intrinsic_vector_relational.inl; sourceTree = "<group>"; };
FAD2E0AC168BC22400E3EE7B /* setup.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = setup.hpp; sourceTree = "<group>"; };
FAD2E0AD168BC22400E3EE7B /* type.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = type.hpp; sourceTree = "<group>"; };
FAD2E0AE168BC22400E3EE7B /* type_float.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = type_float.hpp; sourceTree = "<group>"; };
FAD2E0AF168BC22400E3EE7B /* type_gentype.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = type_gentype.hpp; sourceTree = "<group>"; };
FAD2E0B0168BC22400E3EE7B /* type_gentype.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = type_gentype.inl; sourceTree = "<group>"; };
FAD2E0B1168BC22400E3EE7B /* type_half.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = type_half.hpp; sourceTree = "<group>"; };
FAD2E0B2168BC22400E3EE7B /* type_half.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = type_half.inl; sourceTree = "<group>"; };
FAD2E0B3168BC22400E3EE7B /* type_int.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = type_int.hpp; sourceTree = "<group>"; };
FAD2E0B4168BC22400E3EE7B /* type_mat.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = type_mat.hpp; sourceTree = "<group>"; };
FAD2E0B5168BC22400E3EE7B /* type_mat.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = type_mat.inl; sourceTree = "<group>"; };
FAD2E0B6168BC22400E3EE7B /* type_mat2x2.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = type_mat2x2.hpp; sourceTree = "<group>"; };
FAD2E0B7168BC22400E3EE7B /* type_mat2x2.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = type_mat2x2.inl; sourceTree = "<group>"; };
FAD2E0B8168BC22400E3EE7B /* type_mat2x3.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = type_mat2x3.hpp; sourceTree = "<group>"; };
FAD2E0B9168BC22400E3EE7B /* type_mat2x3.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = type_mat2x3.inl; sourceTree = "<group>"; };
FAD2E0BA168BC22400E3EE7B /* type_mat2x4.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = type_mat2x4.hpp; sourceTree = "<group>"; };
FAD2E0BB168BC22400E3EE7B /* type_mat2x4.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = type_mat2x4.inl; sourceTree = "<group>"; };
FAD2E0BC168BC22400E3EE7B /* type_mat3x2.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = type_mat3x2.hpp; sourceTree = "<group>"; };
FAD2E0BD168BC22400E3EE7B /* type_mat3x2.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = type_mat3x2.inl; sourceTree = "<group>"; };
FAD2E0BE168BC22400E3EE7B /* type_mat3x3.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = type_mat3x3.hpp; sourceTree = "<group>"; };
FAD2E0BF168BC22400E3EE7B /* type_mat3x3.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = type_mat3x3.inl; sourceTree = "<group>"; };
FAD2E0C0168BC22400E3EE7B /* type_mat3x4.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = type_mat3x4.hpp; sourceTree = "<group>"; };
FAD2E0C1168BC22400E3EE7B /* type_mat3x4.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = type_mat3x4.inl; sourceTree = "<group>"; };
FAD2E0C2168BC22400E3EE7B /* type_mat4x2.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = type_mat4x2.hpp; sourceTree = "<group>"; };
FAD2E0C3168BC22400E3EE7B /* type_mat4x2.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = type_mat4x2.inl; sourceTree = "<group>"; };
FAD2E0C4168BC22400E3EE7B /* type_mat4x3.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = type_mat4x3.hpp; sourceTree = "<group>"; };
FAD2E0C5168BC22400E3EE7B /* type_mat4x3.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = type_mat4x3.inl; sourceTree = "<group>"; };
FAD2E0C6168BC22400E3EE7B /* type_mat4x4.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = type_mat4x4.hpp; sourceTree = "<group>"; };
FAD2E0C7168BC22400E3EE7B /* type_mat4x4.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = type_mat4x4.inl; sourceTree = "<group>"; };
FAD2E0C8168BC22400E3EE7B /* type_size.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = type_size.hpp; sourceTree = "<group>"; };
FAD2E0C9168BC22400E3EE7B /* type_vec.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = type_vec.hpp; sourceTree = "<group>"; };
FAD2E0CA168BC22400E3EE7B /* type_vec.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = type_vec.inl; sourceTree = "<group>"; };
FAD2E0CB168BC22400E3EE7B /* type_vec1.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = type_vec1.hpp; sourceTree = "<group>"; };
FAD2E0CC168BC22400E3EE7B /* type_vec1.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = type_vec1.inl; sourceTree = "<group>"; };
FAD2E0CD168BC22400E3EE7B /* type_vec2.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = type_vec2.hpp; sourceTree = "<group>"; };
FAD2E0CE168BC22400E3EE7B /* type_vec2.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = type_vec2.inl; sourceTree = "<group>"; };
FAD2E0CF168BC22400E3EE7B /* type_vec3.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = type_vec3.hpp; sourceTree = "<group>"; };
FAD2E0D0168BC22400E3EE7B /* type_vec3.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = type_vec3.inl; sourceTree = "<group>"; };
FAD2E0D1168BC22400E3EE7B /* type_vec4.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = type_vec4.hpp; sourceTree = "<group>"; };
FAD2E0D2168BC22400E3EE7B /* type_vec4.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = type_vec4.inl; sourceTree = "<group>"; };
FAD2E0D3168BC22400E3EE7B /* ext.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = ext.hpp; sourceTree = "<group>"; };
FAD2E0D4168BC22400E3EE7B /* glm.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = glm.hpp; sourceTree = "<group>"; };
FAD2E0D6168BC22400E3EE7B /* constants.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = constants.hpp; sourceTree = "<group>"; };
FAD2E0D7168BC22400E3EE7B /* constants.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = constants.inl; sourceTree = "<group>"; };
FAD2E0D8168BC22400E3EE7B /* epsilon.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = epsilon.hpp; sourceTree = "<group>"; };
FAD2E0D9168BC22400E3EE7B /* epsilon.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = epsilon.inl; sourceTree = "<group>"; };
FAD2E0DA168BC22400E3EE7B /* half_float.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = half_float.hpp; sourceTree = "<group>"; };
FAD2E0DB168BC22400E3EE7B /* half_float.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = half_float.inl; sourceTree = "<group>"; };
FAD2E0DC168BC22400E3EE7B /* matrix_access.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = matrix_access.hpp; sourceTree = "<group>"; };
FAD2E0DD168BC22400E3EE7B /* matrix_access.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = matrix_access.inl; sourceTree = "<group>"; };
FAD2E0DE168BC22400E3EE7B /* matrix_integer.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = matrix_integer.hpp; sourceTree = "<group>"; };
FAD2E0DF168BC22400E3EE7B /* matrix_inverse.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = matrix_inverse.hpp; sourceTree = "<group>"; };
FAD2E0E0168BC22400E3EE7B /* matrix_inverse.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = matrix_inverse.inl; sourceTree = "<group>"; };
FAD2E0E1168BC22400E3EE7B /* matrix_transform.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = matrix_transform.hpp; sourceTree = "<group>"; };
FAD2E0E2168BC22400E3EE7B /* matrix_transform.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = matrix_transform.inl; sourceTree = "<group>"; };
FAD2E0E3168BC22400E3EE7B /* noise.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = noise.hpp; sourceTree = "<group>"; };
FAD2E0E4168BC22400E3EE7B /* noise.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = noise.inl; sourceTree = "<group>"; };
FAD2E0E5168BC22400E3EE7B /* quaternion.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = quaternion.hpp; sourceTree = "<group>"; };
FAD2E0E6168BC22400E3EE7B /* quaternion.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = quaternion.inl; sourceTree = "<group>"; };
FAD2E0E7168BC22400E3EE7B /* random.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = random.hpp; sourceTree = "<group>"; };
FAD2E0E8168BC22400E3EE7B /* random.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = random.inl; sourceTree = "<group>"; };
FAD2E0E9168BC22400E3EE7B /* reciprocal.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = reciprocal.hpp; sourceTree = "<group>"; };
FAD2E0EA168BC22400E3EE7B /* reciprocal.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = reciprocal.inl; sourceTree = "<group>"; };
FAD2E0EB168BC22400E3EE7B /* swizzle.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = swizzle.hpp; sourceTree = "<group>"; };
FAD2E0EC168BC22400E3EE7B /* swizzle.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = swizzle.inl; sourceTree = "<group>"; };
FAD2E0ED168BC22400E3EE7B /* type_precision.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = type_precision.hpp; sourceTree = "<group>"; };
FAD2E0EE168BC22400E3EE7B /* type_precision.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = type_precision.inl; sourceTree = "<group>"; };
FAD2E0EF168BC22400E3EE7B /* type_ptr.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = type_ptr.hpp; sourceTree = "<group>"; };
FAD2E0F0168BC22400E3EE7B /* type_ptr.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = type_ptr.inl; sourceTree = "<group>"; };
FAD2E0F1168BC22400E3EE7B /* ulp.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = ulp.hpp; sourceTree = "<group>"; };
FAD2E0F2168BC22400E3EE7B /* ulp.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = ulp.inl; sourceTree = "<group>"; };
FAD2E0F4168BC22400E3EE7B /* associated_min_max.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = associated_min_max.hpp; sourceTree = "<group>"; };
FAD2E0F5168BC22400E3EE7B /* associated_min_max.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = associated_min_max.inl; sourceTree = "<group>"; };
FAD2E0F6168BC22400E3EE7B /* bit.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = bit.hpp; sourceTree = "<group>"; };
FAD2E0F7168BC22400E3EE7B /* bit.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = bit.inl; sourceTree = "<group>"; };
FAD2E0F8168BC22400E3EE7B /* closest_point.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = closest_point.hpp; sourceTree = "<group>"; };
FAD2E0F9168BC22400E3EE7B /* closest_point.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = closest_point.inl; sourceTree = "<group>"; };
FAD2E0FA168BC22400E3EE7B /* color_cast.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = color_cast.hpp; sourceTree = "<group>"; };
FAD2E0FB168BC22400E3EE7B /* color_cast.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = color_cast.inl; sourceTree = "<group>"; };
FAD2E0FC168BC22400E3EE7B /* color_space.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = color_space.hpp; sourceTree = "<group>"; };
FAD2E0FD168BC22400E3EE7B /* color_space.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = color_space.inl; sourceTree = "<group>"; };
FAD2E0FE168BC22400E3EE7B /* color_space_YCoCg.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = color_space_YCoCg.hpp; sourceTree = "<group>"; };
FAD2E0FF168BC22400E3EE7B /* color_space_YCoCg.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = color_space_YCoCg.inl; sourceTree = "<group>"; };
FAD2E100168BC22400E3EE7B /* compatibility.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = compatibility.hpp; sourceTree = "<group>"; };
FAD2E101168BC22400E3EE7B /* compatibility.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = compatibility.inl; sourceTree = "<group>"; };
FAD2E102168BC22400E3EE7B /* component_wise.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = component_wise.hpp; sourceTree = "<group>"; };
FAD2E103168BC22400E3EE7B /* component_wise.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = component_wise.inl; sourceTree = "<group>"; };
FAD2E104168BC22400E3EE7B /* constants.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = constants.hpp; sourceTree = "<group>"; };
FAD2E105168BC22400E3EE7B /* epsilon.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = epsilon.hpp; sourceTree = "<group>"; };
FAD2E106168BC22400E3EE7B /* euler_angles.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = euler_angles.hpp; sourceTree = "<group>"; };
FAD2E107168BC22400E3EE7B /* euler_angles.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = euler_angles.inl; sourceTree = "<group>"; };
FAD2E108168BC22400E3EE7B /* extend.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = extend.hpp; sourceTree = "<group>"; };
FAD2E109168BC22400E3EE7B /* extend.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = extend.inl; sourceTree = "<group>"; };
FAD2E10A168BC22400E3EE7B /* extented_min_max.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = extented_min_max.hpp; sourceTree = "<group>"; };
FAD2E10B168BC22400E3EE7B /* extented_min_max.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = extented_min_max.inl; sourceTree = "<group>"; };
FAD2E10C168BC22400E3EE7B /* fast_exponential.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = fast_exponential.hpp; sourceTree = "<group>"; };
FAD2E10D168BC22400E3EE7B /* fast_exponential.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = fast_exponential.inl; sourceTree = "<group>"; };
FAD2E10E168BC22400E3EE7B /* fast_square_root.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = fast_square_root.hpp; sourceTree = "<group>"; };
FAD2E10F168BC22400E3EE7B /* fast_square_root.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = fast_square_root.inl; sourceTree = "<group>"; };
FAD2E110168BC22400E3EE7B /* fast_trigonometry.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = fast_trigonometry.hpp; sourceTree = "<group>"; };
FAD2E111168BC22400E3EE7B /* fast_trigonometry.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = fast_trigonometry.inl; sourceTree = "<group>"; };
FAD2E112168BC22400E3EE7B /* gradient_paint.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = gradient_paint.hpp; sourceTree = "<group>"; };
FAD2E113168BC22400E3EE7B /* gradient_paint.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = gradient_paint.inl; sourceTree = "<group>"; };
FAD2E114168BC22400E3EE7B /* handed_coordinate_space.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = handed_coordinate_space.hpp; sourceTree = "<group>"; };
FAD2E115168BC22400E3EE7B /* handed_coordinate_space.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = handed_coordinate_space.inl; sourceTree = "<group>"; };
FAD2E116168BC22400E3EE7B /* inertia.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = inertia.hpp; sourceTree = "<group>"; };
FAD2E117168BC22400E3EE7B /* inertia.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = inertia.inl; sourceTree = "<group>"; };
FAD2E118168BC22400E3EE7B /* int_10_10_10_2.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = int_10_10_10_2.hpp; sourceTree = "<group>"; };
FAD2E119168BC22400E3EE7B /* int_10_10_10_2.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = int_10_10_10_2.inl; sourceTree = "<group>"; };
FAD2E11A168BC22400E3EE7B /* integer.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = integer.hpp; sourceTree = "<group>"; };
FAD2E11B168BC22400E3EE7B /* integer.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = integer.inl; sourceTree = "<group>"; };
FAD2E11C168BC22400E3EE7B /* intersect.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = intersect.hpp; sourceTree = "<group>"; };
FAD2E11D168BC22400E3EE7B /* intersect.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = intersect.inl; sourceTree = "<group>"; };
FAD2E11E168BC22400E3EE7B /* log_base.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = log_base.hpp; sourceTree = "<group>"; };
FAD2E11F168BC22400E3EE7B /* log_base.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = log_base.inl; sourceTree = "<group>"; };
FAD2E120168BC22400E3EE7B /* matrix_cross_product.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = matrix_cross_product.hpp; sourceTree = "<group>"; };
FAD2E121168BC22400E3EE7B /* matrix_cross_product.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = matrix_cross_product.inl; sourceTree = "<group>"; };
FAD2E122168BC22400E3EE7B /* matrix_interpolation.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = matrix_interpolation.hpp; sourceTree = "<group>"; };
FAD2E123168BC22400E3EE7B /* matrix_interpolation.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = matrix_interpolation.inl; sourceTree = "<group>"; };
FAD2E124168BC22400E3EE7B /* matrix_major_storage.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = matrix_major_storage.hpp; sourceTree = "<group>"; };
FAD2E125168BC22400E3EE7B /* matrix_major_storage.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = matrix_major_storage.inl; sourceTree = "<group>"; };
FAD2E126168BC22400E3EE7B /* matrix_operation.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = matrix_operation.hpp; sourceTree = "<group>"; };
FAD2E127168BC22400E3EE7B /* matrix_operation.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = matrix_operation.inl; sourceTree = "<group>"; };
FAD2E128168BC22400E3EE7B /* matrix_query.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = matrix_query.hpp; sourceTree = "<group>"; };
FAD2E129168BC22400E3EE7B /* matrix_query.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = matrix_query.inl; sourceTree = "<group>"; };
FAD2E12A168BC22400E3EE7B /* mixed_product.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = mixed_product.hpp; sourceTree = "<group>"; };
FAD2E12B168BC22400E3EE7B /* mixed_product.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = mixed_product.inl; sourceTree = "<group>"; };
FAD2E12C168BC22400E3EE7B /* multiple.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = multiple.hpp; sourceTree = "<group>"; };
FAD2E12D168BC22400E3EE7B /* multiple.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = multiple.inl; sourceTree = "<group>"; };
FAD2E12E168BC22400E3EE7B /* noise.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = noise.hpp; sourceTree = "<group>"; };
FAD2E12F168BC22400E3EE7B /* norm.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = norm.hpp; sourceTree = "<group>"; };
FAD2E130168BC22400E3EE7B /* norm.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = norm.inl; sourceTree = "<group>"; };
FAD2E131168BC22400E3EE7B /* normal.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = normal.hpp; sourceTree = "<group>"; };
FAD2E132168BC22400E3EE7B /* normal.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = normal.inl; sourceTree = "<group>"; };
FAD2E133168BC22400E3EE7B /* normalize_dot.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = normalize_dot.hpp; sourceTree = "<group>"; };
FAD2E134168BC22400E3EE7B /* normalize_dot.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = normalize_dot.inl; sourceTree = "<group>"; };
FAD2E135168BC22400E3EE7B /* number_precision.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = number_precision.hpp; sourceTree = "<group>"; };
FAD2E136168BC22400E3EE7B /* number_precision.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = number_precision.inl; sourceTree = "<group>"; };
FAD2E137168BC22400E3EE7B /* ocl_type.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = ocl_type.hpp; sourceTree = "<group>"; };
FAD2E138168BC22400E3EE7B /* ocl_type.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = ocl_type.inl; sourceTree = "<group>"; };
FAD2E139168BC22400E3EE7B /* optimum_pow.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = optimum_pow.hpp; sourceTree = "<group>"; };
FAD2E13A168BC22400E3EE7B /* optimum_pow.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = optimum_pow.inl; sourceTree = "<group>"; };
FAD2E13B168BC22400E3EE7B /* orthonormalize.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = orthonormalize.hpp; sourceTree = "<group>"; };
FAD2E13C168BC22400E3EE7B /* orthonormalize.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = orthonormalize.inl; sourceTree = "<group>"; };
FAD2E13D168BC22400E3EE7B /* perpendicular.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = perpendicular.hpp; sourceTree = "<group>"; };
FAD2E13E168BC22400E3EE7B /* perpendicular.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = perpendicular.inl; sourceTree = "<group>"; };
FAD2E13F168BC22400E3EE7B /* polar_coordinates.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = polar_coordinates.hpp; sourceTree = "<group>"; };
FAD2E140168BC22400E3EE7B /* polar_coordinates.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = polar_coordinates.inl; sourceTree = "<group>"; };
FAD2E141168BC22400E3EE7B /* projection.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = projection.hpp; sourceTree = "<group>"; };
FAD2E142168BC22400E3EE7B /* projection.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = projection.inl; sourceTree = "<group>"; };
FAD2E143168BC22400E3EE7B /* quaternion.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = quaternion.hpp; sourceTree = "<group>"; };
FAD2E144168BC22400E3EE7B /* quaternion.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = quaternion.inl; sourceTree = "<group>"; };
FAD2E145168BC22400E3EE7B /* random.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = random.hpp; sourceTree = "<group>"; };
FAD2E146168BC22400E3EE7B /* raw_data.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = raw_data.hpp; sourceTree = "<group>"; };
FAD2E147168BC22400E3EE7B /* raw_data.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = raw_data.inl; sourceTree = "<group>"; };
FAD2E148168BC22400E3EE7B /* reciprocal.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = reciprocal.hpp; sourceTree = "<group>"; };
FAD2E149168BC22400E3EE7B /* rotate_vector.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = rotate_vector.hpp; sourceTree = "<group>"; };
FAD2E14A168BC22400E3EE7B /* rotate_vector.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = rotate_vector.inl; sourceTree = "<group>"; };
FAD2E14B168BC22400E3EE7B /* simd_mat4.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = simd_mat4.hpp; sourceTree = "<group>"; };
FAD2E14C168BC22400E3EE7B /* simd_mat4.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = simd_mat4.inl; sourceTree = "<group>"; };
FAD2E14D168BC22400E3EE7B /* simd_vec4.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = simd_vec4.hpp; sourceTree = "<group>"; };
FAD2E14E168BC22400E3EE7B /* simd_vec4.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = simd_vec4.inl; sourceTree = "<group>"; };
FAD2E14F168BC22400E3EE7B /* spline.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = spline.hpp; sourceTree = "<group>"; };
FAD2E150168BC22400E3EE7B /* spline.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = spline.inl; sourceTree = "<group>"; };
FAD2E151168BC22400E3EE7B /* std_based_type.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = std_based_type.hpp; sourceTree = "<group>"; };
FAD2E152168BC22400E3EE7B /* std_based_type.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = std_based_type.inl; sourceTree = "<group>"; };
FAD2E153168BC22400E3EE7B /* string_cast.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = string_cast.hpp; sourceTree = "<group>"; };
FAD2E154168BC22400E3EE7B /* string_cast.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = string_cast.inl; sourceTree = "<group>"; };
FAD2E155168BC22400E3EE7B /* transform.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = transform.hpp; sourceTree = "<group>"; };
FAD2E156168BC22400E3EE7B /* transform.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = transform.inl; sourceTree = "<group>"; };
FAD2E157168BC22400E3EE7B /* transform2.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = transform2.hpp; sourceTree = "<group>"; };
FAD2E158168BC22400E3EE7B /* transform2.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = transform2.inl; sourceTree = "<group>"; };
FAD2E159168BC22400E3EE7B /* ulp.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = ulp.hpp; sourceTree = "<group>"; };
FAD2E15A168BC22400E3EE7B /* unsigned_int.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = unsigned_int.hpp; sourceTree = "<group>"; };
FAD2E15B168BC22400E3EE7B /* unsigned_int.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = unsigned_int.inl; sourceTree = "<group>"; };
FAD2E15C168BC22400E3EE7B /* vec1.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = vec1.hpp; sourceTree = "<group>"; };
FAD2E15D168BC22400E3EE7B /* vec1.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = vec1.inl; sourceTree = "<group>"; };
FAD2E15E168BC22400E3EE7B /* vector_access.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = vector_access.hpp; sourceTree = "<group>"; };
FAD2E15F168BC22400E3EE7B /* vector_access.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = vector_access.inl; sourceTree = "<group>"; };
FAD2E160168BC22400E3EE7B /* vector_angle.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = vector_angle.hpp; sourceTree = "<group>"; };
FAD2E161168BC22400E3EE7B /* vector_angle.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = vector_angle.inl; sourceTree = "<group>"; };
FAD2E162168BC22400E3EE7B /* vector_query.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = vector_query.hpp; sourceTree = "<group>"; };
FAD2E163168BC22400E3EE7B /* vector_query.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = vector_query.inl; sourceTree = "<group>"; };
FAD2E164168BC22400E3EE7B /* verbose_operator.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = verbose_operator.hpp; sourceTree = "<group>"; };
FAD2E165168BC22400E3EE7B /* verbose_operator.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = verbose_operator.inl; sourceTree = "<group>"; };
FAD2E166168BC22400E3EE7B /* wrap.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = wrap.hpp; sourceTree = "<group>"; };
FAD2E167168BC22400E3EE7B /* wrap.inl */ = {isa = PBXFileReference; lastKnownFileType = text; path = wrap.inl; sourceTree = "<group>"; };
FAD2E169168BC22400E3EE7B /* xstream.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = xstream.hpp; sourceTree = "<group>"; };
FAE293FE1655A28700D00541 /* sw_path.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sw_path.cpp; sourceTree = "<group>"; };
FAE293FF1655A28800D00541 /* sw_timer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sw_timer.cpp; sourceTree = "<group>"; };
FAE294021655A2A700D00541 /* platform_sdl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = platform_sdl.h; sourceTree = "<group>"; };
FAE294031655A2A800D00541 /* sw_path.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sw_path.h; sourceTree = "<group>"; };
FAE294041655A2A900D00541 /* sw_timer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sw_timer.h; sourceTree = "<group>"; };
FAE294051655A86C00D00541 /* nw_udp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = nw_udp.cpp; sourceTree = "<group>"; };
FAE294091655AA0B00D00541 /* nw_udp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nw_udp.h; sourceTree = "<group>"; };
FAE69DE116A7405000C1AC79 /* stb_image.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stb_image.h; sourceTree = "<group>"; };
FAE69DE216A74C4100C1AC79 /* stb_image.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = stb_image.cpp; sourceTree = "<group>"; };
FAE69E0716A7628600C1AC79 /* g_emp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = g_emp.h; sourceTree = "<group>"; };
FAE69E1216A7630700C1AC79 /* MasterServer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MasterServer.h; sourceTree = "<group>"; };
FAE69E1316A7630700C1AC79 /* MasterServerItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MasterServerItem.h; sourceTree = "<group>"; };
FAE69E1416A7631200C1AC79 /* MasterServer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MasterServer.cpp; sourceTree = "<group>"; };
FAE69E1516A7631200C1AC79 /* MasterServerItem.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MasterServerItem.cpp; sourceTree = "<group>"; };
FAFE57FB16791C1100A31DAA /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = System/Library/Frameworks/CoreFoundation.framework; sourceTree = SDKROOT; };
FAFEE693163BDA5E0056CECD /* Parsec.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Parsec.app; sourceTree = BUILT_PRODUCTS_DIR; };
FAFEE6A0163BDA5E0056CECD /* Parsec-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Parsec-Info.plist"; sourceTree = "<group>"; };
FAFEE6A2163BDA5E0056CECD /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
FAFEF87D163BE1CF0056CECD /* con_arg.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 0; path = con_arg.cpp; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.cpp; };
FAFEF87E163BE1CF0056CECD /* con_tab.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = con_tab.cpp; sourceTree = "<group>"; };
FAFEF87F163BE1CF0056CECD /* con_vald.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = con_vald.cpp; sourceTree = "<group>"; };
FAFEF880163BE1CF0056CECD /* debug.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 0; path = debug.cpp; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.cpp; };
FAFEF881163BE1CF0056CECD /* e_modulemanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = e_modulemanager.cpp; sourceTree = "<group>"; };
FAFEF882163BE1CF0056CECD /* e_relist.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = e_relist.cpp; sourceTree = "<group>"; };
FAFEF883163BE1CF0056CECD /* g_extra.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = g_extra.cpp; sourceTree = "<group>"; };
FAFEF885163BE1CF0056CECD /* con_arg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = con_arg.h; sourceTree = "<group>"; };
FAFEF886163BE1CF0056CECD /* con_tab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = con_tab.h; sourceTree = "<group>"; };
FAFEF887163BE1CF0056CECD /* con_vald.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = con_vald.h; sourceTree = "<group>"; };
FAFEF888163BE1CF0056CECD /* config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = config.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
FAFEF889163BE1CF0056CECD /* debug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = debug.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
FAFEF88A163BE1CF0056CECD /* debugsys.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = debugsys.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
FAFEF88D163BE1CF0056CECD /* def_prot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = def_prot.h; sourceTree = "<group>"; };
FAFEF890163BE1CF0056CECD /* e_modulemanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = e_modulemanager.h; sourceTree = "<group>"; };
FAFEF891163BE1CF0056CECD /* e_relist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = e_relist.h; sourceTree = "<group>"; };
FAFEF892163BE1CF0056CECD /* g_extra.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = g_extra.h; sourceTree = "<group>"; };
FAFEF893163BE1CF0056CECD /* g_shipobject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = g_shipobject.h; sourceTree = "<group>"; };
FAFEF894163BE1CF0056CECD /* g_stgate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = g_stgate.h; sourceTree = "<group>"; };
FAFEF895163BE1CF0056CECD /* gd_bmap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gd_bmap.h; sourceTree = "<group>"; };
FAFEF896163BE1CF0056CECD /* gd_color.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gd_color.h; sourceTree = "<group>"; };
FAFEF897163BE1CF0056CECD /* gd_const.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gd_const.h; sourceTree = "<group>"; };
FAFEF898163BE1CF0056CECD /* gd_font.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gd_font.h; sourceTree = "<group>"; };
FAFEF899163BE1CF0056CECD /* gd_heads.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gd_heads.h; sourceTree = "<group>"; };
FAFEF89A163BE1CF0056CECD /* gd_help.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gd_help.h; sourceTree = "<group>"; };
FAFEF89B163BE1CF0056CECD /* gd_host.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gd_host.h; sourceTree = "<group>"; };
FAFEF89C163BE1CF0056CECD /* gd_limit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gd_limit.h; sourceTree = "<group>"; };
FAFEF89D163BE1CF0056CECD /* gd_tabs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gd_tabs.h; sourceTree = "<group>"; };
FAFEF89E163BE1CF0056CECD /* gd_type.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = gd_type.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
FAFEF89F163BE1CF0056CECD /* general.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = general.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
FAFEF8A0163BE1CF0056CECD /* globals.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = globals.h; sourceTree = "<group>"; };
FAFEF8A1163BE1CF0056CECD /* keycodes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = keycodes.h; sourceTree = "<group>"; };
FAFEF8A4163BE1CF0056CECD /* linkinfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = linkinfo.h; sourceTree = "<group>"; };
FAFEF8A5163BE1CF0056CECD /* net_conf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = net_conf.h; sourceTree = "<group>"; };
FAFEF8A6163BE1CF0056CECD /* net_csdf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = net_csdf.h; sourceTree = "<group>"; };
FAFEF8A7163BE1CF0056CECD /* net_defs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = net_defs.h; sourceTree = "<group>"; };
FAFEF8A8163BE1CF0056CECD /* net_limits.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = net_limits.h; sourceTree = "<group>"; };
FAFEF8A9163BE1CF0056CECD /* net_pckt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = net_pckt.h; sourceTree = "<group>"; };
FAFEF8AA163BE1CF0056CECD /* net_pckt_gmsv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = net_pckt_gmsv.h; sourceTree = "<group>"; };
FAFEF8AB163BE1CF0056CECD /* net_ports.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = net_ports.h; sourceTree = "<group>"; };
FAFEF8AC163BE1CF0056CECD /* net_stream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = net_stream.h; sourceTree = "<group>"; };
FAFEF8AD163BE1CF0056CECD /* net_swap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = net_swap.h; sourceTree = "<group>"; };
FAFEF8AE163BE1CF0056CECD /* net_util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = net_util.h; sourceTree = "<group>"; };
FAFEF8AF163BE1CF0056CECD /* net_wrap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = net_wrap.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
FAFEF8B0163BE1CF0056CECD /* obj_clas.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = obj_clas.h; sourceTree = "<group>"; };
FAFEF8B1163BE1CF0056CECD /* obj_creg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = obj_creg.h; sourceTree = "<group>"; };
FAFEF8B2163BE1CF0056CECD /* obj_cust.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = obj_cust.h; sourceTree = "<group>"; };
FAFEF8B3163BE1CF0056CECD /* obj_name.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = obj_name.h; sourceTree = "<group>"; };
FAFEF8B4163BE1CF0056CECD /* obj_odt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = obj_odt.h; sourceTree = "<group>"; };
FAFEF8B5163BE1CF0056CECD /* obj_type.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = obj_type.h; sourceTree = "<group>"; };
FAFEF8B6163BE1CF0056CECD /* objstruc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = objstruc.h; sourceTree = "<group>"; };
FAFEF8B7163BE1CF0056CECD /* od_class.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = od_class.h; sourceTree = "<group>"; };
FAFEF8B8163BE1CF0056CECD /* od_geomv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = od_geomv.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
FAFEF8B9163BE1CF0056CECD /* od_masks.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = od_masks.h; sourceTree = "<group>"; };
FAFEF8BA163BE1CF0056CECD /* od_odt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = od_odt.h; sourceTree = "<group>"; };
FAFEF8BB163BE1CF0056CECD /* od_prim.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = od_prim.h; sourceTree = "<group>"; };
FAFEF8BC163BE1CF0056CECD /* od_props.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = od_props.h; sourceTree = "<group>"; };
FAFEF8BD163BE1CF0056CECD /* od_rast.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = od_rast.h; sourceTree = "<group>"; };
FAFEF8BE163BE1CF0056CECD /* od_struc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = od_struc.h; sourceTree = "<group>"; };
FAFEF8BF163BE1CF0056CECD /* od_texdf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = od_texdf.h; sourceTree = "<group>"; };
FAFEF8C0163BE1CF0056CECD /* od_trafo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = od_trafo.h; sourceTree = "<group>"; };
FAFEF8C1163BE1CF0056CECD /* od_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = od_types.h; sourceTree = "<group>"; };
FAFEF8C2163BE1CF0056CECD /* parttype.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = parttype.h; sourceTree = "<group>"; };
FAFEF8C3163BE1CF0056CECD /* platform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = platform.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
FAFEF8C7163BE1CF0056CECD /* sl_path.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sl_path.h; sourceTree = "<group>"; };
FAFEF8C8163BE1CF0056CECD /* sl_timer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = sl_timer.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
FAFEF8CC163BE1CF0056CECD /* sys_date.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sys_date.h; sourceTree = "<group>"; };
FAFEF8CD163BE1CF0056CECD /* sys_defs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = sys_defs.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
FAFEF8CE163BE1CF0056CECD /* sys_file.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = sys_file.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
FAFEF8CF163BE1CF0056CECD /* sys_io.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sys_io.h; sourceTree = "<group>"; };
FAFEF8D0163BE1CF0056CECD /* sys_path.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sys_path.h; sourceTree = "<group>"; };
FAFEF8D1163BE1CF0056CECD /* sys_swap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sys_swap.h; sourceTree = "<group>"; };
FAFEF8D2163BE1CF0056CECD /* utl_bsp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = utl_bsp.h; sourceTree = "<group>"; };
FAFEF8D3163BE1CF0056CECD /* utl_clip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = utl_clip.h; sourceTree = "<group>"; };
FAFEF8D4163BE1CF0056CECD /* utl_clpo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = utl_clpo.h; sourceTree = "<group>"; };
FAFEF8D5163BE1CF0056CECD /* utl_cull.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = utl_cull.h; sourceTree = "<group>"; };
FAFEF8D6163BE1CF0056CECD /* utl_fcos.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = utl_fcos.h; sourceTree = "<group>"; };
FAFEF8D7163BE1CF0056CECD /* utl_fsin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = utl_fsin.h; sourceTree = "<group>"; };
FAFEF8D8163BE1CF0056CECD /* utl_list.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = utl_list.h; sourceTree = "<group>"; };
FAFEF8D9163BE1CF0056CECD /* utl_logfile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = utl_logfile.h; sourceTree = "<group>"; };
FAFEF8DA163BE1CF0056CECD /* utl_math.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = utl_math.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
FAFEF8DB163BE1CF0056CECD /* utl_math2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = utl_math2.h; sourceTree = "<group>"; };
FAFEF8DC163BE1CF0056CECD /* utl_model.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = utl_model.h; sourceTree = "<group>"; };
FAFEF8DE163BE1CF0056CECD /* net_pckt_gmsv.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = net_pckt_gmsv.cpp; sourceTree = "<group>"; };
FAFEF8DF163BE1CF0056CECD /* net_stream.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = net_stream.cpp; sourceTree = "<group>"; };
FAFEF8E0163BE1CF0056CECD /* net_swap.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = net_swap.cpp; sourceTree = "<group>"; };
FAFEF8E1163BE1CF0056CECD /* net_util.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = net_util.cpp; sourceTree = "<group>"; };
FAFEF8E2163BE1CF0056CECD /* net_wrap.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = net_wrap.cpp; sourceTree = "<group>"; };
FAFEF8E3163BE1CF0056CECD /* obj_clas.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = obj_clas.cpp; sourceTree = "<group>"; };
FAFEF8E4163BE1CF0056CECD /* obj_creg.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = obj_creg.cpp; sourceTree = "<group>"; };
FAFEF8E5163BE1CF0056CECD /* obj_cust.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = obj_cust.cpp; sourceTree = "<group>"; };
FAFEF8E6163BE1CF0056CECD /* obj_odt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 0; path = obj_odt.cpp; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.cpp; };
FAFEF8E7163BE1CF0056CECD /* obj_type.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = obj_type.cpp; sourceTree = "<group>"; };
FAFEF8E8163BE1CF0056CECD /* sl_path.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sl_path.cpp; sourceTree = "<group>"; };
FAFEF8E9163BE1CF0056CECD /* sl_timer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sl_timer.cpp; sourceTree = "<group>"; };
FAFEF8ED163BE1CF0056CECD /* sys_date.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sys_date.cpp; sourceTree = "<group>"; };
FAFEF8EE163BE1CF0056CECD /* sys_file.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sys_file.cpp; sourceTree = "<group>"; };
FAFEF8EF163BE1CF0056CECD /* sys_swap.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sys_swap.cpp; sourceTree = "<group>"; };
FAFEF8F0163BE1CF0056CECD /* utl_bsp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = utl_bsp.cpp; sourceTree = "<group>"; };
FAFEF8F1163BE1CF0056CECD /* utl_clip.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = utl_clip.cpp; sourceTree = "<group>"; };
FAFEF8F2163BE1CF0056CECD /* utl_clpo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = utl_clpo.cpp; sourceTree = "<group>"; };
FAFEF8F3163BE1CF0056CECD /* utl_cull.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = utl_cull.cpp; sourceTree = "<group>"; };
FAFEF8F4163BE1CF0056CECD /* utl_logfile.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = utl_logfile.cpp; sourceTree = "<group>"; };
FAFEF8F5163BE1CF0056CECD /* utl_math.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = utl_math.cpp; sourceTree = "<group>"; };
FAFEF8F6163BE1CF0056CECD /* utl_math2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = utl_math2.cpp; sourceTree = "<group>"; };
FAFEF8FA163BE1CF0056CECD /* aud_bkgn.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = aud_bkgn.cpp; sourceTree = "<group>"; };
FAFEF8FB163BE1CF0056CECD /* aud_comm.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = aud_comm.cpp; sourceTree = "<group>"; };
FAFEF8FC163BE1CF0056CECD /* aud_game.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 0; path = aud_game.cpp; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.cpp; };
FAFEF8FD163BE1CF0056CECD /* aud_glob.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = aud_glob.cpp; sourceTree = "<group>"; };
FAFEF8FE163BE1CF0056CECD /* aud_supp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = aud_supp.cpp; sourceTree = "<group>"; };
FAFEF906163BE1CF0056CECD /* con_act.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = con_act.cpp; sourceTree = "<group>"; };
FAFEF907163BE1CF0056CECD /* con_aux.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = con_aux.cpp; sourceTree = "<group>"; };
FAFEF908163BE1CF0056CECD /* con_cani.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 0; path = con_cani.cpp; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.cpp; };
FAFEF909163BE1CF0056CECD /* con_com.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = con_com.cpp; sourceTree = "<group>"; };
FAFEF90A163BE1CF0056CECD /* con_conf.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = con_conf.cpp; sourceTree = "<group>"; };
FAFEF90B163BE1CF0056CECD /* con_ext.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = con_ext.cpp; sourceTree = "<group>"; };
FAFEF90C163BE1CF0056CECD /* con_geom.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = con_geom.cpp; sourceTree = "<group>"; };
FAFEF90D163BE1CF0056CECD /* con_info.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 0; path = con_info.cpp; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.cpp; };
FAFEF90E163BE1CF0056CECD /* con_int.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = con_int.cpp; sourceTree = "<group>"; };
FAFEF90F163BE1CF0056CECD /* con_kmap.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = con_kmap.cpp; sourceTree = "<group>"; };
FAFEF910163BE1CF0056CECD /* con_list.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = con_list.cpp; sourceTree = "<group>"; };
FAFEF911163BE1CF0056CECD /* con_load.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = con_load.cpp; sourceTree = "<group>"; };
FAFEF912163BE1CF0056CECD /* con_main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 0; path = con_main.cpp; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.cpp; };
FAFEF913163BE1CF0056CECD /* con_path.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = con_path.cpp; sourceTree = "<group>"; };
FAFEF914163BE1CF0056CECD /* con_rc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 0; path = con_rc.cpp; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.cpp; };
FAFEF915163BE1CF0056CECD /* con_say.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = con_say.cpp; sourceTree = "<group>"; };
FAFEF916163BE1CF0056CECD /* con_shad.cpp */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.cpp.cpp; path = con_shad.cpp; sourceTree = "<group>"; tabWidth = 4; };
FAFEF917163BE1CF0056CECD /* con_std.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = con_std.cpp; sourceTree = "<group>"; };
FAFEF918163BE1CF0056CECD /* con_tani.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = con_tani.cpp; sourceTree = "<group>"; };
FAFEF919163BE1CF0056CECD /* d_glob.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = d_glob.cpp; sourceTree = "<group>"; };
FAFEF91A163BE1CF0056CECD /* d_misc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = d_misc.cpp; sourceTree = "<group>"; };
FAFEF9A3163BE1CF0056CECD /* do_bmap.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = do_bmap.cpp; sourceTree = "<group>"; };
FAFEF9A4163BE1CF0056CECD /* do_font.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 0; path = do_font.cpp; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.cpp; };
FAFEF9A5163BE1CF0056CECD /* do_iter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 0; path = do_iter.cpp; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.cpp; };
FAFEF9A6163BE1CF0056CECD /* do_misc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = do_misc.cpp; sourceTree = "<group>"; };
FAFEF9A7163BE1CF0056CECD /* do_patch.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = do_patch.cpp; sourceTree = "<group>"; };
FAFEF9A8163BE1CF0056CECD /* e_callbk.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = e_callbk.cpp; sourceTree = "<group>"; };
FAFEF9A9163BE1CF0056CECD /* e_colani.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = e_colani.cpp; sourceTree = "<group>"; };
FAFEF9AA163BE1CF0056CECD /* e_color.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 0; path = e_color.cpp; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.cpp; };
FAFEF9AB163BE1CF0056CECD /* e_demo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 0; path = e_demo.cpp; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.cpp; };
FAFEF9AC163BE1CF0056CECD /* e_draw.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 0; path = e_draw.cpp; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.cpp; };
FAFEF9AD163BE1CF0056CECD /* e_events.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = e_events.cpp; sourceTree = "<group>"; };
FAFEF9AE163BE1CF0056CECD /* e_getopt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 0; path = e_getopt.cpp; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.cpp; };
FAFEF9AF163BE1CF0056CECD /* e_global.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = e_global.cpp; sourceTree = "<group>"; };
FAFEF9B0163BE1CF0056CECD /* e_level.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = e_level.cpp; sourceTree = "<group>"; };
FAFEF9B1163BE1CF0056CECD /* e_loader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 0; path = e_loader.cpp; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.cpp; };
FAFEF9B2163BE1CF0056CECD /* e_mouse.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = e_mouse.cpp; sourceTree = "<group>"; };
FAFEF9B3163BE1CF0056CECD /* e_record.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = e_record.cpp; sourceTree = "<group>"; };
FAFEF9B4163BE1CF0056CECD /* e_replay.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = e_replay.cpp; sourceTree = "<group>"; };
FAFEF9B5163BE1CF0056CECD /* e_shader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = e_shader.cpp; sourceTree = "<group>"; };
FAFEF9B6163BE1CF0056CECD /* e_supp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = e_supp.cpp; sourceTree = "<group>"; };
FAFEF9B7163BE1CF0056CECD /* e_texani.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = e_texani.cpp; sourceTree = "<group>"; };
FAFEF9B8163BE1CF0056CECD /* e_vtxani.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = e_vtxani.cpp; sourceTree = "<group>"; };
FAFEF9B9163BE1CF0056CECD /* g_boot.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = g_boot.cpp; sourceTree = "<group>"; };
FAFEF9BA163BE1CF0056CECD /* g_bot_cl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 0; path = g_bot_cl.cpp; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.cpp; };
FAFEF9BB163BE1CF0056CECD /* g_camera.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = g_camera.cpp; sourceTree = "<group>"; };
FAFEF9BC163BE1CF0056CECD /* g_cloud.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = g_cloud.cpp; sourceTree = "<group>"; };
FAFEF9BE163BE1CF0056CECD /* g_explod.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 0; path = g_explod.cpp; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.cpp; };
FAFEF9BF163BE1CF0056CECD /* g_gameloop.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = g_gameloop.cpp; sourceTree = "<group>"; };
FAFEF9C0163BE1CF0056CECD /* g_global.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = g_global.cpp; sourceTree = "<group>"; };
FAFEF9C1163BE1CF0056CECD /* g_laser.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = g_laser.cpp; sourceTree = "<group>"; };
FAFEF9C2163BE1CF0056CECD /* g_planet.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = g_planet.cpp; sourceTree = "<group>"; };
FAFEF9C3163BE1CF0056CECD /* g_sfx.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = g_sfx.cpp; sourceTree = "<group>"; };
FAFEF9C4163BE1CF0056CECD /* g_shkwav.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = g_shkwav.cpp; sourceTree = "<group>"; };
FAFEF9C5163BE1CF0056CECD /* g_stars.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = g_stars.cpp; sourceTree = "<group>"; };
FAFEF9C6163BE1CF0056CECD /* g_stgate.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = g_stgate.cpp; sourceTree = "<group>"; };
FAFEF9C7163BE1CF0056CECD /* g_supp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = g_supp.cpp; sourceTree = "<group>"; };
FAFEF9C8163BE1CF0056CECD /* g_swarm.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = g_swarm.cpp; sourceTree = "<group>"; };
FAFEF9C9163BE1CF0056CECD /* g_telep.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 0; path = g_telep.cpp; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.cpp; };
FAFEF9CA163BE1CF0056CECD /* g_vapor.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = g_vapor.cpp; sourceTree = "<group>"; };
FAFEF9CB163BE1CF0056CECD /* g_wfx.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = g_wfx.cpp; sourceTree = "<group>"; };
FAFEF9CC163BE1CF0056CECD /* h_cockpt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 0; path = h_cockpt.cpp; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.cpp; };
FAFEF9CD163BE1CF0056CECD /* h_drwhud.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 0; path = h_drwhud.cpp; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.cpp; };
FAFEF9CE163BE1CF0056CECD /* h_frmplt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = h_frmplt.cpp; sourceTree = "<group>"; };
FAFEF9CF163BE1CF0056CECD /* h_global.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = h_global.cpp; sourceTree = "<group>"; };
FAFEF9D0163BE1CF0056CECD /* h_radar.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = h_radar.cpp; sourceTree = "<group>"; };
FAFEF9D1163BE1CF0056CECD /* h_strmap.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = h_strmap.cpp; sourceTree = "<group>"; };
FAFEF9D2163BE1CF0056CECD /* h_supp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = h_supp.cpp; sourceTree = "<group>"; };
FAFEF9D3163BE1CF0056CECD /* h_text.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = h_text.cpp; sourceTree = "<group>"; };
FAFEF9D9163BE1CF0056CECD /* img_3df.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = img_3df.cpp; sourceTree = "<group>"; };
FAFEF9DA163BE1CF0056CECD /* img_api.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = img_api.cpp; sourceTree = "<group>"; };
FAFEF9DB163BE1CF0056CECD /* img_conv.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = img_conv.cpp; sourceTree = "<group>"; };
FAFEF9DC163BE1CF0056CECD /* img_jpg.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = img_jpg.cpp; sourceTree = "<group>"; };
FAFEF9DD163BE1CF0056CECD /* img_load.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = img_load.cpp; sourceTree = "<group>"; };
FAFEF9DE163BE1CF0056CECD /* img_supp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = img_supp.cpp; sourceTree = "<group>"; };
FAFEF9E0163BE1CF0056CECD /* img_tga.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = img_tga.cpp; sourceTree = "<group>"; };
FAFEF9E7163BE1CF0056CECD /* aud_bkgn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aud_bkgn.h; sourceTree = "<group>"; };
FAFEF9E8163BE1CF0056CECD /* aud_comm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aud_comm.h; sourceTree = "<group>"; };
FAFEF9E9163BE1CF0056CECD /* aud_defs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = aud_defs.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
FAFEF9EA163BE1CF0056CECD /* aud_game.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aud_game.h; sourceTree = "<group>"; };
FAFEF9EB163BE1CF0056CECD /* aud_glob.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aud_glob.h; sourceTree = "<group>"; };
FAFEF9EC163BE1CF0056CECD /* aud_subh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aud_subh.h; sourceTree = "<group>"; };
FAFEF9ED163BE1CF0056CECD /* aud_supp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aud_supp.h; sourceTree = "<group>"; };
FAFEF9F9163BE1CF0056CECD /* con_act.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = con_act.h; sourceTree = "<group>"; };
FAFEF9FA163BE1CF0056CECD /* con_aux.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = con_aux.h; sourceTree = "<group>"; };
FAFEF9FB163BE1CF0056CECD /* con_cani.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = con_cani.h; sourceTree = "<group>"; };
FAFEF9FC163BE1CF0056CECD /* con_com.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = con_com.h; sourceTree = "<group>"; };
FAFEF9FD163BE1CF0056CECD /* con_conf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = con_conf.h; sourceTree = "<group>"; };
FAFEF9FE163BE1CF0056CECD /* con_ext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = con_ext.h; sourceTree = "<group>"; };
FAFEF9FF163BE1CF0056CECD /* con_geom.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = con_geom.h; sourceTree = "<group>"; };
FAFEFA00163BE1CF0056CECD /* con_info.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = con_info.h; sourceTree = "<group>"; };
FAFEFA01163BE1CF0056CECD /* con_int.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = con_int.h; sourceTree = "<group>"; };
FAFEFA02163BE1CF0056CECD /* con_kmap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = con_kmap.h; sourceTree = "<group>"; };
FAFEFA03163BE1CF0056CECD /* con_list.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = con_list.h; sourceTree = "<group>"; };
FAFEFA04163BE1CF0056CECD /* con_load.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = con_load.h; sourceTree = "<group>"; };
FAFEFA05163BE1CF0056CECD /* con_main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = con_main.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
FAFEFA06163BE1CF0056CECD /* con_path.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = con_path.h; sourceTree = "<group>"; };
FAFEFA07163BE1CF0056CECD /* con_rc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = con_rc.h; sourceTree = "<group>"; };
FAFEFA08163BE1CF0056CECD /* con_say.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = con_say.h; sourceTree = "<group>"; };
FAFEFA09163BE1CF0056CECD /* con_shad.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = con_shad.h; sourceTree = "<group>"; };
FAFEFA0A163BE1CF0056CECD /* con_std.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = con_std.h; sourceTree = "<group>"; };
FAFEFA0B163BE1CF0056CECD /* con_tani.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = con_tani.h; sourceTree = "<group>"; };
FAFEFA0D163BE1CF0056CECD /* d_bmap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = d_bmap.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
FAFEFA0E163BE1CF0056CECD /* d_font.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = d_font.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
FAFEFA0F163BE1CF0056CECD /* d_fontt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = d_fontt.h; sourceTree = "<group>"; };
FAFEFA10163BE1CF0056CECD /* d_glob.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = d_glob.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
FAFEFA11163BE1CF0056CECD /* d_iter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = d_iter.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
FAFEFA12163BE1CF0056CECD /* d_misc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = d_misc.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
FAFEFA13163BE1CF0056CECD /* d_patch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = d_patch.h; sourceTree = "<group>"; };
FAFEFA21163BE1CF0056CECD /* do_bmap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = do_bmap.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
FAFEFA22163BE1CF0056CECD /* do_font.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = do_font.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
FAFEFA23163BE1CF0056CECD /* do_iter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = do_iter.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
FAFEFA24163BE1CF0056CECD /* do_misc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = do_misc.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
FAFEFA25163BE1CF0056CECD /* do_patch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = do_patch.h; sourceTree = "<group>"; };
FAFEFA26163BE1CF0056CECD /* e_callbk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = e_callbk.h; sourceTree = "<group>"; };
FAFEFA27163BE1CF0056CECD /* e_colani.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = e_colani.h; sourceTree = "<group>"; };
FAFEFA28163BE1CF0056CECD /* e_color.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = e_color.h; sourceTree = "<group>"; };
FAFEFA29163BE1CF0056CECD /* e_demo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = e_demo.h; sourceTree = "<group>"; };
FAFEFA2A163BE1CF0056CECD /* e_draw.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = e_draw.h; sourceTree = "<group>"; };
FAFEFA2B163BE1CF0056CECD /* e_events.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = e_events.h; sourceTree = "<group>"; };
FAFEFA2C163BE1CF0056CECD /* e_evtdef.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = e_evtdef.h; sourceTree = "<group>"; };
FAFEFA2D163BE1CF0056CECD /* e_getopt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = e_getopt.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
FAFEFA2E163BE1CF0056CECD /* e_global.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = e_global.h; sourceTree = "<group>"; };
FAFEFA2F163BE1CF0056CECD /* e_level.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = e_level.h; sourceTree = "<group>"; };
FAFEFA30163BE1CF0056CECD /* e_loader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = e_loader.h; sourceTree = "<group>"; };
FAFEFA31163BE1CF0056CECD /* e_mouse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = e_mouse.h; sourceTree = "<group>"; };
FAFEFA32163BE1CF0056CECD /* e_record.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = e_record.h; sourceTree = "<group>"; };
FAFEFA33163BE1CF0056CECD /* e_replay.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = e_replay.h; sourceTree = "<group>"; };
FAFEFA34163BE1CF0056CECD /* e_shader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = e_shader.h; sourceTree = "<group>"; };
FAFEFA35163BE1CF0056CECD /* e_supp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = e_supp.h; sourceTree = "<group>"; };
FAFEFA36163BE1CF0056CECD /* e_texani.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = e_texani.h; sourceTree = "<group>"; };
FAFEFA37163BE1CF0056CECD /* e_vtxani.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = e_vtxani.h; sourceTree = "<group>"; };
FAFEFA38163BE1CF0056CECD /* g_boot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = g_boot.h; sourceTree = "<group>"; };
FAFEFA39163BE1CF0056CECD /* g_bot_cl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = g_bot_cl.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
FAFEFA3A163BE1CF0056CECD /* g_camera.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = g_camera.h; sourceTree = "<group>"; };
FAFEFA3B163BE1CF0056CECD /* g_cloud.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = g_cloud.h; sourceTree = "<group>"; };
FAFEFA3D163BE1CF0056CECD /* g_explod.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = g_explod.h; sourceTree = "<group>"; };
FAFEFA3E163BE1CF0056CECD /* g_gameloop.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = g_gameloop.h; sourceTree = "<group>"; };
FAFEFA3F163BE1CF0056CECD /* g_global.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = g_global.h; sourceTree = "<group>"; };
FAFEFA40163BE1CF0056CECD /* g_laser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = g_laser.h; sourceTree = "<group>"; };
FAFEFA41163BE1CF0056CECD /* g_main_cl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = g_main_cl.h; sourceTree = "<group>"; };
FAFEFA42163BE1CF0056CECD /* g_planet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = g_planet.h; sourceTree = "<group>"; };
FAFEFA43163BE1CF0056CECD /* g_sfx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = g_sfx.h; sourceTree = "<group>"; };
FAFEFA44163BE1CF0056CECD /* g_shkwav.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = g_shkwav.h; sourceTree = "<group>"; };
FAFEFA45163BE1CF0056CECD /* g_stars.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = g_stars.h; sourceTree = "<group>"; };
FAFEFA46163BE1CF0056CECD /* g_supp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = g_supp.h; sourceTree = "<group>"; };
FAFEFA47163BE1CF0056CECD /* g_swarm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = g_swarm.h; sourceTree = "<group>"; };
FAFEFA48163BE1CF0056CECD /* g_telep.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = g_telep.h; sourceTree = "<group>"; };
FAFEFA49163BE1CF0056CECD /* g_vapor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = g_vapor.h; sourceTree = "<group>"; };
FAFEFA4A163BE1CF0056CECD /* g_wfx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = g_wfx.h; sourceTree = "<group>"; };
FAFEFA4B163BE1CF0056CECD /* h_cockpt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = h_cockpt.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
FAFEFA4C163BE1CF0056CECD /* h_drwhud.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = h_drwhud.h; sourceTree = "<group>"; };
FAFEFA4D163BE1CF0056CECD /* h_frmplt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = h_frmplt.h; sourceTree = "<group>"; };
FAFEFA4E163BE1CF0056CECD /* h_global.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = h_global.h; sourceTree = "<group>"; };
FAFEFA4F163BE1CF0056CECD /* h_radar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = h_radar.h; sourceTree = "<group>"; };
FAFEFA50163BE1CF0056CECD /* h_strmap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = h_strmap.h; sourceTree = "<group>"; };
FAFEFA51163BE1CF0056CECD /* h_supp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = h_supp.h; sourceTree = "<group>"; };
FAFEFA52163BE1CF0056CECD /* h_text.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = h_text.h; sourceTree = "<group>"; };
FAFEFA53163BE1CF0056CECD /* il_joy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = il_joy.h; sourceTree = "<group>"; };
FAFEFA56163BE1CF0056CECD /* il_mouse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = il_mouse.h; sourceTree = "<group>"; };
FAFEFA57163BE1CF0056CECD /* il_supp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = il_supp.h; sourceTree = "<group>"; };
FAFEFA5A163BE1CF0056CECD /* img_3df.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = img_3df.h; sourceTree = "<group>"; };
FAFEFA5B163BE1CF0056CECD /* img_api.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = img_api.h; sourceTree = "<group>"; };
FAFEFA5C163BE1CF0056CECD /* img_conv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = img_conv.h; sourceTree = "<group>"; };
FAFEFA5D163BE1CF0056CECD /* img_jpg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = img_jpg.h; sourceTree = "<group>"; };
FAFEFA5F163BE1CF0056CECD /* img_load.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = img_load.h; sourceTree = "<group>"; };
FAFEFA60163BE1CF0056CECD /* img_supp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = img_supp.h; sourceTree = "<group>"; };
FAFEFA62163BE1CF0056CECD /* img_tga.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = img_tga.h; sourceTree = "<group>"; };
FAFEFA63163BE1CF0056CECD /* inp_comm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = inp_comm.h; sourceTree = "<group>"; };
FAFEFA64163BE1CF0056CECD /* inp_defs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = inp_defs.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
FAFEFA65163BE1CF0056CECD /* inp_glob.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = inp_glob.h; sourceTree = "<group>"; };
FAFEFA66163BE1CF0056CECD /* inp_init.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = inp_init.h; sourceTree = "<group>"; };
FAFEFA67163BE1CF0056CECD /* inp_sdl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = inp_sdl.h; sourceTree = "<group>"; };
FAFEFA68163BE1CF0056CECD /* inp_subh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = inp_subh.h; sourceTree = "<group>"; };
FAFEFA69163BE1CF0056CECD /* inp_user.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = inp_user.h; sourceTree = "<group>"; };
FAFEFA6A163BE1CF0056CECD /* isdl_joy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = isdl_joy.h; sourceTree = "<group>"; };
FAFEFA6B163BE1CF0056CECD /* isdl_keydf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = isdl_keydf.h; sourceTree = "<group>"; };
FAFEFA6C163BE1CF0056CECD /* isdl_keyn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = isdl_keyn.h; sourceTree = "<group>"; };
FAFEFA6D163BE1CF0056CECD /* isdl_mouse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = isdl_mouse.h; sourceTree = "<group>"; };
FAFEFA6E163BE1CF0056CECD /* isdl_supp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = isdl_supp.h; sourceTree = "<group>"; };
FAFEFA79163BE1CF0056CECD /* m_button.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = m_button.h; sourceTree = "<group>"; };
FAFEFA7A163BE1CF0056CECD /* m_list.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = m_list.h; sourceTree = "<group>"; };
FAFEFA7B163BE1CF0056CECD /* m_logo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = m_logo.h; sourceTree = "<group>"; };
FAFEFA7C163BE1CF0056CECD /* m_main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = m_main.h; sourceTree = "<group>"; };
FAFEFA7D163BE1CF0056CECD /* m_option.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = m_option.h; sourceTree = "<group>"; };
FAFEFA7E163BE1CF0056CECD /* m_status.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = m_status.h; sourceTree = "<group>"; };
FAFEFA7F163BE1CF0056CECD /* m_viewer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = m_viewer.h; sourceTree = "<group>"; };
FAFEFA80163BE1CF0056CECD /* net_conn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = net_conn.h; sourceTree = "<group>"; };
FAFEFA81163BE1CF0056CECD /* net_game.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = net_game.h; sourceTree = "<group>"; };
FAFEFA82163BE1CF0056CECD /* net_game_gmsv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = net_game_gmsv.h; sourceTree = "<group>"; };
FAFEFA83163BE1CF0056CECD /* net_game_peer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = net_game_peer.h; sourceTree = "<group>"; };
FAFEFA84163BE1CF0056CECD /* net_glob.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = net_glob.h; sourceTree = "<group>"; };
FAFEFA85163BE1CF0056CECD /* net_gmsv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = net_gmsv.h; sourceTree = "<group>"; };
FAFEFA86163BE1CF0056CECD /* net_pckt_peer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = net_pckt_peer.h; sourceTree = "<group>"; };
FAFEFA87163BE1CF0056CECD /* net_peer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = net_peer.h; sourceTree = "<group>"; };
FAFEFA88163BE1CF0056CECD /* net_prediction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = net_prediction.h; sourceTree = "<group>"; };
FAFEFA89163BE1CF0056CECD /* net_rmev.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = net_rmev.h; sourceTree = "<group>"; };
FAFEFA8A163BE1CF0056CECD /* net_rmev_gmsv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = net_rmev_gmsv.h; sourceTree = "<group>"; };
FAFEFA8B163BE1CF0056CECD /* net_rmev_peer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = net_rmev_peer.h; sourceTree = "<group>"; };
FAFEFA8C163BE1CF0056CECD /* net_serv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = net_serv.h; sourceTree = "<group>"; };
FAFEFA8D163BE1CF0056CECD /* net_subh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = net_subh.h; sourceTree = "<group>"; };
FAFEFA8E163BE1CF0056CECD /* net_udp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = net_udp.h; sourceTree = "<group>"; };
FAFEFA8F163BE1CF0056CECD /* net_udpdf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = net_udpdf.h; sourceTree = "<group>"; };
FAFEFA90163BE1CF0056CECD /* net_univ.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = net_univ.h; sourceTree = "<group>"; };
FAFEFA91163BE1CF0056CECD /* net_util_cl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = net_util_cl.h; sourceTree = "<group>"; };
FAFEFA92163BE1CF0056CECD /* nl_udp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = nl_udp.h; sourceTree = "<group>"; };
FAFEFA95163BE1CF0056CECD /* obj_ani.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = obj_ani.h; sourceTree = "<group>"; };
FAFEFA96163BE1CF0056CECD /* obj_coll.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = obj_coll.h; sourceTree = "<group>"; };
FAFEFA97163BE1CF0056CECD /* obj_comm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = obj_comm.h; sourceTree = "<group>"; };
FAFEFA98163BE1D00056CECD /* obj_ctrl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = obj_ctrl.h; sourceTree = "<group>"; };
FAFEFA99163BE1D00056CECD /* obj_expl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = obj_expl.h; sourceTree = "<group>"; };
FAFEFA9A163BE1D00056CECD /* obj_game.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = obj_game.h; sourceTree = "<group>"; };
FAFEFA9B163BE1D00056CECD /* obj_iter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = obj_iter.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
FAFEFA9C163BE1D00056CECD /* obj_part.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = obj_part.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
FAFEFA9D163BE1D00056CECD /* obj_vani.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = obj_vani.h; sourceTree = "<group>"; };
FAFEFA9E163BE1D00056CECD /* obj_xtra.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = obj_xtra.h; sourceTree = "<group>"; };
FAFEFA9F163BE1D00056CECD /* part_ani.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = part_ani.h; sourceTree = "<group>"; };
FAFEFAA0163BE1D00056CECD /* part_api.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = part_api.h; sourceTree = "<group>"; };
FAFEFAA1163BE1D00056CECD /* part_def.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = part_def.h; sourceTree = "<group>"; };
FAFEFAA2163BE1D00056CECD /* part_sys.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = part_sys.h; sourceTree = "<group>"; };
FAFEFAA3163BE1D00056CECD /* r_gl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = r_gl.h; sourceTree = "<group>"; };
FAFEFAA5163BE1D00056CECD /* r_glob.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = r_glob.h; sourceTree = "<group>"; };
FAFEFAA6163BE1D00056CECD /* r_obj.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = r_obj.h; sourceTree = "<group>"; };
FAFEFAA7163BE1D00056CECD /* r_part.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = r_part.h; sourceTree = "<group>"; };
FAFEFAA8163BE1D00056CECD /* r_patch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = r_patch.h; sourceTree = "<group>"; };
FAFEFAA9163BE1D00056CECD /* r_perf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = r_perf.h; sourceTree = "<group>"; };
FAFEFAAA163BE1D00056CECD /* r_sfx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = r_sfx.h; sourceTree = "<group>"; };
FAFEFAAB163BE1D00056CECD /* r_supp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = r_supp.h; sourceTree = "<group>"; };
FAFEFAB5163BE1D00056CECD /* ro_api.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ro_api.h; sourceTree = "<group>"; };
FAFEFAB6163BE1D00056CECD /* ro_obj.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ro_obj.h; sourceTree = "<group>"; };
FAFEFAB7163BE1D00056CECD /* ro_objmc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ro_objmc.h; sourceTree = "<group>"; };
FAFEFAB8163BE1D00056CECD /* ro_part.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ro_part.h; sourceTree = "<group>"; };
FAFEFAB9163BE1D00056CECD /* ro_patch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ro_patch.h; sourceTree = "<group>"; };
FAFEFABA163BE1D00056CECD /* ro_perf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ro_perf.h; sourceTree = "<group>"; };
FAFEFABB163BE1D00056CECD /* ro_poly.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ro_poly.h; sourceTree = "<group>"; };
FAFEFABC163BE1D00056CECD /* ro_sfx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ro_sfx.h; sourceTree = "<group>"; };
FAFEFABD163BE1D00056CECD /* ro_supp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ro_supp.h; sourceTree = "<group>"; };
FAFEFABE163BE1D00056CECD /* sl_err.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sl_err.h; sourceTree = "<group>"; };
FAFEFABF163BE1D00056CECD /* sl_main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sl_main.h; sourceTree = "<group>"; };
FAFEFAC0163BE1D00056CECD /* sl_msg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sl_msg.h; sourceTree = "<group>"; };
FAFEFAC1163BE1D00056CECD /* sl_opt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sl_opt.h; sourceTree = "<group>"; };
FAFEFAC2163BE1D00056CECD /* snd_api.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = snd_api.h; sourceTree = "<group>"; };
FAFEFAC3163BE1D00056CECD /* snd_wav.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = snd_wav.h; sourceTree = "<group>"; };
FAFEFAD1163BE1D00056CECD /* sys_bind.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sys_bind.h; sourceTree = "<group>"; };
FAFEFAD2163BE1D00056CECD /* sys_conv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sys_conv.h; sourceTree = "<group>"; };
FAFEFAD3163BE1D00056CECD /* sys_err.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sys_err.h; sourceTree = "<group>"; };
FAFEFAD4163BE1D00056CECD /* sys_glob.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sys_glob.h; sourceTree = "<group>"; };
FAFEFAD5163BE1D00056CECD /* sys_msg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sys_msg.h; sourceTree = "<group>"; };
FAFEFAD6163BE1D00056CECD /* sys_subh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sys_subh.h; sourceTree = "<group>"; };
FAFEFAD7163BE1D00056CECD /* t_pack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = t_pack.h; sourceTree = "<group>"; };
FAFEFAD8163BE1D00056CECD /* vid_defs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vid_defs.h; sourceTree = "<group>"; };
FAFEFAD9163BE1D00056CECD /* vid_glob.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vid_glob.h; sourceTree = "<group>"; };
FAFEFADA163BE1D00056CECD /* vid_init.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vid_init.h; sourceTree = "<group>"; };
FAFEFADB163BE1D00056CECD /* vid_plug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vid_plug.h; sourceTree = "<group>"; };
FAFEFADC163BE1D00056CECD /* vid_subh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vid_subh.h; sourceTree = "<group>"; };
FAFEFADD163BE1D00056CECD /* vid_supp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vid_supp.h; sourceTree = "<group>"; };
FAFEFAE6163BE1D00056CECD /* vsdl_buffo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vsdl_buffo.h; sourceTree = "<group>"; };
FAFEFAE7163BE1D00056CECD /* vsdl_inito.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vsdl_inito.h; sourceTree = "<group>"; };
FAFEFAE8163BE1D00056CECD /* vsdl_ogl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vsdl_ogl.h; sourceTree = "<group>"; };
FAFEFAE9163BE1D00056CECD /* vsdl_suppo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vsdl_suppo.h; sourceTree = "<group>"; };
FAFEFAF6163BE1D00056CECD /* inp_comm.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = inp_comm.cpp; sourceTree = "<group>"; };
FAFEFAF7163BE1D00056CECD /* inp_glob.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = inp_glob.cpp; sourceTree = "<group>"; };
FAFEFAF8163BE1D00056CECD /* inp_init.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = inp_init.cpp; sourceTree = "<group>"; };
FAFEFAF9163BE1D00056CECD /* inp_sdl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 0; path = inp_sdl.cpp; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.cpp; };
FAFEFAFA163BE1D00056CECD /* inp_user.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = inp_user.cpp; sourceTree = "<group>"; };
FAFEFAFB163BE1D00056CECD /* isdl_joy.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = isdl_joy.cpp; sourceTree = "<group>"; };
FAFEFAFC163BE1D00056CECD /* isdl_mouse.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = isdl_mouse.cpp; sourceTree = "<group>"; };
FAFEFAFD163BE1D00056CECD /* isdl_supp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = isdl_supp.cpp; sourceTree = "<group>"; };
FAFEFB04163BE1D00056CECD /* m_button.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = m_button.cpp; sourceTree = "<group>"; };
FAFEFB05163BE1D00056CECD /* m_list.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = m_list.cpp; sourceTree = "<group>"; };
FAFEFB06163BE1D00056CECD /* m_logo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = m_logo.cpp; sourceTree = "<group>"; };
FAFEFB07163BE1D00056CECD /* m_main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = m_main.cpp; sourceTree = "<group>"; };
FAFEFB08163BE1D00056CECD /* m_option.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = m_option.cpp; sourceTree = "<group>"; };
FAFEFB09163BE1D00056CECD /* m_status.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = m_status.cpp; sourceTree = "<group>"; };
FAFEFB0A163BE1D00056CECD /* m_viewer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = m_viewer.cpp; sourceTree = "<group>"; };
FAFEFB0C163BE1D00056CECD /* net_conn.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = net_conn.cpp; sourceTree = "<group>"; };
FAFEFB0D163BE1D00056CECD /* net_game.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = net_game.cpp; sourceTree = "<group>"; };
FAFEFB0E163BE1D00056CECD /* net_game_gmsv.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = net_game_gmsv.cpp; sourceTree = "<group>"; };
FAFEFB0F163BE1D00056CECD /* net_game_peer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = net_game_peer.cpp; sourceTree = "<group>"; };
FAFEFB10163BE1D00056CECD /* net_glob.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = net_glob.cpp; sourceTree = "<group>"; };
FAFEFB11163BE1D00056CECD /* net_gmsv.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = net_gmsv.cpp; sourceTree = "<group>"; };
FAFEFB12163BE1D00056CECD /* net_pckt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = net_pckt.cpp; sourceTree = "<group>"; };
FAFEFB13163BE1D00056CECD /* net_pckt_peer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = net_pckt_peer.cpp; sourceTree = "<group>"; };
FAFEFB14163BE1D00056CECD /* net_peer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = net_peer.cpp; sourceTree = "<group>"; };
FAFEFB15163BE1D00056CECD /* net_prediction.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = net_prediction.cpp; sourceTree = "<group>"; };
FAFEFB16163BE1D00056CECD /* net_rmev.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = net_rmev.cpp; sourceTree = "<group>"; };
FAFEFB17163BE1D00056CECD /* net_rmev_gmsv.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = net_rmev_gmsv.cpp; sourceTree = "<group>"; };
FAFEFB18163BE1D00056CECD /* net_rmev_peer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = net_rmev_peer.cpp; sourceTree = "<group>"; };
FAFEFB19163BE1D00056CECD /* net_serv.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = net_serv.cpp; sourceTree = "<group>"; };
FAFEFB1A163BE1D00056CECD /* net_udp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = net_udp.cpp; sourceTree = "<group>"; };
FAFEFB1B163BE1D00056CECD /* net_univ.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = net_univ.cpp; sourceTree = "<group>"; };
FAFEFB1C163BE1D00056CECD /* net_util_cl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = net_util_cl.cpp; sourceTree = "<group>"; };
FAFEFB1D163BE1D00056CECD /* nl_udp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 0; path = nl_udp.cpp; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.cpp; };
FAFEFB20163BE1D00056CECD /* obj_ani.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = obj_ani.cpp; sourceTree = "<group>"; };
FAFEFB21163BE1D00056CECD /* obj_coll.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = obj_coll.cpp; sourceTree = "<group>"; };
FAFEFB22163BE1D00056CECD /* obj_comm.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = obj_comm.cpp; sourceTree = "<group>"; };
FAFEFB23163BE1D00056CECD /* obj_ctrl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = obj_ctrl.cpp; sourceTree = "<group>"; };
FAFEFB24163BE1D00056CECD /* obj_expl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = obj_expl.cpp; sourceTree = "<group>"; };
FAFEFB25163BE1D00056CECD /* obj_game.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = obj_game.cpp; sourceTree = "<group>"; };
FAFEFB26163BE1D00056CECD /* obj_iter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 0; path = obj_iter.cpp; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.cpp; };
FAFEFB27163BE1D00056CECD /* obj_part.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 0; path = obj_part.cpp; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.cpp; };
FAFEFB28163BE1D00056CECD /* obj_vani.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = obj_vani.cpp; sourceTree = "<group>"; };
FAFEFB29163BE1D00056CECD /* obj_xtra.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = obj_xtra.cpp; sourceTree = "<group>"; };
FAFEFB2A163BE1D00056CECD /* part_ani.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = part_ani.cpp; sourceTree = "<group>"; };
FAFEFB2B163BE1D00056CECD /* part_api.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = part_api.cpp; sourceTree = "<group>"; };
FAFEFB2C163BE1D00056CECD /* part_def.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = part_def.cpp; sourceTree = "<group>"; };
FAFEFB2D163BE1D00056CECD /* part_sys.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = part_sys.cpp; sourceTree = "<group>"; };
FAFEFB2E163BE1D00056CECD /* r_glob.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = r_glob.cpp; sourceTree = "<group>"; };
FAFEFB37163BE1D00056CECD /* ro_api.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ro_api.cpp; sourceTree = "<group>"; };
FAFEFB38163BE1D00056CECD /* ro_obj.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ro_obj.cpp; sourceTree = "<group>"; };
FAFEFB39163BE1D00056CECD /* ro_part.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ro_part.cpp; sourceTree = "<group>"; };
FAFEFB3A163BE1D00056CECD /* ro_patch.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ro_patch.cpp; sourceTree = "<group>"; };
FAFEFB3B163BE1D00056CECD /* ro_perf.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ro_perf.cpp; sourceTree = "<group>"; };
FAFEFB3C163BE1D00056CECD /* ro_poly.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ro_poly.cpp; sourceTree = "<group>"; };
FAFEFB3D163BE1D00056CECD /* ro_sfx.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ro_sfx.cpp; sourceTree = "<group>"; };
FAFEFB3E163BE1D00056CECD /* ro_supp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ro_supp.cpp; sourceTree = "<group>"; };
FAFEFB3F163BE1D00056CECD /* sl_err.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sl_err.cpp; sourceTree = "<group>"; };
FAFEFB40163BE1D00056CECD /* sl_main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sl_main.cpp; sourceTree = "<group>"; };
FAFEFB41163BE1D00056CECD /* sl_msg.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; lineEnding = 0; path = sl_msg.cpp; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.cpp; };
FAFEFB42163BE1D00056CECD /* sl_opt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sl_opt.cpp; sourceTree = "<group>"; };
FAFEFB43163BE1D00056CECD /* snd_api.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = snd_api.cpp; sourceTree = "<group>"; };
FAFEFB44163BE1D00056CECD /* snd_wav.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = snd_wav.cpp; sourceTree = "<group>"; };
FAFEFB51163BE1D00056CECD /* sys_bind.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sys_bind.cpp; sourceTree = "<group>"; };
FAFEFB52163BE1D00056CECD /* sys_conv.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sys_conv.cpp; sourceTree = "<group>"; };
FAFEFB53163BE1D00056CECD /* sys_glob.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sys_glob.cpp; sourceTree = "<group>"; };
FAFEFB54163BE1D00056CECD /* t_pack.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = t_pack.cpp; sourceTree = "<group>"; };
FAFEFB55163BE1D00056CECD /* vid_glob.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = vid_glob.cpp; sourceTree = "<group>"; };
FAFEFB56163BE1D00056CECD /* vid_init.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = vid_init.cpp; sourceTree = "<group>"; };
FAFEFB57163BE1D00056CECD /* vid_plug.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = vid_plug.cpp; sourceTree = "<group>"; };
FAFEFB58163BE1D00056CECD /* vid_supp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = vid_supp.cpp; sourceTree = "<group>"; };
FAFEFB61163BE1D00056CECD /* vsdl_buffo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = vsdl_buffo.cpp; sourceTree = "<group>"; };
FAFEFB62163BE1D00056CECD /* vsdl_inito.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = vsdl_inito.cpp; sourceTree = "<group>"; };
FAFEFB63163BE1D00056CECD /* vsdl_ogl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = vsdl_ogl.cpp; sourceTree = "<group>"; };
FAFEFB64163BE1D00056CECD /* vsdl_suppo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = vsdl_suppo.cpp; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
FA371686164DD43600230CE8 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
FA3716DA164DFC9800230CE8 /* libncurses.5.4.dylib in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
FAFEE690163BDA5E0056CECD /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
FAFE57FD16791C1C00A31DAA /* CoreFoundation.framework in Frameworks */,
FABCE937163C876A0030912B /* Cocoa.framework in Frameworks */,
FABCE935163C86F60030912B /* OpenGL.framework in Frameworks */,
FAB6A4B916B666CA00052EF2 /* SDL.framework in Frameworks */,
FAB6A4BB16B666CF00052EF2 /* SDL_mixer.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
FA053528163D0C7C00EA3BBF /* Resources */ = {
isa = PBXGroup;
children = (
FA729FFC16E8209A00997EBE /* openparsec-assets */,
);
name = Resources;
sourceTree = "<group>";
};
FA29208A163DBFF4000B8C26 /* Libraries */ = {
isa = PBXGroup;
children = (
FA3716D9164DFC9800230CE8 /* libncurses.5.4.dylib */,
);
name = Libraries;
sourceTree = "<group>";
};
FA371572164DD36700230CE8 /* parsec_server */ = {
isa = PBXGroup;
children = (
FA371573164DD36800230CE8 /* con_act_sv.cpp */,
FA371574164DD36800230CE8 /* con_aux_sv.cpp */,
FA371575164DD36800230CE8 /* con_com_sv.cpp */,
FA371576164DD36800230CE8 /* con_ext_sv.cpp */,
FA371577164DD36800230CE8 /* con_info_sv.cpp */,
FA371578164DD36800230CE8 /* con_int_sv.cpp */,
FA371579164DD36800230CE8 /* con_list_sv.cpp */,
FA37157A164DD36800230CE8 /* con_load_sv.cpp */,
FA37157B164DD36800230CE8 /* con_main_sv.cpp */,
FA37157C164DD36800230CE8 /* con_std_sv.cpp */,
FA37157E164DD36800230CE8 /* e_colldet_sv.cpp */,
FA37157F164DD36800230CE8 /* e_connmanager.cpp */,
FA371580164DD36800230CE8 /* e_gameserver.cpp */,
FA371581164DD36800230CE8 /* e_global_sv.cpp */,
FA371582164DD36800230CE8 /* e_packethandler.cpp */,
FA371583164DD36800230CE8 /* e_simnetinput.cpp */,
FA371584164DD36800230CE8 /* e_simnetoutput.cpp */,
FA371585164DD36800230CE8 /* e_simplayerinfo.cpp */,
FA371586164DD36800230CE8 /* e_simulator.cpp */,
FA371587164DD36800230CE8 /* e_world.cpp */,
FA371588164DD36800230CE8 /* g_main_sv.cpp */,
FA371589164DD36800230CE8 /* g_player.cpp */,
FA37158A164DD36800230CE8 /* g_stgate_sv.cpp */,
FA37158B164DD36800230CE8 /* include */,
FA3715B3164DD36800230CE8 /* inp_main_sv.cpp */,
FAE69E1416A7631200C1AC79 /* MasterServer.cpp */,
FAE69E1516A7631200C1AC79 /* MasterServerItem.cpp */,
FA37167C164DD36800230CE8 /* net_packetdriver.cpp */,
FA37167D164DD36800230CE8 /* net_util_sv.cpp */,
FA37167E164DD36800230CE8 /* nl_udpdriver.cpp */,
FA37167F164DD36800230CE8 /* sl_util_sv.cpp */,
FA371680164DD36800230CE8 /* sv_main.cpp */,
FA371681164DD36800230CE8 /* sys_err_sv.cpp */,
FA371682164DD36800230CE8 /* sys_msg_sv.cpp */,
FA371683164DD36800230CE8 /* sys_util_sv.cpp */,
);
path = parsec_server;
sourceTree = "<group>";
};
FA37158B164DD36800230CE8 /* include */ = {
isa = PBXGroup;
children = (
FA37158C164DD36800230CE8 /* con_act_sv.h */,
FA37158D164DD36800230CE8 /* con_aux_sv.h */,
FA37158E164DD36800230CE8 /* con_com_sv.h */,
FA37158F164DD36800230CE8 /* con_ext_sv.h */,
FA371590164DD36800230CE8 /* con_info_sv.h */,
FA371591164DD36800230CE8 /* con_int_sv.h */,
FA371592164DD36800230CE8 /* con_list_sv.h */,
FA371593164DD36800230CE8 /* con_load_sv.h */,
FA371594164DD36800230CE8 /* con_main_sv.h */,
FA371595164DD36800230CE8 /* con_std_sv.h */,
FA371596164DD36800230CE8 /* e_colldet.h */,
FA371597164DD36800230CE8 /* e_connmanager.h */,
FA371598164DD36800230CE8 /* e_defs.h */,
FA371599164DD36800230CE8 /* e_gameserver.h */,
FA37159A164DD36800230CE8 /* e_global_sv.h */,
FA37159B164DD36800230CE8 /* e_packethandler.h */,
FA37159C164DD36800230CE8 /* e_simnetinput.h */,
FA37159D164DD36800230CE8 /* e_simnetoutput.h */,
FA37159E164DD36800230CE8 /* e_simplayerinfo.h */,
FA37159F164DD36800230CE8 /* e_simulator.h */,
FA3715A0164DD36800230CE8 /* e_world.h */,
FA3715A1164DD36800230CE8 /* e_world_trans.h */,
FA3715A2164DD36800230CE8 /* g_main_sv.h */,
FA3715A3164DD36800230CE8 /* g_player.h */,
FA3715A4164DD36800230CE8 /* inp_defs_sv.h */,
FA3715A5164DD36800230CE8 /* inp_keybmap_sv.h */,
FA3715A6164DD36800230CE8 /* inp_main_sv.h */,
FAE69E1216A7630700C1AC79 /* MasterServer.h */,
FAE69E1316A7630700C1AC79 /* MasterServerItem.h */,
FA3715A7164DD36800230CE8 /* net_game_sv.h */,
FA3715A8164DD36800230CE8 /* net_packetdriver.h */,
FA3715A9164DD36800230CE8 /* net_subh_sv.h */,
FA3715AA164DD36800230CE8 /* net_udpdriver.h */,
FA3715AB164DD36800230CE8 /* net_util_sv.h */,
FA3715AC164DD36800230CE8 /* sl_util_sv.h */,
FA3715AF164DD36800230CE8 /* sys_err_sv.h */,
FA3715B0164DD36800230CE8 /* sys_msg_sv.h */,
FA3715B1164DD36800230CE8 /* sys_refframe_sv.h */,
FA3715B2164DD36800230CE8 /* sys_util_sv.h */,
);
path = include;
sourceTree = "<group>";
};
FA729FFC16E8209A00997EBE /* openparsec-assets */ = {
isa = PBXGroup;
children = (
FA729FFD16E8209A00997EBE /* cons */,
FAB42ED916F819B40017E7FD /* CREDITS */,
FA72A15B16E8209B00997EBE /* init.con */,
FAB42EDB16F819B80017E7FD /* LICENSE */,
FAC8E8D716F3FDD2004DADF3 /* LICENSE.artwork_sound */,
FAB42EDD16F819BC0017E7FD /* LICENSE.readme */,
FA72A15D16E8209B00997EBE /* pscdata0.dat */,
FA72A15E16E8209B00997EBE /* pscdata1.dat */,
FA72A15F16E8209B00997EBE /* pscdata2.dat */,
FA72A16016E8209B00997EBE /* pscdata3.dat */,
FA72A16116E8209B00997EBE /* README.md */,
);
name = "openparsec-assets";
path = "../../openparsec-assets";
sourceTree = "<group>";
};
FA729FFD16E8209A00997EBE /* cons */ = {
isa = PBXGroup;
children = (
FA729FFE16E8209A00997EBE /* .bindings.con.swp */,
FA729FFF16E8209A00997EBE /* bindings.con */,
FA72A00016E8209A00997EBE /* strmpldr.con */,
FA72A00116E8209A00997EBE /* user.con */,
);
path = cons;
sourceTree = "<group>";
};
FAADE0FB16AB271B005D7250 /* glew */ = {
isa = PBXGroup;
children = (
FAADE0FC16AB271B005D7250 /* glew.c */,
FA82524016AD50DD003A9277 /* glew.h */,
FAADE0FE16AB271B005D7250 /* glxew.h */,
FAADE0FF16AB271B005D7250 /* wglew.h */,
);
path = glew;
sourceTree = "<group>";
};
FAD2E084168BC22400E3EE7B /* libraries */ = {
isa = PBXGroup;
children = (
FAADE0FB16AB271B005D7250 /* glew */,
FAD2E085168BC22400E3EE7B /* glm */,
FAE69DDD16A73FB300C1AC79 /* stb_image */,
);
path = libraries;
sourceTree = "<group>";
};
FAD2E085168BC22400E3EE7B /* glm */ = {
isa = PBXGroup;
children = (
FAD2E086168BC22400E3EE7B /* core */,
FAD2E0D3168BC22400E3EE7B /* ext.hpp */,
FAD2E0D4168BC22400E3EE7B /* glm.hpp */,
FAD2E0D5168BC22400E3EE7B /* gtc */,
FAD2E0F3168BC22400E3EE7B /* gtx */,
FAD2E168168BC22400E3EE7B /* virtrev */,
);
path = glm;
sourceTree = "<group>";
};
FAD2E086168BC22400E3EE7B /* core */ = {
isa = PBXGroup;
children = (
FAD2E087168BC22400E3EE7B /* _detail.hpp */,
FAD2E088168BC22400E3EE7B /* _fixes.hpp */,
FAD2E089168BC22400E3EE7B /* _swizzle.hpp */,
FAD2E08A168BC22400E3EE7B /* _swizzle_func.hpp */,
FAD2E08B168BC22400E3EE7B /* _vectorize.hpp */,
FAD2E08D168BC22400E3EE7B /* func_common.hpp */,
FAD2E08E168BC22400E3EE7B /* func_common.inl */,
FAD2E08F168BC22400E3EE7B /* func_exponential.hpp */,
FAD2E090168BC22400E3EE7B /* func_exponential.inl */,
FAD2E091168BC22400E3EE7B /* func_geometric.hpp */,
FAD2E092168BC22400E3EE7B /* func_geometric.inl */,
FAD2E093168BC22400E3EE7B /* func_integer.hpp */,
FAD2E094168BC22400E3EE7B /* func_integer.inl */,
FAD2E095168BC22400E3EE7B /* func_matrix.hpp */,
FAD2E096168BC22400E3EE7B /* func_matrix.inl */,
FAD2E097168BC22400E3EE7B /* func_noise.hpp */,
FAD2E098168BC22400E3EE7B /* func_noise.inl */,
FAD2E099168BC22400E3EE7B /* func_packing.hpp */,
FAD2E09A168BC22400E3EE7B /* func_packing.inl */,
FAD2E09B168BC22400E3EE7B /* func_trigonometric.hpp */,
FAD2E09C168BC22400E3EE7B /* func_trigonometric.inl */,
FAD2E09D168BC22400E3EE7B /* func_vector_relational.hpp */,
FAD2E09E168BC22400E3EE7B /* func_vector_relational.inl */,
FAD2E09F168BC22400E3EE7B /* hint.hpp */,
FAD2E0A0168BC22400E3EE7B /* intrinsic_common.hpp */,
FAD2E0A1168BC22400E3EE7B /* intrinsic_common.inl */,
FAD2E0A2168BC22400E3EE7B /* intrinsic_exponential.hpp */,
FAD2E0A3168BC22400E3EE7B /* intrinsic_exponential.inl */,
FAD2E0A4168BC22400E3EE7B /* intrinsic_geometric.hpp */,
FAD2E0A5168BC22400E3EE7B /* intrinsic_geometric.inl */,
FAD2E0A6168BC22400E3EE7B /* intrinsic_matrix.hpp */,
FAD2E0A7168BC22400E3EE7B /* intrinsic_matrix.inl */,
FAD2E0A8168BC22400E3EE7B /* intrinsic_trigonometric.hpp */,
FAD2E0A9168BC22400E3EE7B /* intrinsic_trigonometric.inl */,
FAD2E0AA168BC22400E3EE7B /* intrinsic_vector_relational.hpp */,
FAD2E0AB168BC22400E3EE7B /* intrinsic_vector_relational.inl */,
FAD2E0AC168BC22400E3EE7B /* setup.hpp */,
FAD2E0AD168BC22400E3EE7B /* type.hpp */,
FAD2E0AE168BC22400E3EE7B /* type_float.hpp */,
FAD2E0AF168BC22400E3EE7B /* type_gentype.hpp */,
FAD2E0B0168BC22400E3EE7B /* type_gentype.inl */,
FAD2E0B1168BC22400E3EE7B /* type_half.hpp */,
FAD2E0B2168BC22400E3EE7B /* type_half.inl */,
FAD2E0B3168BC22400E3EE7B /* type_int.hpp */,
FAD2E0B4168BC22400E3EE7B /* type_mat.hpp */,
FAD2E0B5168BC22400E3EE7B /* type_mat.inl */,
FAD2E0B6168BC22400E3EE7B /* type_mat2x2.hpp */,
FAD2E0B7168BC22400E3EE7B /* type_mat2x2.inl */,
FAD2E0B8168BC22400E3EE7B /* type_mat2x3.hpp */,
FAD2E0B9168BC22400E3EE7B /* type_mat2x3.inl */,
FAD2E0BA168BC22400E3EE7B /* type_mat2x4.hpp */,
FAD2E0BB168BC22400E3EE7B /* type_mat2x4.inl */,
FAD2E0BC168BC22400E3EE7B /* type_mat3x2.hpp */,
FAD2E0BD168BC22400E3EE7B /* type_mat3x2.inl */,
FAD2E0BE168BC22400E3EE7B /* type_mat3x3.hpp */,
FAD2E0BF168BC22400E3EE7B /* type_mat3x3.inl */,
FAD2E0C0168BC22400E3EE7B /* type_mat3x4.hpp */,
FAD2E0C1168BC22400E3EE7B /* type_mat3x4.inl */,
FAD2E0C2168BC22400E3EE7B /* type_mat4x2.hpp */,
FAD2E0C3168BC22400E3EE7B /* type_mat4x2.inl */,
FAD2E0C4168BC22400E3EE7B /* type_mat4x3.hpp */,
FAD2E0C5168BC22400E3EE7B /* type_mat4x3.inl */,
FAD2E0C6168BC22400E3EE7B /* type_mat4x4.hpp */,
FAD2E0C7168BC22400E3EE7B /* type_mat4x4.inl */,
FAD2E0C8168BC22400E3EE7B /* type_size.hpp */,
FAD2E0C9168BC22400E3EE7B /* type_vec.hpp */,
FAD2E0CA168BC22400E3EE7B /* type_vec.inl */,
FAD2E0CB168BC22400E3EE7B /* type_vec1.hpp */,
FAD2E0CC168BC22400E3EE7B /* type_vec1.inl */,
FAD2E0CD168BC22400E3EE7B /* type_vec2.hpp */,
FAD2E0CE168BC22400E3EE7B /* type_vec2.inl */,
FAD2E0CF168BC22400E3EE7B /* type_vec3.hpp */,
FAD2E0D0168BC22400E3EE7B /* type_vec3.inl */,
FAD2E0D1168BC22400E3EE7B /* type_vec4.hpp */,
FAD2E0D2168BC22400E3EE7B /* type_vec4.inl */,
);
path = core;
sourceTree = "<group>";
};
FAD2E0D5168BC22400E3EE7B /* gtc */ = {
isa = PBXGroup;
children = (
FAD2E0D6168BC22400E3EE7B /* constants.hpp */,
FAD2E0D7168BC22400E3EE7B /* constants.inl */,
FAD2E0D8168BC22400E3EE7B /* epsilon.hpp */,
FAD2E0D9168BC22400E3EE7B /* epsilon.inl */,
FAD2E0DA168BC22400E3EE7B /* half_float.hpp */,
FAD2E0DB168BC22400E3EE7B /* half_float.inl */,
FAD2E0DC168BC22400E3EE7B /* matrix_access.hpp */,
FAD2E0DD168BC22400E3EE7B /* matrix_access.inl */,
FAD2E0DE168BC22400E3EE7B /* matrix_integer.hpp */,
FAD2E0DF168BC22400E3EE7B /* matrix_inverse.hpp */,
FAD2E0E0168BC22400E3EE7B /* matrix_inverse.inl */,
FAD2E0E1168BC22400E3EE7B /* matrix_transform.hpp */,
FAD2E0E2168BC22400E3EE7B /* matrix_transform.inl */,
FAD2E0E3168BC22400E3EE7B /* noise.hpp */,
FAD2E0E4168BC22400E3EE7B /* noise.inl */,
FAD2E0E5168BC22400E3EE7B /* quaternion.hpp */,
FAD2E0E6168BC22400E3EE7B /* quaternion.inl */,
FAD2E0E7168BC22400E3EE7B /* random.hpp */,
FAD2E0E8168BC22400E3EE7B /* random.inl */,
FAD2E0E9168BC22400E3EE7B /* reciprocal.hpp */,
FAD2E0EA168BC22400E3EE7B /* reciprocal.inl */,
FAD2E0EB168BC22400E3EE7B /* swizzle.hpp */,
FAD2E0EC168BC22400E3EE7B /* swizzle.inl */,
FAD2E0ED168BC22400E3EE7B /* type_precision.hpp */,
FAD2E0EE168BC22400E3EE7B /* type_precision.inl */,
FAD2E0EF168BC22400E3EE7B /* type_ptr.hpp */,
FAD2E0F0168BC22400E3EE7B /* type_ptr.inl */,
FAD2E0F1168BC22400E3EE7B /* ulp.hpp */,
FAD2E0F2168BC22400E3EE7B /* ulp.inl */,
);
path = gtc;
sourceTree = "<group>";
};
FAD2E0F3168BC22400E3EE7B /* gtx */ = {
isa = PBXGroup;
children = (
FAD2E0F4168BC22400E3EE7B /* associated_min_max.hpp */,
FAD2E0F5168BC22400E3EE7B /* associated_min_max.inl */,
FAD2E0F6168BC22400E3EE7B /* bit.hpp */,
FAD2E0F7168BC22400E3EE7B /* bit.inl */,
FAD2E0F8168BC22400E3EE7B /* closest_point.hpp */,
FAD2E0F9168BC22400E3EE7B /* closest_point.inl */,
FAD2E0FA168BC22400E3EE7B /* color_cast.hpp */,
FAD2E0FB168BC22400E3EE7B /* color_cast.inl */,
FAD2E0FC168BC22400E3EE7B /* color_space.hpp */,
FAD2E0FD168BC22400E3EE7B /* color_space.inl */,
FAD2E0FE168BC22400E3EE7B /* color_space_YCoCg.hpp */,
FAD2E0FF168BC22400E3EE7B /* color_space_YCoCg.inl */,
FAD2E100168BC22400E3EE7B /* compatibility.hpp */,
FAD2E101168BC22400E3EE7B /* compatibility.inl */,
FAD2E102168BC22400E3EE7B /* component_wise.hpp */,
FAD2E103168BC22400E3EE7B /* component_wise.inl */,
FAD2E104168BC22400E3EE7B /* constants.hpp */,
FAD2E105168BC22400E3EE7B /* epsilon.hpp */,
FAD2E106168BC22400E3EE7B /* euler_angles.hpp */,
FAD2E107168BC22400E3EE7B /* euler_angles.inl */,
FAD2E108168BC22400E3EE7B /* extend.hpp */,
FAD2E109168BC22400E3EE7B /* extend.inl */,
FAD2E10A168BC22400E3EE7B /* extented_min_max.hpp */,
FAD2E10B168BC22400E3EE7B /* extented_min_max.inl */,
FAD2E10C168BC22400E3EE7B /* fast_exponential.hpp */,
FAD2E10D168BC22400E3EE7B /* fast_exponential.inl */,
FAD2E10E168BC22400E3EE7B /* fast_square_root.hpp */,
FAD2E10F168BC22400E3EE7B /* fast_square_root.inl */,
FAD2E110168BC22400E3EE7B /* fast_trigonometry.hpp */,
FAD2E111168BC22400E3EE7B /* fast_trigonometry.inl */,
FAD2E112168BC22400E3EE7B /* gradient_paint.hpp */,
FAD2E113168BC22400E3EE7B /* gradient_paint.inl */,
FAD2E114168BC22400E3EE7B /* handed_coordinate_space.hpp */,
FAD2E115168BC22400E3EE7B /* handed_coordinate_space.inl */,
FAD2E116168BC22400E3EE7B /* inertia.hpp */,
FAD2E117168BC22400E3EE7B /* inertia.inl */,
FAD2E118168BC22400E3EE7B /* int_10_10_10_2.hpp */,
FAD2E119168BC22400E3EE7B /* int_10_10_10_2.inl */,
FAD2E11A168BC22400E3EE7B /* integer.hpp */,
FAD2E11B168BC22400E3EE7B /* integer.inl */,
FAD2E11C168BC22400E3EE7B /* intersect.hpp */,
FAD2E11D168BC22400E3EE7B /* intersect.inl */,
FAD2E11E168BC22400E3EE7B /* log_base.hpp */,
FAD2E11F168BC22400E3EE7B /* log_base.inl */,
FAD2E120168BC22400E3EE7B /* matrix_cross_product.hpp */,
FAD2E121168BC22400E3EE7B /* matrix_cross_product.inl */,
FAD2E122168BC22400E3EE7B /* matrix_interpolation.hpp */,
FAD2E123168BC22400E3EE7B /* matrix_interpolation.inl */,
FAD2E124168BC22400E3EE7B /* matrix_major_storage.hpp */,
FAD2E125168BC22400E3EE7B /* matrix_major_storage.inl */,
FAD2E126168BC22400E3EE7B /* matrix_operation.hpp */,
FAD2E127168BC22400E3EE7B /* matrix_operation.inl */,
FAD2E128168BC22400E3EE7B /* matrix_query.hpp */,
FAD2E129168BC22400E3EE7B /* matrix_query.inl */,
FAD2E12A168BC22400E3EE7B /* mixed_product.hpp */,
FAD2E12B168BC22400E3EE7B /* mixed_product.inl */,
FAD2E12C168BC22400E3EE7B /* multiple.hpp */,
FAD2E12D168BC22400E3EE7B /* multiple.inl */,
FAD2E12E168BC22400E3EE7B /* noise.hpp */,
FAD2E12F168BC22400E3EE7B /* norm.hpp */,
FAD2E130168BC22400E3EE7B /* norm.inl */,
FAD2E131168BC22400E3EE7B /* normal.hpp */,
FAD2E132168BC22400E3EE7B /* normal.inl */,
FAD2E133168BC22400E3EE7B /* normalize_dot.hpp */,
FAD2E134168BC22400E3EE7B /* normalize_dot.inl */,
FAD2E135168BC22400E3EE7B /* number_precision.hpp */,
FAD2E136168BC22400E3EE7B /* number_precision.inl */,
FAD2E137168BC22400E3EE7B /* ocl_type.hpp */,
FAD2E138168BC22400E3EE7B /* ocl_type.inl */,
FAD2E139168BC22400E3EE7B /* optimum_pow.hpp */,
FAD2E13A168BC22400E3EE7B /* optimum_pow.inl */,
FAD2E13B168BC22400E3EE7B /* orthonormalize.hpp */,
FAD2E13C168BC22400E3EE7B /* orthonormalize.inl */,
FAD2E13D168BC22400E3EE7B /* perpendicular.hpp */,
FAD2E13E168BC22400E3EE7B /* perpendicular.inl */,
FAD2E13F168BC22400E3EE7B /* polar_coordinates.hpp */,
FAD2E140168BC22400E3EE7B /* polar_coordinates.inl */,
FAD2E141168BC22400E3EE7B /* projection.hpp */,
FAD2E142168BC22400E3EE7B /* projection.inl */,
FAD2E143168BC22400E3EE7B /* quaternion.hpp */,
FAD2E144168BC22400E3EE7B /* quaternion.inl */,
FAD2E145168BC22400E3EE7B /* random.hpp */,
FAD2E146168BC22400E3EE7B /* raw_data.hpp */,
FAD2E147168BC22400E3EE7B /* raw_data.inl */,
FAD2E148168BC22400E3EE7B /* reciprocal.hpp */,
FAD2E149168BC22400E3EE7B /* rotate_vector.hpp */,
FAD2E14A168BC22400E3EE7B /* rotate_vector.inl */,
FAD2E14B168BC22400E3EE7B /* simd_mat4.hpp */,
FAD2E14C168BC22400E3EE7B /* simd_mat4.inl */,
FAD2E14D168BC22400E3EE7B /* simd_vec4.hpp */,
FAD2E14E168BC22400E3EE7B /* simd_vec4.inl */,
FAD2E14F168BC22400E3EE7B /* spline.hpp */,
FAD2E150168BC22400E3EE7B /* spline.inl */,
FAD2E151168BC22400E3EE7B /* std_based_type.hpp */,
FAD2E152168BC22400E3EE7B /* std_based_type.inl */,
FAD2E153168BC22400E3EE7B /* string_cast.hpp */,
FAD2E154168BC22400E3EE7B /* string_cast.inl */,
FAD2E155168BC22400E3EE7B /* transform.hpp */,
FAD2E156168BC22400E3EE7B /* transform.inl */,
FAD2E157168BC22400E3EE7B /* transform2.hpp */,
FAD2E158168BC22400E3EE7B /* transform2.inl */,
FAD2E159168BC22400E3EE7B /* ulp.hpp */,
FAD2E15A168BC22400E3EE7B /* unsigned_int.hpp */,
FAD2E15B168BC22400E3EE7B /* unsigned_int.inl */,
FAD2E15C168BC22400E3EE7B /* vec1.hpp */,
FAD2E15D168BC22400E3EE7B /* vec1.inl */,
FAD2E15E168BC22400E3EE7B /* vector_access.hpp */,
FAD2E15F168BC22400E3EE7B /* vector_access.inl */,
FAD2E160168BC22400E3EE7B /* vector_angle.hpp */,
FAD2E161168BC22400E3EE7B /* vector_angle.inl */,
FAD2E162168BC22400E3EE7B /* vector_query.hpp */,
FAD2E163168BC22400E3EE7B /* vector_query.inl */,
FAD2E164168BC22400E3EE7B /* verbose_operator.hpp */,
FAD2E165168BC22400E3EE7B /* verbose_operator.inl */,
FAD2E166168BC22400E3EE7B /* wrap.hpp */,
FAD2E167168BC22400E3EE7B /* wrap.inl */,
);
path = gtx;
sourceTree = "<group>";
};
FAD2E168168BC22400E3EE7B /* virtrev */ = {
isa = PBXGroup;
children = (
FAD2E169168BC22400E3EE7B /* xstream.hpp */,
);
path = virtrev;
sourceTree = "<group>";
};
FAE69DDD16A73FB300C1AC79 /* stb_image */ = {
isa = PBXGroup;
children = (
FAE69DE216A74C4100C1AC79 /* stb_image.cpp */,
FAE69DE116A7405000C1AC79 /* stb_image.h */,
FA84A67F16A7B59F005F649F /* stb_image_write.c */,
FA84A67B16A7B515005F649F /* stb_image_write.h */,
);
path = stb_image;
sourceTree = "<group>";
};
FAFEE687163BDA5E0056CECD = {
isa = PBXGroup;
children = (
FA5F84F8165478C600AD25B3 /* SDLMain.m */,
FA5F84F7165478C600AD25B3 /* SDLMain.h */,
FAFEF87B163BE1CF0056CECD /* Source */,
FAFEE69F163BDA5E0056CECD /* Supporting Files */,
FAFEE696163BDA5E0056CECD /* Frameworks */,
FA29208A163DBFF4000B8C26 /* Libraries */,
FA053528163D0C7C00EA3BBF /* Resources */,
FAFEE694163BDA5E0056CECD /* Products */,
);
sourceTree = "<group>";
};
FAFEE694163BDA5E0056CECD /* Products */ = {
isa = PBXGroup;
children = (
FAFEE693163BDA5E0056CECD /* Parsec.app */,
FA371689164DD43600230CE8 /* Parsec Server */,
);
name = Products;
sourceTree = "<group>";
};
FAFEE696163BDA5E0056CECD /* Frameworks */ = {
isa = PBXGroup;
children = (
FAB6A4BA16B666CF00052EF2 /* SDL_mixer.framework */,
FAB6A4B816B666CA00052EF2 /* SDL.framework */,
FAFE57FB16791C1100A31DAA /* CoreFoundation.framework */,
FABCE936163C876A0030912B /* Cocoa.framework */,
FABCE934163C86F50030912B /* OpenGL.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
FAFEE69F163BDA5E0056CECD /* Supporting Files */ = {
isa = PBXGroup;
children = (
FAB135C0164DB2D4006CBB88 /* con.icns */,
FAB135C1164DB2D4006CBB88 /* dat.icns */,
FAB135BE164DB2CE006CBB88 /* parsec.icns */,
FAFEE6A0163BDA5E0056CECD /* Parsec-Info.plist */,
FAFEE6A1163BDA5E0056CECD /* InfoPlist.strings */,
);
name = "Supporting Files";
path = Parsec;
sourceTree = "<group>";
};
FAFEF87B163BE1CF0056CECD /* Source */ = {
isa = PBXGroup;
children = (
FAFEF87C163BE1CF0056CECD /* libparsec */,
FAD2E084168BC22400E3EE7B /* libraries */,
FAFEF8F8163BE1CF0056CECD /* parsec */,
FA371572164DD36700230CE8 /* parsec_server */,
);
name = Source;
path = ../../src;
sourceTree = "<group>";
};
FAFEF87C163BE1CF0056CECD /* libparsec */ = {
isa = PBXGroup;
children = (
FAFEF87D163BE1CF0056CECD /* con_arg.cpp */,
FAFEF87E163BE1CF0056CECD /* con_tab.cpp */,
FAFEF87F163BE1CF0056CECD /* con_vald.cpp */,
FAFEF880163BE1CF0056CECD /* debug.cpp */,
FAFEF881163BE1CF0056CECD /* e_modulemanager.cpp */,
FAFEF882163BE1CF0056CECD /* e_relist.cpp */,
FA17FD5116BB0C1D0003E370 /* g_emp.cpp */,
FAFEF883163BE1CF0056CECD /* g_extra.cpp */,
FAFEF884163BE1CF0056CECD /* include */,
FAFEF8DE163BE1CF0056CECD /* net_pckt_gmsv.cpp */,
FAFEF8DF163BE1CF0056CECD /* net_stream.cpp */,
FAFEF8E0163BE1CF0056CECD /* net_swap.cpp */,
FAFEF8E1163BE1CF0056CECD /* net_util.cpp */,
FAFEF8E2163BE1CF0056CECD /* net_wrap.cpp */,
FAFEF8E3163BE1CF0056CECD /* obj_clas.cpp */,
FAFEF8E4163BE1CF0056CECD /* obj_creg.cpp */,
FAFEF8E5163BE1CF0056CECD /* obj_cust.cpp */,
FAFEF8E6163BE1CF0056CECD /* obj_odt.cpp */,
FAFEF8E7163BE1CF0056CECD /* obj_type.cpp */,
FAFEF8E8163BE1CF0056CECD /* sl_path.cpp */,
FAFEF8E9163BE1CF0056CECD /* sl_timer.cpp */,
FAE293FE1655A28700D00541 /* sw_path.cpp */,
FAE293FF1655A28800D00541 /* sw_timer.cpp */,
FAFEF8ED163BE1CF0056CECD /* sys_date.cpp */,
FAFEF8EE163BE1CF0056CECD /* sys_file.cpp */,
FAFEF8EF163BE1CF0056CECD /* sys_swap.cpp */,
FAFEF8F0163BE1CF0056CECD /* utl_bsp.cpp */,
FAFEF8F1163BE1CF0056CECD /* utl_clip.cpp */,
FAFEF8F2163BE1CF0056CECD /* utl_clpo.cpp */,
FAFEF8F3163BE1CF0056CECD /* utl_cull.cpp */,
FAFEF8F4163BE1CF0056CECD /* utl_logfile.cpp */,
FAFEF8F5163BE1CF0056CECD /* utl_math.cpp */,
FAFEF8F6163BE1CF0056CECD /* utl_math2.cpp */,
);
path = libparsec;
sourceTree = "<group>";
};
FAFEF884163BE1CF0056CECD /* include */ = {
isa = PBXGroup;
children = (
FAFEF885163BE1CF0056CECD /* con_arg.h */,
FAFEF886163BE1CF0056CECD /* con_tab.h */,
FAFEF887163BE1CF0056CECD /* con_vald.h */,
FAFEF888163BE1CF0056CECD /* config.h */,
FAFEF889163BE1CF0056CECD /* debug.h */,
FAFEF88A163BE1CF0056CECD /* debugsys.h */,
FAFEF88D163BE1CF0056CECD /* def_prot.h */,
FAFEF890163BE1CF0056CECD /* e_modulemanager.h */,
FAFEF891163BE1CF0056CECD /* e_relist.h */,
FAE69E0716A7628600C1AC79 /* g_emp.h */,
FAFEF892163BE1CF0056CECD /* g_extra.h */,
FAFEF893163BE1CF0056CECD /* g_shipobject.h */,
FAFEF894163BE1CF0056CECD /* g_stgate.h */,
FAFEF895163BE1CF0056CECD /* gd_bmap.h */,
FAFEF896163BE1CF0056CECD /* gd_color.h */,
FAFEF897163BE1CF0056CECD /* gd_const.h */,
FAFEF898163BE1CF0056CECD /* gd_font.h */,
FAFEF899163BE1CF0056CECD /* gd_heads.h */,
FAFEF89A163BE1CF0056CECD /* gd_help.h */,
FAFEF89B163BE1CF0056CECD /* gd_host.h */,
FAFEF89C163BE1CF0056CECD /* gd_limit.h */,
FAFEF89D163BE1CF0056CECD /* gd_tabs.h */,
FAFEF89E163BE1CF0056CECD /* gd_type.h */,
FAFEF89F163BE1CF0056CECD /* general.h */,
FAFEF8A0163BE1CF0056CECD /* globals.h */,
FAFEF8A1163BE1CF0056CECD /* keycodes.h */,
FAB135B8164DAFA0006CBB88 /* keys_sdl.h */,
FAB135B9164DAFA0006CBB88 /* keys_server.h */,
FAFEF8A4163BE1CF0056CECD /* linkinfo.h */,
FAFEF8A5163BE1CF0056CECD /* net_conf.h */,
FAFEF8A6163BE1CF0056CECD /* net_csdf.h */,
FAFEF8A7163BE1CF0056CECD /* net_defs.h */,
FAFEF8A8163BE1CF0056CECD /* net_limits.h */,
FAFEF8A9163BE1CF0056CECD /* net_pckt.h */,
FAFEF8AA163BE1CF0056CECD /* net_pckt_gmsv.h */,
FAFEF8AB163BE1CF0056CECD /* net_ports.h */,
FAFEF8AC163BE1CF0056CECD /* net_stream.h */,
FAFEF8AD163BE1CF0056CECD /* net_swap.h */,
FAFEF8AE163BE1CF0056CECD /* net_util.h */,
FAFEF8AF163BE1CF0056CECD /* net_wrap.h */,
FAFEF8B0163BE1CF0056CECD /* obj_clas.h */,
FAFEF8B1163BE1CF0056CECD /* obj_creg.h */,
FAFEF8B2163BE1CF0056CECD /* obj_cust.h */,
FAFEF8B3163BE1CF0056CECD /* obj_name.h */,
FAFEF8B4163BE1CF0056CECD /* obj_odt.h */,
FAFEF8B5163BE1CF0056CECD /* obj_type.h */,
FAFEF8B6163BE1CF0056CECD /* objstruc.h */,
FAFEF8B7163BE1CF0056CECD /* od_class.h */,
FAFEF8B8163BE1CF0056CECD /* od_geomv.h */,
FAFEF8B9163BE1CF0056CECD /* od_masks.h */,
FAFEF8BA163BE1CF0056CECD /* od_odt.h */,
FAFEF8BB163BE1CF0056CECD /* od_prim.h */,
FAFEF8BC163BE1CF0056CECD /* od_props.h */,
FAFEF8BD163BE1CF0056CECD /* od_rast.h */,
FAFEF8BE163BE1CF0056CECD /* od_struc.h */,
FAFEF8BF163BE1CF0056CECD /* od_texdf.h */,
FAFEF8C0163BE1CF0056CECD /* od_trafo.h */,
FAFEF8C1163BE1CF0056CECD /* od_types.h */,
FAFEF8C2163BE1CF0056CECD /* parttype.h */,
FAFEF8C3163BE1CF0056CECD /* platform.h */,
FAE294021655A2A700D00541 /* platform_sdl.h */,
FAFEF8C7163BE1CF0056CECD /* sl_path.h */,
FAFEF8C8163BE1CF0056CECD /* sl_timer.h */,
FAE294031655A2A800D00541 /* sw_path.h */,
FAE294041655A2A900D00541 /* sw_timer.h */,
FAFEF8CC163BE1CF0056CECD /* sys_date.h */,
FAFEF8CD163BE1CF0056CECD /* sys_defs.h */,
FAFEF8CE163BE1CF0056CECD /* sys_file.h */,
FAFEF8CF163BE1CF0056CECD /* sys_io.h */,
FAFEF8D0163BE1CF0056CECD /* sys_path.h */,
FAFEF8D1163BE1CF0056CECD /* sys_swap.h */,
FAFEF8D2163BE1CF0056CECD /* utl_bsp.h */,
FAFEF8D3163BE1CF0056CECD /* utl_clip.h */,
FAFEF8D4163BE1CF0056CECD /* utl_clpo.h */,
FAFEF8D5163BE1CF0056CECD /* utl_cull.h */,
FAFEF8D6163BE1CF0056CECD /* utl_fcos.h */,
FAFEF8D7163BE1CF0056CECD /* utl_fsin.h */,
FAFEF8D8163BE1CF0056CECD /* utl_list.h */,
FAFEF8D9163BE1CF0056CECD /* utl_logfile.h */,
FAFEF8DA163BE1CF0056CECD /* utl_math.h */,
FAFEF8DB163BE1CF0056CECD /* utl_math2.h */,
FAFEF8DC163BE1CF0056CECD /* utl_model.h */,
);
path = include;
sourceTree = "<group>";
};
FAFEF8F8163BE1CF0056CECD /* parsec */ = {
isa = PBXGroup;
children = (
FAFEF8FA163BE1CF0056CECD /* aud_bkgn.cpp */,
FAFEF8FB163BE1CF0056CECD /* aud_comm.cpp */,
FAFEF8FC163BE1CF0056CECD /* aud_game.cpp */,
FAFEF8FD163BE1CF0056CECD /* aud_glob.cpp */,
FAB135B4164DAB73006CBB88 /* aud_sdlmixer.cpp */,
FAFEF8FE163BE1CF0056CECD /* aud_supp.cpp */,
FAFEF906163BE1CF0056CECD /* con_act.cpp */,
FAFEF907163BE1CF0056CECD /* con_aux.cpp */,
FAFEF908163BE1CF0056CECD /* con_cani.cpp */,
FAFEF909163BE1CF0056CECD /* con_com.cpp */,
FAFEF90A163BE1CF0056CECD /* con_conf.cpp */,
FAFEF90B163BE1CF0056CECD /* con_ext.cpp */,
FAFEF90C163BE1CF0056CECD /* con_geom.cpp */,
FAFEF90D163BE1CF0056CECD /* con_info.cpp */,
FAFEF90E163BE1CF0056CECD /* con_int.cpp */,
FAFEF90F163BE1CF0056CECD /* con_kmap.cpp */,
FAFEF910163BE1CF0056CECD /* con_list.cpp */,
FAFEF911163BE1CF0056CECD /* con_load.cpp */,
FAFEF912163BE1CF0056CECD /* con_main.cpp */,
FAFEF913163BE1CF0056CECD /* con_path.cpp */,
FAFEF914163BE1CF0056CECD /* con_rc.cpp */,
FAFEF915163BE1CF0056CECD /* con_say.cpp */,
FAFEF916163BE1CF0056CECD /* con_shad.cpp */,
FAFEF917163BE1CF0056CECD /* con_std.cpp */,
FAFEF918163BE1CF0056CECD /* con_tani.cpp */,
FAFEF919163BE1CF0056CECD /* d_glob.cpp */,
FAFEF91A163BE1CF0056CECD /* d_misc.cpp */,
FAFEF9A3163BE1CF0056CECD /* do_bmap.cpp */,
FAFEF9A4163BE1CF0056CECD /* do_font.cpp */,
FAFEF9A5163BE1CF0056CECD /* do_iter.cpp */,
FAFEF9A6163BE1CF0056CECD /* do_misc.cpp */,
FAFEF9A7163BE1CF0056CECD /* do_patch.cpp */,
FAFEF9A8163BE1CF0056CECD /* e_callbk.cpp */,
FAFEF9A9163BE1CF0056CECD /* e_colani.cpp */,
FAFEF9AA163BE1CF0056CECD /* e_color.cpp */,
FAFEF9AB163BE1CF0056CECD /* e_demo.cpp */,
FAFEF9AC163BE1CF0056CECD /* e_draw.cpp */,
FAFEF9AD163BE1CF0056CECD /* e_events.cpp */,
FAFEF9AE163BE1CF0056CECD /* e_getopt.cpp */,
FAFEF9AF163BE1CF0056CECD /* e_global.cpp */,
FAFEF9B0163BE1CF0056CECD /* e_level.cpp */,
FAFEF9B1163BE1CF0056CECD /* e_loader.cpp */,
FAFEF9B2163BE1CF0056CECD /* e_mouse.cpp */,
FAFEF9B3163BE1CF0056CECD /* e_record.cpp */,
FAFEF9B4163BE1CF0056CECD /* e_replay.cpp */,
FAFEF9B5163BE1CF0056CECD /* e_shader.cpp */,
FAFEF9B6163BE1CF0056CECD /* e_supp.cpp */,
FAFEF9B7163BE1CF0056CECD /* e_texani.cpp */,
FAFEF9B8163BE1CF0056CECD /* e_vtxani.cpp */,
FAFEF9B9163BE1CF0056CECD /* g_boot.cpp */,
FAFEF9BA163BE1CF0056CECD /* g_bot_cl.cpp */,
FAFEF9BB163BE1CF0056CECD /* g_camera.cpp */,
FAFEF9BC163BE1CF0056CECD /* g_cloud.cpp */,
FAFEF9BE163BE1CF0056CECD /* g_explod.cpp */,
FAFEF9BF163BE1CF0056CECD /* g_gameloop.cpp */,
FAFEF9C0163BE1CF0056CECD /* g_global.cpp */,
FAFEF9C1163BE1CF0056CECD /* g_laser.cpp */,
FAFEF9C2163BE1CF0056CECD /* g_planet.cpp */,
FAFEF9C3163BE1CF0056CECD /* g_sfx.cpp */,
FAFEF9C4163BE1CF0056CECD /* g_shkwav.cpp */,
FAFEF9C5163BE1CF0056CECD /* g_stars.cpp */,
FAFEF9C6163BE1CF0056CECD /* g_stgate.cpp */,
FAFEF9C7163BE1CF0056CECD /* g_supp.cpp */,
FAFEF9C8163BE1CF0056CECD /* g_swarm.cpp */,
FAFEF9C9163BE1CF0056CECD /* g_telep.cpp */,
FAFEF9CA163BE1CF0056CECD /* g_vapor.cpp */,
FAFEF9CB163BE1CF0056CECD /* g_wfx.cpp */,
FAFEF9CC163BE1CF0056CECD /* h_cockpt.cpp */,
FAFEF9CD163BE1CF0056CECD /* h_drwhud.cpp */,
FAFEF9CE163BE1CF0056CECD /* h_frmplt.cpp */,
FAFEF9CF163BE1CF0056CECD /* h_global.cpp */,
FAFEF9D0163BE1CF0056CECD /* h_radar.cpp */,
FAFEF9D1163BE1CF0056CECD /* h_strmap.cpp */,
FAFEF9D2163BE1CF0056CECD /* h_supp.cpp */,
FAFEF9D3163BE1CF0056CECD /* h_text.cpp */,
FAFEF9D9163BE1CF0056CECD /* img_3df.cpp */,
FAFEF9DA163BE1CF0056CECD /* img_api.cpp */,
FAFEF9DB163BE1CF0056CECD /* img_conv.cpp */,
FAFEF9DC163BE1CF0056CECD /* img_jpg.cpp */,
FAFEF9DD163BE1CF0056CECD /* img_load.cpp */,
FAFEF9DE163BE1CF0056CECD /* img_supp.cpp */,
FAFEF9E0163BE1CF0056CECD /* img_tga.cpp */,
FAFEF9E1163BE1CF0056CECD /* include */,
FAFEFAF6163BE1D00056CECD /* inp_comm.cpp */,
FAFEFAF7163BE1D00056CECD /* inp_glob.cpp */,
FAFEFAF8163BE1D00056CECD /* inp_init.cpp */,
FAFEFAF9163BE1D00056CECD /* inp_sdl.cpp */,
FAFEFAFA163BE1D00056CECD /* inp_user.cpp */,
FAFEFAFB163BE1D00056CECD /* isdl_joy.cpp */,
FAFEFAFC163BE1D00056CECD /* isdl_mouse.cpp */,
FAFEFAFD163BE1D00056CECD /* isdl_supp.cpp */,
FAFEFB04163BE1D00056CECD /* m_button.cpp */,
FAFEFB05163BE1D00056CECD /* m_list.cpp */,
FAFEFB06163BE1D00056CECD /* m_logo.cpp */,
FAFEFB07163BE1D00056CECD /* m_main.cpp */,
FAFEFB08163BE1D00056CECD /* m_option.cpp */,
FAFEFB09163BE1D00056CECD /* m_status.cpp */,
FAFEFB0A163BE1D00056CECD /* m_viewer.cpp */,
FAFEFB0C163BE1D00056CECD /* net_conn.cpp */,
FAFEFB0D163BE1D00056CECD /* net_game.cpp */,
FAFEFB0E163BE1D00056CECD /* net_game_gmsv.cpp */,
FAFEFB0F163BE1D00056CECD /* net_game_peer.cpp */,
FAFEFB10163BE1D00056CECD /* net_glob.cpp */,
FAFEFB11163BE1D00056CECD /* net_gmsv.cpp */,
FAFEFB12163BE1D00056CECD /* net_pckt.cpp */,
FAFEFB13163BE1D00056CECD /* net_pckt_peer.cpp */,
FAFEFB14163BE1D00056CECD /* net_peer.cpp */,
FAFEFB15163BE1D00056CECD /* net_prediction.cpp */,
FAFEFB16163BE1D00056CECD /* net_rmev.cpp */,
FAFEFB17163BE1D00056CECD /* net_rmev_gmsv.cpp */,
FAFEFB18163BE1D00056CECD /* net_rmev_peer.cpp */,
FAFEFB19163BE1D00056CECD /* net_serv.cpp */,
FAFEFB1A163BE1D00056CECD /* net_udp.cpp */,
FAFEFB1B163BE1D00056CECD /* net_univ.cpp */,
FAFEFB1C163BE1D00056CECD /* net_util_cl.cpp */,
FAFEFB1D163BE1D00056CECD /* nl_udp.cpp */,
FAE294051655A86C00D00541 /* nw_udp.cpp */,
FAFEFB20163BE1D00056CECD /* obj_ani.cpp */,
FAFEFB21163BE1D00056CECD /* obj_coll.cpp */,
FAFEFB22163BE1D00056CECD /* obj_comm.cpp */,
FAFEFB23163BE1D00056CECD /* obj_ctrl.cpp */,
FAFEFB24163BE1D00056CECD /* obj_expl.cpp */,
FAFEFB25163BE1D00056CECD /* obj_game.cpp */,
FAFEFB26163BE1D00056CECD /* obj_iter.cpp */,
FAFEFB27163BE1D00056CECD /* obj_part.cpp */,
FAFEFB28163BE1D00056CECD /* obj_vani.cpp */,
FAFEFB29163BE1D00056CECD /* obj_xtra.cpp */,
FAFEFB2A163BE1D00056CECD /* part_ani.cpp */,
FAFEFB2B163BE1D00056CECD /* part_api.cpp */,
FAFEFB2C163BE1D00056CECD /* part_def.cpp */,
FAFEFB2D163BE1D00056CECD /* part_sys.cpp */,
FAFEFB2E163BE1D00056CECD /* r_glob.cpp */,
FAFEFB37163BE1D00056CECD /* ro_api.cpp */,
FAFEFB38163BE1D00056CECD /* ro_obj.cpp */,
FAFEFB39163BE1D00056CECD /* ro_part.cpp */,
FAFEFB3A163BE1D00056CECD /* ro_patch.cpp */,
FAFEFB3B163BE1D00056CECD /* ro_perf.cpp */,
FAFEFB3C163BE1D00056CECD /* ro_poly.cpp */,
FAFEFB3D163BE1D00056CECD /* ro_sfx.cpp */,
FAFEFB3E163BE1D00056CECD /* ro_supp.cpp */,
FAFEFB3F163BE1D00056CECD /* sl_err.cpp */,
FAFEFB40163BE1D00056CECD /* sl_main.cpp */,
FAFEFB41163BE1D00056CECD /* sl_msg.cpp */,
FAFEFB42163BE1D00056CECD /* sl_opt.cpp */,
FAFEFB43163BE1D00056CECD /* snd_api.cpp */,
FAFEFB44163BE1D00056CECD /* snd_wav.cpp */,
FAFEFB51163BE1D00056CECD /* sys_bind.cpp */,
FAFEFB52163BE1D00056CECD /* sys_conv.cpp */,
FAFEFB53163BE1D00056CECD /* sys_glob.cpp */,
FAFEFB54163BE1D00056CECD /* t_pack.cpp */,
FAFEFB55163BE1D00056CECD /* vid_glob.cpp */,
FAFEFB56163BE1D00056CECD /* vid_init.cpp */,
FAFEFB57163BE1D00056CECD /* vid_plug.cpp */,
FAFEFB58163BE1D00056CECD /* vid_supp.cpp */,
FAFEFB61163BE1D00056CECD /* vsdl_buffo.cpp */,
FAFEFB62163BE1D00056CECD /* vsdl_inito.cpp */,
FAFEFB63163BE1D00056CECD /* vsdl_ogl.cpp */,
FAFEFB64163BE1D00056CECD /* vsdl_suppo.cpp */,
);
path = parsec;
sourceTree = "<group>";
};
FAFEF9E1163BE1CF0056CECD /* include */ = {
isa = PBXGroup;
children = (
FA3716DB164E068600230CE8 /* al_initg.h */,
FAFEF9E7163BE1CF0056CECD /* aud_bkgn.h */,
FAFEF9E8163BE1CF0056CECD /* aud_comm.h */,
FAFEF9E9163BE1CF0056CECD /* aud_defs.h */,
FAFEF9EA163BE1CF0056CECD /* aud_game.h */,
FAFEF9EB163BE1CF0056CECD /* aud_glob.h */,
FAFEF9EC163BE1CF0056CECD /* aud_subh.h */,
FAFEF9ED163BE1CF0056CECD /* aud_supp.h */,
FAFEF9F9163BE1CF0056CECD /* con_act.h */,
FAFEF9FA163BE1CF0056CECD /* con_aux.h */,
FAFEF9FB163BE1CF0056CECD /* con_cani.h */,
FAFEF9FC163BE1CF0056CECD /* con_com.h */,
FAFEF9FD163BE1CF0056CECD /* con_conf.h */,
FAFEF9FE163BE1CF0056CECD /* con_ext.h */,
FAFEF9FF163BE1CF0056CECD /* con_geom.h */,
FAFEFA00163BE1CF0056CECD /* con_info.h */,
FAFEFA01163BE1CF0056CECD /* con_int.h */,
FAFEFA02163BE1CF0056CECD /* con_kmap.h */,
FAFEFA03163BE1CF0056CECD /* con_list.h */,
FAFEFA04163BE1CF0056CECD /* con_load.h */,
FAFEFA05163BE1CF0056CECD /* con_main.h */,
FAFEFA06163BE1CF0056CECD /* con_path.h */,
FAFEFA07163BE1CF0056CECD /* con_rc.h */,
FAFEFA08163BE1CF0056CECD /* con_say.h */,
FAFEFA09163BE1CF0056CECD /* con_shad.h */,
FAFEFA0A163BE1CF0056CECD /* con_std.h */,
FAFEFA0B163BE1CF0056CECD /* con_tani.h */,
FAFEFA0D163BE1CF0056CECD /* d_bmap.h */,
FAFEFA0E163BE1CF0056CECD /* d_font.h */,
FAFEFA0F163BE1CF0056CECD /* d_fontt.h */,
FAFEFA10163BE1CF0056CECD /* d_glob.h */,
FAFEFA11163BE1CF0056CECD /* d_iter.h */,
FAFEFA12163BE1CF0056CECD /* d_misc.h */,
FAFEFA13163BE1CF0056CECD /* d_patch.h */,
FAFEFA21163BE1CF0056CECD /* do_bmap.h */,
FAFEFA22163BE1CF0056CECD /* do_font.h */,
FAFEFA23163BE1CF0056CECD /* do_iter.h */,
FAFEFA24163BE1CF0056CECD /* do_misc.h */,
FAFEFA25163BE1CF0056CECD /* do_patch.h */,
FAFEFA26163BE1CF0056CECD /* e_callbk.h */,
FAFEFA27163BE1CF0056CECD /* e_colani.h */,
FAFEFA28163BE1CF0056CECD /* e_color.h */,
FAFEFA29163BE1CF0056CECD /* e_demo.h */,
FAFEFA2A163BE1CF0056CECD /* e_draw.h */,
FAFEFA2B163BE1CF0056CECD /* e_events.h */,
FAFEFA2C163BE1CF0056CECD /* e_evtdef.h */,
FAFEFA2D163BE1CF0056CECD /* e_getopt.h */,
FAFEFA2E163BE1CF0056CECD /* e_global.h */,
FAFEFA2F163BE1CF0056CECD /* e_level.h */,
FAFEFA30163BE1CF0056CECD /* e_loader.h */,
FAFEFA31163BE1CF0056CECD /* e_mouse.h */,
FAFEFA32163BE1CF0056CECD /* e_record.h */,
FAFEFA33163BE1CF0056CECD /* e_replay.h */,
FAFEFA34163BE1CF0056CECD /* e_shader.h */,
FAFEFA35163BE1CF0056CECD /* e_supp.h */,
FAFEFA36163BE1CF0056CECD /* e_texani.h */,
FAFEFA37163BE1CF0056CECD /* e_vtxani.h */,
FAFEFA38163BE1CF0056CECD /* g_boot.h */,
FAFEFA39163BE1CF0056CECD /* g_bot_cl.h */,
FAFEFA3A163BE1CF0056CECD /* g_camera.h */,
FAFEFA3B163BE1CF0056CECD /* g_cloud.h */,
FAFEFA3D163BE1CF0056CECD /* g_explod.h */,
FAFEFA3E163BE1CF0056CECD /* g_gameloop.h */,
FAFEFA3F163BE1CF0056CECD /* g_global.h */,
FAFEFA40163BE1CF0056CECD /* g_laser.h */,
FAFEFA41163BE1CF0056CECD /* g_main_cl.h */,
FAFEFA42163BE1CF0056CECD /* g_planet.h */,
FAFEFA43163BE1CF0056CECD /* g_sfx.h */,
FAFEFA44163BE1CF0056CECD /* g_shkwav.h */,
FAFEFA45163BE1CF0056CECD /* g_stars.h */,
FAFEFA46163BE1CF0056CECD /* g_supp.h */,
FAFEFA47163BE1CF0056CECD /* g_swarm.h */,
FAFEFA48163BE1CF0056CECD /* g_telep.h */,
FAFEFA49163BE1CF0056CECD /* g_vapor.h */,
FAFEFA4A163BE1CF0056CECD /* g_wfx.h */,
FAFEFA4B163BE1CF0056CECD /* h_cockpt.h */,
FAFEFA4C163BE1CF0056CECD /* h_drwhud.h */,
FAFEFA4D163BE1CF0056CECD /* h_frmplt.h */,
FAFEFA4E163BE1CF0056CECD /* h_global.h */,
FAFEFA4F163BE1CF0056CECD /* h_radar.h */,
FAFEFA50163BE1CF0056CECD /* h_strmap.h */,
FAFEFA51163BE1CF0056CECD /* h_supp.h */,
FAFEFA52163BE1CF0056CECD /* h_text.h */,
FAFEFA53163BE1CF0056CECD /* il_joy.h */,
FAFEFA56163BE1CF0056CECD /* il_mouse.h */,
FAFEFA57163BE1CF0056CECD /* il_supp.h */,
FAFEFA5A163BE1CF0056CECD /* img_3df.h */,
FAFEFA5B163BE1CF0056CECD /* img_api.h */,
FAFEFA5C163BE1CF0056CECD /* img_conv.h */,
FAFEFA5D163BE1CF0056CECD /* img_jpg.h */,
FAFEFA5F163BE1CF0056CECD /* img_load.h */,
FAFEFA60163BE1CF0056CECD /* img_supp.h */,
FAFEFA62163BE1CF0056CECD /* img_tga.h */,
FAFEFA63163BE1CF0056CECD /* inp_comm.h */,
FAFEFA64163BE1CF0056CECD /* inp_defs.h */,
FAFEFA65163BE1CF0056CECD /* inp_glob.h */,
FAFEFA66163BE1CF0056CECD /* inp_init.h */,
FAB135B6164DAB97006CBB88 /* inp_keyn.h */,
FAFEFA67163BE1CF0056CECD /* inp_sdl.h */,
FAFEFA68163BE1CF0056CECD /* inp_subh.h */,
FAFEFA69163BE1CF0056CECD /* inp_user.h */,
FAFEFA6A163BE1CF0056CECD /* isdl_joy.h */,
FAFEFA6B163BE1CF0056CECD /* isdl_keydf.h */,
FAFEFA6C163BE1CF0056CECD /* isdl_keyn.h */,
FAFEFA6D163BE1CF0056CECD /* isdl_mouse.h */,
FAFEFA6E163BE1CF0056CECD /* isdl_supp.h */,
FAFEFA79163BE1CF0056CECD /* m_button.h */,
FAFEFA7A163BE1CF0056CECD /* m_list.h */,
FAFEFA7B163BE1CF0056CECD /* m_logo.h */,
FAFEFA7C163BE1CF0056CECD /* m_main.h */,
FAFEFA7D163BE1CF0056CECD /* m_option.h */,
FAFEFA7E163BE1CF0056CECD /* m_status.h */,
FAFEFA7F163BE1CF0056CECD /* m_viewer.h */,
FAFEFA80163BE1CF0056CECD /* net_conn.h */,
FAFEFA81163BE1CF0056CECD /* net_game.h */,
FAFEFA82163BE1CF0056CECD /* net_game_gmsv.h */,
FAFEFA83163BE1CF0056CECD /* net_game_peer.h */,
FAFEFA84163BE1CF0056CECD /* net_glob.h */,
FAFEFA85163BE1CF0056CECD /* net_gmsv.h */,
FAFEFA86163BE1CF0056CECD /* net_pckt_peer.h */,
FAFEFA87163BE1CF0056CECD /* net_peer.h */,
FAFEFA88163BE1CF0056CECD /* net_prediction.h */,
FAFEFA89163BE1CF0056CECD /* net_rmev.h */,
FAFEFA8A163BE1CF0056CECD /* net_rmev_gmsv.h */,
FAFEFA8B163BE1CF0056CECD /* net_rmev_peer.h */,
FAFEFA8C163BE1CF0056CECD /* net_serv.h */,
FAFEFA8D163BE1CF0056CECD /* net_subh.h */,
FAFEFA8E163BE1CF0056CECD /* net_udp.h */,
FAFEFA8F163BE1CF0056CECD /* net_udpdf.h */,
FAFEFA90163BE1CF0056CECD /* net_univ.h */,
FAFEFA91163BE1CF0056CECD /* net_util_cl.h */,
FAFEFA92163BE1CF0056CECD /* nl_udp.h */,
FAE294091655AA0B00D00541 /* nw_udp.h */,
FAFEFA95163BE1CF0056CECD /* obj_ani.h */,
FAFEFA96163BE1CF0056CECD /* obj_coll.h */,
FAFEFA97163BE1CF0056CECD /* obj_comm.h */,
FAFEFA98163BE1D00056CECD /* obj_ctrl.h */,
FAFEFA99163BE1D00056CECD /* obj_expl.h */,
FAFEFA9A163BE1D00056CECD /* obj_game.h */,
FAFEFA9B163BE1D00056CECD /* obj_iter.h */,
FAFEFA9C163BE1D00056CECD /* obj_part.h */,
FAFEFA9D163BE1D00056CECD /* obj_vani.h */,
FAFEFA9E163BE1D00056CECD /* obj_xtra.h */,
FAFEFA9F163BE1D00056CECD /* part_ani.h */,
FAFEFAA0163BE1D00056CECD /* part_api.h */,
FAFEFAA1163BE1D00056CECD /* part_def.h */,
FAFEFAA2163BE1D00056CECD /* part_sys.h */,
FAFEFAA3163BE1D00056CECD /* r_gl.h */,
FAFEFAA5163BE1D00056CECD /* r_glob.h */,
FAFEFAA6163BE1D00056CECD /* r_obj.h */,
FAFEFAA7163BE1D00056CECD /* r_part.h */,
FAFEFAA8163BE1D00056CECD /* r_patch.h */,
FAFEFAA9163BE1D00056CECD /* r_perf.h */,
FAFEFAAA163BE1D00056CECD /* r_sfx.h */,
FAFEFAAB163BE1D00056CECD /* r_supp.h */,
FAFEFAB5163BE1D00056CECD /* ro_api.h */,
FAFEFAB6163BE1D00056CECD /* ro_obj.h */,
FAFEFAB7163BE1D00056CECD /* ro_objmc.h */,
FAFEFAB8163BE1D00056CECD /* ro_part.h */,
FAFEFAB9163BE1D00056CECD /* ro_patch.h */,
FAFEFABA163BE1D00056CECD /* ro_perf.h */,
FAFEFABB163BE1D00056CECD /* ro_poly.h */,
FAFEFABC163BE1D00056CECD /* ro_sfx.h */,
FAFEFABD163BE1D00056CECD /* ro_supp.h */,
FAFEFABE163BE1D00056CECD /* sl_err.h */,
FAFEFABF163BE1D00056CECD /* sl_main.h */,
FAFEFAC0163BE1D00056CECD /* sl_msg.h */,
FAFEFAC1163BE1D00056CECD /* sl_opt.h */,
FAFEFAC2163BE1D00056CECD /* snd_api.h */,
FAFEFAC3163BE1D00056CECD /* snd_wav.h */,
FAFEFAD1163BE1D00056CECD /* sys_bind.h */,
FAFEFAD2163BE1D00056CECD /* sys_conv.h */,
FAFEFAD3163BE1D00056CECD /* sys_err.h */,
FAFEFAD4163BE1D00056CECD /* sys_glob.h */,
FAFEFAD5163BE1D00056CECD /* sys_msg.h */,
FAFEFAD6163BE1D00056CECD /* sys_subh.h */,
FAFEFAD7163BE1D00056CECD /* t_pack.h */,
FAFEFAD8163BE1D00056CECD /* vid_defs.h */,
FAFEFAD9163BE1D00056CECD /* vid_glob.h */,
FAFEFADA163BE1D00056CECD /* vid_init.h */,
FAFEFADB163BE1D00056CECD /* vid_plug.h */,
FAFEFADC163BE1D00056CECD /* vid_subh.h */,
FAFEFADD163BE1D00056CECD /* vid_supp.h */,
FAFEFAE6163BE1D00056CECD /* vsdl_buffo.h */,
FAFEFAE7163BE1D00056CECD /* vsdl_inito.h */,
FAFEFAE8163BE1D00056CECD /* vsdl_ogl.h */,
FAFEFAE9163BE1D00056CECD /* vsdl_suppo.h */,
);
path = include;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
FA371688164DD43600230CE8 /* Parsec Server */ = {
isa = PBXNativeTarget;
buildConfigurationList = FA371690164DD43600230CE8 /* Build configuration list for PBXNativeTarget "Parsec Server" */;
buildPhases = (
FA371685164DD43600230CE8 /* Sources */,
FA371693164DED1300230CE8 /* Copy Libraries */,
FA371686164DD43600230CE8 /* Frameworks */,
);
buildRules = (
);
dependencies = (
);
name = "Parsec Server";
productName = "Parsec Server";
productReference = FA371689164DD43600230CE8 /* Parsec Server */;
productType = "com.apple.product-type.tool";
};
FAFEE692163BDA5E0056CECD /* Parsec */ = {
isa = PBXNativeTarget;
buildConfigurationList = FAFEE6A6163BDA5E0056CECD /* Build configuration list for PBXNativeTarget "Parsec" */;
buildPhases = (
FAFEE68F163BDA5E0056CECD /* Sources */,
FAFEFF41163BE7600056CECD /* Copy Frameworks */,
FA29208C163DC04B000B8C26 /* Copy Libraries */,
FAFEE690163BDA5E0056CECD /* Frameworks */,
FAFEE691163BDA5E0056CECD /* Resources */,
FACC75FB164E6C590074A40E /* Copy Cons */,
);
buildRules = (
);
dependencies = (
);
name = Parsec;
productName = Parsec;
productReference = FAFEE693163BDA5E0056CECD /* Parsec.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
FAFEE689163BDA5E0056CECD /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0450;
ORGANIZATIONNAME = OpenParsec;
};
buildConfigurationList = FAFEE68C163BDA5E0056CECD /* Build configuration list for PBXProject "Parsec" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
);
mainGroup = FAFEE687163BDA5E0056CECD;
productRefGroup = FAFEE694163BDA5E0056CECD /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
FAFEE692163BDA5E0056CECD /* Parsec */,
FA371688164DD43600230CE8 /* Parsec Server */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
FAFEE691163BDA5E0056CECD /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FAB135BF164DB2CE006CBB88 /* parsec.icns in Resources */,
FAB135C2164DB2D4006CBB88 /* con.icns in Resources */,
FAB135C3164DB2D4006CBB88 /* dat.icns in Resources */,
FA72A2BE16E8209C00997EBE /* init.con in Resources */,
FAC8E8D816F3FDDC004DADF3 /* LICENSE.artwork_sound in Resources */,
FA72A2C016E8209C00997EBE /* pscdata0.dat in Resources */,
FA72A2C116E8209C00997EBE /* pscdata1.dat in Resources */,
FA72A2C216E8209C00997EBE /* pscdata2.dat in Resources */,
FA72A2C316E8209C00997EBE /* pscdata3.dat in Resources */,
FAB42EDA16F819B40017E7FD /* CREDITS in Resources */,
FAB42EDC16F819B80017E7FD /* LICENSE in Resources */,
FAB42EDE16F819BC0017E7FD /* LICENSE.readme in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
FA371685164DD43600230CE8 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FA3716BB164DEE8D00230CE8 /* net_pckt_gmsv.cpp in Sources */,
FA3716BC164DEE8D00230CE8 /* net_stream.cpp in Sources */,
FA3716BD164DEE8D00230CE8 /* net_swap.cpp in Sources */,
FA3716BE164DEE8D00230CE8 /* net_util.cpp in Sources */,
FA3716BF164DEE8D00230CE8 /* net_wrap.cpp in Sources */,
FA3716C0164DEE8D00230CE8 /* obj_clas.cpp in Sources */,
FA3716C1164DEE8D00230CE8 /* obj_creg.cpp in Sources */,
FA3716C2164DEE8D00230CE8 /* obj_cust.cpp in Sources */,
FA3716C3164DEE8D00230CE8 /* obj_odt.cpp in Sources */,
FA3716C4164DEE8D00230CE8 /* obj_type.cpp in Sources */,
FA3716C5164DEE8D00230CE8 /* sl_path.cpp in Sources */,
FA3716C6164DEE8D00230CE8 /* sl_timer.cpp in Sources */,
FA3716C7164DEE8D00230CE8 /* sys_date.cpp in Sources */,
FA3716C8164DEE8D00230CE8 /* sys_file.cpp in Sources */,
FA3716C9164DEE8D00230CE8 /* sys_swap.cpp in Sources */,
FA3716CA164DEE8D00230CE8 /* utl_bsp.cpp in Sources */,
FA3716CB164DEE8D00230CE8 /* utl_clip.cpp in Sources */,
FA3716CC164DEE8D00230CE8 /* utl_clpo.cpp in Sources */,
FA3716CD164DEE8D00230CE8 /* utl_cull.cpp in Sources */,
FA3716CE164DEE8D00230CE8 /* utl_logfile.cpp in Sources */,
FA3716CF164DEE8D00230CE8 /* utl_math.cpp in Sources */,
FA3716D0164DEE8D00230CE8 /* utl_math2.cpp in Sources */,
FA3716B4164DEE8100230CE8 /* con_arg.cpp in Sources */,
FA3716B5164DEE8100230CE8 /* con_tab.cpp in Sources */,
FA3716B6164DEE8100230CE8 /* con_vald.cpp in Sources */,
FA3716B7164DEE8100230CE8 /* debug.cpp in Sources */,
FA3716B8164DEE8100230CE8 /* e_modulemanager.cpp in Sources */,
FA3716B9164DEE8100230CE8 /* e_relist.cpp in Sources */,
FA3716BA164DEE8100230CE8 /* g_extra.cpp in Sources */,
FA3716AB164DEE7400230CE8 /* inp_main_sv.cpp in Sources */,
FA3716AC164DEE7400230CE8 /* net_packetdriver.cpp in Sources */,
FA3716AD164DEE7400230CE8 /* net_util_sv.cpp in Sources */,
FA3716AE164DEE7400230CE8 /* nl_udpdriver.cpp in Sources */,
FA3716AF164DEE7400230CE8 /* sl_util_sv.cpp in Sources */,
FA3716B0164DEE7400230CE8 /* sv_main.cpp in Sources */,
FA3716B1164DEE7400230CE8 /* sys_err_sv.cpp in Sources */,
FA3716B2164DEE7400230CE8 /* sys_msg_sv.cpp in Sources */,
FA3716B3164DEE7400230CE8 /* sys_util_sv.cpp in Sources */,
FA371694164DEE4400230CE8 /* con_act_sv.cpp in Sources */,
FA371695164DEE4400230CE8 /* con_aux_sv.cpp in Sources */,
FA371696164DEE4400230CE8 /* con_com_sv.cpp in Sources */,
FA371697164DEE4400230CE8 /* con_ext_sv.cpp in Sources */,
FA371698164DEE4400230CE8 /* con_info_sv.cpp in Sources */,
FA371699164DEE4400230CE8 /* con_int_sv.cpp in Sources */,
FA37169A164DEE4400230CE8 /* con_list_sv.cpp in Sources */,
FA37169B164DEE4400230CE8 /* con_load_sv.cpp in Sources */,
FA37169C164DEE4400230CE8 /* con_main_sv.cpp in Sources */,
FA37169D164DEE4400230CE8 /* con_std_sv.cpp in Sources */,
FA37169E164DEE4400230CE8 /* e_colldet_sv.cpp in Sources */,
FA37169F164DEE4400230CE8 /* e_connmanager.cpp in Sources */,
FA3716A0164DEE4400230CE8 /* e_gameserver.cpp in Sources */,
FA3716A1164DEE4400230CE8 /* e_global_sv.cpp in Sources */,
FA3716A2164DEE4400230CE8 /* e_packethandler.cpp in Sources */,
FA3716A3164DEE4400230CE8 /* e_simnetinput.cpp in Sources */,
FA3716A4164DEE4400230CE8 /* e_simnetoutput.cpp in Sources */,
FA3716A5164DEE4400230CE8 /* e_simplayerinfo.cpp in Sources */,
FA3716A6164DEE4400230CE8 /* e_simulator.cpp in Sources */,
FA3716A7164DEE4400230CE8 /* e_world.cpp in Sources */,
FA3716A8164DEE4400230CE8 /* g_main_sv.cpp in Sources */,
FA3716A9164DEE4400230CE8 /* g_player.cpp in Sources */,
FA3716AA164DEE4400230CE8 /* g_stgate_sv.cpp in Sources */,
FAE69E1616A7631200C1AC79 /* MasterServer.cpp in Sources */,
FAE69E1716A7631200C1AC79 /* MasterServerItem.cpp in Sources */,
FA17FD5316BB0C530003E370 /* g_emp.cpp in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
FAFEE68F163BDA5E0056CECD /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FAFEFCE0163BE1D00056CECD /* con_arg.cpp in Sources */,
FAFEFCE1163BE1D00056CECD /* con_tab.cpp in Sources */,
FAFEFCE2163BE1D00056CECD /* con_vald.cpp in Sources */,
FAFEFCE3163BE1D00056CECD /* debug.cpp in Sources */,
FAFEFCE4163BE1D00056CECD /* e_modulemanager.cpp in Sources */,
FAFEFCE5163BE1D00056CECD /* e_relist.cpp in Sources */,
FAFEFCE6163BE1D00056CECD /* g_extra.cpp in Sources */,
FAFEFCE8163BE1D00056CECD /* net_pckt_gmsv.cpp in Sources */,
FAFEFCE9163BE1D00056CECD /* net_stream.cpp in Sources */,
FAFEFCEA163BE1D00056CECD /* net_swap.cpp in Sources */,
FAFEFCEB163BE1D00056CECD /* net_util.cpp in Sources */,
FAFEFCEC163BE1D00056CECD /* net_wrap.cpp in Sources */,
FAFEFCED163BE1D00056CECD /* obj_clas.cpp in Sources */,
FAFEFCEE163BE1D00056CECD /* obj_creg.cpp in Sources */,
FAFEFCEF163BE1D00056CECD /* obj_cust.cpp in Sources */,
FAFEFCF0163BE1D00056CECD /* obj_odt.cpp in Sources */,
FAFEFCF1163BE1D00056CECD /* obj_type.cpp in Sources */,
FAFEFCF2163BE1D00056CECD /* sl_path.cpp in Sources */,
FAFEFCF3163BE1D00056CECD /* sl_timer.cpp in Sources */,
FAFEFCF7163BE1D00056CECD /* sys_date.cpp in Sources */,
FAFEFCF8163BE1D00056CECD /* sys_file.cpp in Sources */,
FAFEFCF9163BE1D00056CECD /* sys_swap.cpp in Sources */,
FAFEFCFA163BE1D00056CECD /* utl_bsp.cpp in Sources */,
FAFEFCFB163BE1D00056CECD /* utl_clip.cpp in Sources */,
FAFEFCFC163BE1D00056CECD /* utl_clpo.cpp in Sources */,
FAFEFCFD163BE1D00056CECD /* utl_cull.cpp in Sources */,
FAFEFCFE163BE1D00056CECD /* utl_logfile.cpp in Sources */,
FAFEFCFF163BE1D00056CECD /* utl_math.cpp in Sources */,
FAFEFD00163BE1D00056CECD /* utl_math2.cpp in Sources */,
FAFEFD03163BE1D00056CECD /* aud_bkgn.cpp in Sources */,
FAFEFD04163BE1D00056CECD /* aud_comm.cpp in Sources */,
FAFEFD05163BE1D00056CECD /* aud_game.cpp in Sources */,
FAFEFD06163BE1D00056CECD /* aud_glob.cpp in Sources */,
FAFEFD07163BE1D00056CECD /* aud_supp.cpp in Sources */,
FAFEFD0F163BE1D00056CECD /* con_act.cpp in Sources */,
FAFEFD10163BE1D00056CECD /* con_aux.cpp in Sources */,
FAFEFD11163BE1D00056CECD /* con_cani.cpp in Sources */,
FAFEFD12163BE1D00056CECD /* con_com.cpp in Sources */,
FAFEFD13163BE1D00056CECD /* con_conf.cpp in Sources */,
FAFEFD14163BE1D00056CECD /* con_ext.cpp in Sources */,
FAFEFD15163BE1D00056CECD /* con_geom.cpp in Sources */,
FAFEFD16163BE1D00056CECD /* con_info.cpp in Sources */,
FAFEFD17163BE1D00056CECD /* con_int.cpp in Sources */,
FAFEFD18163BE1D00056CECD /* con_kmap.cpp in Sources */,
FAFEFD19163BE1D00056CECD /* con_list.cpp in Sources */,
FAFEFD1A163BE1D00056CECD /* con_load.cpp in Sources */,
FAFEFD1B163BE1D00056CECD /* con_main.cpp in Sources */,
FAFEFD1C163BE1D00056CECD /* con_path.cpp in Sources */,
FAFEFD1D163BE1D00056CECD /* con_rc.cpp in Sources */,
FAFEFD1E163BE1D00056CECD /* con_say.cpp in Sources */,
FAFEFD1F163BE1D00056CECD /* con_shad.cpp in Sources */,
FAFEFD20163BE1D00056CECD /* con_std.cpp in Sources */,
FAFEFD21163BE1D00056CECD /* con_tani.cpp in Sources */,
FAFEFD22163BE1D00056CECD /* d_glob.cpp in Sources */,
FAFEFD23163BE1D00056CECD /* d_misc.cpp in Sources */,
FAFEFD81163BE1D00056CECD /* do_bmap.cpp in Sources */,
FAFEFD82163BE1D00056CECD /* do_font.cpp in Sources */,
FAFEFD83163BE1D00056CECD /* do_iter.cpp in Sources */,
FAFEFD84163BE1D00056CECD /* do_misc.cpp in Sources */,
FAFEFD85163BE1D00056CECD /* do_patch.cpp in Sources */,
FAFEFD86163BE1D00056CECD /* e_callbk.cpp in Sources */,
FAFEFD87163BE1D00056CECD /* e_colani.cpp in Sources */,
FAFEFD88163BE1D00056CECD /* e_color.cpp in Sources */,
FAFEFD89163BE1D00056CECD /* e_demo.cpp in Sources */,
FAFEFD8A163BE1D00056CECD /* e_draw.cpp in Sources */,
FAFEFD8B163BE1D00056CECD /* e_events.cpp in Sources */,
FAFEFD8C163BE1D00056CECD /* e_getopt.cpp in Sources */,
FAFEFD8D163BE1D00056CECD /* e_global.cpp in Sources */,
FAFEFD8E163BE1D00056CECD /* e_level.cpp in Sources */,
FAFEFD8F163BE1D00056CECD /* e_loader.cpp in Sources */,
FAFEFD90163BE1D00056CECD /* e_mouse.cpp in Sources */,
FAFEFD91163BE1D00056CECD /* e_record.cpp in Sources */,
FAFEFD92163BE1D00056CECD /* e_replay.cpp in Sources */,
FAFEFD93163BE1D00056CECD /* e_shader.cpp in Sources */,
FAFEFD94163BE1D00056CECD /* e_supp.cpp in Sources */,
FAFEFD95163BE1D00056CECD /* e_texani.cpp in Sources */,
FAFEFD96163BE1D00056CECD /* e_vtxani.cpp in Sources */,
FAFEFD97163BE1D00056CECD /* g_boot.cpp in Sources */,
FAFEFD98163BE1D00056CECD /* g_bot_cl.cpp in Sources */,
FAFEFD99163BE1D00056CECD /* g_camera.cpp in Sources */,
FAFEFD9A163BE1D00056CECD /* g_cloud.cpp in Sources */,
FAFEFD9C163BE1D00056CECD /* g_explod.cpp in Sources */,
FAFEFD9D163BE1D00056CECD /* g_gameloop.cpp in Sources */,
FAFEFD9E163BE1D00056CECD /* g_global.cpp in Sources */,
FAFEFD9F163BE1D00056CECD /* g_laser.cpp in Sources */,
FAFEFDA0163BE1D00056CECD /* g_planet.cpp in Sources */,
FAFEFDA1163BE1D00056CECD /* g_sfx.cpp in Sources */,
FAFEFDA2163BE1D00056CECD /* g_shkwav.cpp in Sources */,
FAFEFDA3163BE1D00056CECD /* g_stars.cpp in Sources */,
FAFEFDA4163BE1D00056CECD /* g_stgate.cpp in Sources */,
FAFEFDA5163BE1D00056CECD /* g_supp.cpp in Sources */,
FAFEFDA6163BE1D00056CECD /* g_swarm.cpp in Sources */,
FAFEFDA7163BE1D00056CECD /* g_telep.cpp in Sources */,
FAFEFDA8163BE1D00056CECD /* g_vapor.cpp in Sources */,
FAFEFDA9163BE1D00056CECD /* g_wfx.cpp in Sources */,
FAFEFDAA163BE1D00056CECD /* h_cockpt.cpp in Sources */,
FAFEFDAB163BE1D00056CECD /* h_drwhud.cpp in Sources */,
FAFEFDAC163BE1D00056CECD /* h_frmplt.cpp in Sources */,
FAFEFDAD163BE1D00056CECD /* h_global.cpp in Sources */,
FAFEFDAE163BE1D00056CECD /* h_radar.cpp in Sources */,
FAFEFDAF163BE1D00056CECD /* h_strmap.cpp in Sources */,
FAFEFDB0163BE1D00056CECD /* h_supp.cpp in Sources */,
FAFEFDB1163BE1D00056CECD /* h_text.cpp in Sources */,
FAFEFDB7163BE1D00056CECD /* img_3df.cpp in Sources */,
FAFEFDB8163BE1D00056CECD /* img_api.cpp in Sources */,
FAFEFDB9163BE1D00056CECD /* img_conv.cpp in Sources */,
FAFEFDBA163BE1D00056CECD /* img_jpg.cpp in Sources */,
FAFEFDBB163BE1D00056CECD /* img_load.cpp in Sources */,
FAFEFDBC163BE1D00056CECD /* img_supp.cpp in Sources */,
FAFEFDBE163BE1D00056CECD /* img_tga.cpp in Sources */,
FAFEFDBF163BE1D00056CECD /* inp_comm.cpp in Sources */,
FAFEFDC0163BE1D00056CECD /* inp_glob.cpp in Sources */,
FAFEFDC1163BE1D00056CECD /* inp_init.cpp in Sources */,
FAFEFDC2163BE1D00056CECD /* inp_sdl.cpp in Sources */,
FAFEFDC3163BE1D00056CECD /* inp_user.cpp in Sources */,
FAFEFDC4163BE1D00056CECD /* isdl_joy.cpp in Sources */,
FAFEFDC5163BE1D00056CECD /* isdl_mouse.cpp in Sources */,
FAFEFDC6163BE1D00056CECD /* isdl_supp.cpp in Sources */,
FAFEFDCD163BE1D00056CECD /* m_button.cpp in Sources */,
FAFEFDCE163BE1D00056CECD /* m_list.cpp in Sources */,
FAFEFDCF163BE1D00056CECD /* m_logo.cpp in Sources */,
FAFEFDD0163BE1D00056CECD /* m_main.cpp in Sources */,
FAFEFDD1163BE1D00056CECD /* m_option.cpp in Sources */,
FAFEFDD2163BE1D00056CECD /* m_status.cpp in Sources */,
FAFEFDD3163BE1D00056CECD /* m_viewer.cpp in Sources */,
FAFEFDD5163BE1D00056CECD /* net_conn.cpp in Sources */,
FAFEFDD6163BE1D00056CECD /* net_game.cpp in Sources */,
FAFEFDD7163BE1D00056CECD /* net_game_gmsv.cpp in Sources */,
FAFEFDD8163BE1D00056CECD /* net_game_peer.cpp in Sources */,
FAFEFDD9163BE1D00056CECD /* net_glob.cpp in Sources */,
FAFEFDDA163BE1D00056CECD /* net_gmsv.cpp in Sources */,
FAFEFDDB163BE1D00056CECD /* net_pckt.cpp in Sources */,
FAFEFDDC163BE1D00056CECD /* net_pckt_peer.cpp in Sources */,
FAFEFDDD163BE1D00056CECD /* net_peer.cpp in Sources */,
FAFEFDDE163BE1D00056CECD /* net_prediction.cpp in Sources */,
FAFEFDDF163BE1D00056CECD /* net_rmev.cpp in Sources */,
FAFEFDE0163BE1D00056CECD /* net_rmev_gmsv.cpp in Sources */,
FAFEFDE1163BE1D00056CECD /* net_rmev_peer.cpp in Sources */,
FAFEFDE2163BE1D00056CECD /* net_serv.cpp in Sources */,
FAFEFDE3163BE1D00056CECD /* net_udp.cpp in Sources */,
FAFEFDE4163BE1D00056CECD /* net_univ.cpp in Sources */,
FAFEFDE5163BE1D00056CECD /* net_util_cl.cpp in Sources */,
FAFEFDE6163BE1D00056CECD /* nl_udp.cpp in Sources */,
FAFEFDE9163BE1D00056CECD /* obj_ani.cpp in Sources */,
FAFEFDEA163BE1D00056CECD /* obj_coll.cpp in Sources */,
FAFEFDEB163BE1D00056CECD /* obj_comm.cpp in Sources */,
FAFEFDEC163BE1D00056CECD /* obj_ctrl.cpp in Sources */,
FAFEFDED163BE1D00056CECD /* obj_expl.cpp in Sources */,
FAFEFDEE163BE1D00056CECD /* obj_game.cpp in Sources */,
FAFEFDEF163BE1D00056CECD /* obj_iter.cpp in Sources */,
FAFEFDF0163BE1D00056CECD /* obj_part.cpp in Sources */,
FAFEFDF1163BE1D00056CECD /* obj_vani.cpp in Sources */,
FAFEFDF2163BE1D00056CECD /* obj_xtra.cpp in Sources */,
FAFEFDF3163BE1D00056CECD /* part_ani.cpp in Sources */,
FAFEFDF4163BE1D00056CECD /* part_api.cpp in Sources */,
FAFEFDF5163BE1D00056CECD /* part_def.cpp in Sources */,
FAFEFDF6163BE1D00056CECD /* part_sys.cpp in Sources */,
FAFEFDF7163BE1D00056CECD /* r_glob.cpp in Sources */,
FAFEFE00163BE1D00056CECD /* ro_api.cpp in Sources */,
FAFEFE01163BE1D00056CECD /* ro_obj.cpp in Sources */,
FAFEFE02163BE1D00056CECD /* ro_part.cpp in Sources */,
FAFEFE03163BE1D00056CECD /* ro_patch.cpp in Sources */,
FAFEFE04163BE1D00056CECD /* ro_perf.cpp in Sources */,
FAFEFE05163BE1D00056CECD /* ro_poly.cpp in Sources */,
FAFEFE06163BE1D00056CECD /* ro_sfx.cpp in Sources */,
FAFEFE07163BE1D00056CECD /* ro_supp.cpp in Sources */,
FAFEFE08163BE1D00056CECD /* sl_err.cpp in Sources */,
FAFEFE09163BE1D00056CECD /* sl_main.cpp in Sources */,
FAFEFE0A163BE1D00056CECD /* sl_msg.cpp in Sources */,
FAFEFE0B163BE1D00056CECD /* sl_opt.cpp in Sources */,
FAFEFE0C163BE1D00056CECD /* snd_api.cpp in Sources */,
FAFEFE0D163BE1D00056CECD /* snd_wav.cpp in Sources */,
FAFEFE1A163BE1D00056CECD /* sys_bind.cpp in Sources */,
FAFEFE1B163BE1D00056CECD /* sys_conv.cpp in Sources */,
FAFEFE1C163BE1D00056CECD /* sys_glob.cpp in Sources */,
FAFEFE1D163BE1D00056CECD /* t_pack.cpp in Sources */,
FAFEFE1E163BE1D00056CECD /* vid_glob.cpp in Sources */,
FAFEFE1F163BE1D00056CECD /* vid_init.cpp in Sources */,
FAFEFE20163BE1D00056CECD /* vid_plug.cpp in Sources */,
FAFEFE21163BE1D00056CECD /* vid_supp.cpp in Sources */,
FAFEFE2A163BE1D00056CECD /* vsdl_buffo.cpp in Sources */,
FAFEFE2B163BE1D00056CECD /* vsdl_inito.cpp in Sources */,
FAFEFE2C163BE1D00056CECD /* vsdl_ogl.cpp in Sources */,
FAFEFE2D163BE1D00056CECD /* vsdl_suppo.cpp in Sources */,
FAB135B5164DAB73006CBB88 /* aud_sdlmixer.cpp in Sources */,
FA5F84F9165478C600AD25B3 /* SDLMain.m in Sources */,
FAE294001655A28900D00541 /* sw_path.cpp in Sources */,
FAE294011655A28900D00541 /* sw_timer.cpp in Sources */,
FAE294061655A86F00D00541 /* nw_udp.cpp in Sources */,
FAE69DE316A74C4100C1AC79 /* stb_image.cpp in Sources */,
FA84A68016A7B59F005F649F /* stb_image_write.c in Sources */,
FAADE10016AB271B005D7250 /* glew.c in Sources */,
FA17FD5216BB0C1D0003E370 /* g_emp.cpp in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXVariantGroup section */
FAFEE6A1163BDA5E0056CECD /* InfoPlist.strings */ = {
isa = PBXVariantGroup;
children = (
FAFEE6A2163BDA5E0056CECD /* en */,
);
name = InfoPlist.strings;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
FA371691164DD43600230CE8 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
PARSEC_SERVER,
);
GCC_VERSION = "";
HEADER_SEARCH_PATHS = (
/usr/local/include,
"\"$(SRCROOT)/../../src/libraries\"",
);
LD_RUNPATH_SEARCH_PATHS = "@loader_path";
LIBRARY_SEARCH_PATHS = /usr/local/lib;
MACOSX_DEPLOYMENT_TARGET = 10.5;
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Debug;
};
FA371692164DD43600230CE8 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
GCC_PREPROCESSOR_DEFINITIONS = PARSEC_SERVER;
GCC_VERSION = "";
HEADER_SEARCH_PATHS = (
/usr/local/include,
"\"$(SRCROOT)/../../src/libraries\"",
);
LD_RUNPATH_SEARCH_PATHS = "@loader_path";
LIBRARY_SEARCH_PATHS = /usr/local/lib;
MACOSX_DEPLOYMENT_TARGET = 10.5;
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Release;
};
FAFEE6A4163BDA5E0056CECD /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
CLANG_CXX_LANGUAGE_STANDARD = "compiler-default";
CLANG_CXX_LIBRARY = "compiler-default";
CLANG_ENABLE_OBJC_ARC = "";
CLANG_WARN_CXX0X_EXTENSIONS = NO;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION = NO;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = NO;
FRAMEWORK_SEARCH_PATHS = /Library/Frameworks;
GCC_C_LANGUAGE_STANDARD = c99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
PARSEC_CLIENT,
DEBUG,
);
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
GCC_TREAT_INCOMPATIBLE_POINTER_TYPE_WARNINGS_AS_ERRORS = YES;
GCC_VERSION = "";
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_PEDANTIC = NO;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
HEADER_SEARCH_PATHS = (
"\"$(SRCROOT)/../src\"",
"\"$(SRCROOT)/../src/libparsec\"",
"\"$(SRCROOT)/../src/parsec\"",
);
LD_RUNPATH_SEARCH_PATHS = "";
MACOSX_DEPLOYMENT_TARGET = 10.5;
ONLY_ACTIVE_ARCH = YES;
OTHER_LDFLAGS = "";
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = "";
TEST_AFTER_BUILD = NO;
VALID_ARCHS = i386;
};
name = Debug;
};
FAFEE6A5163BDA5E0056CECD /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
CLANG_CXX_LANGUAGE_STANDARD = "compiler-default";
CLANG_CXX_LIBRARY = "compiler-default";
CLANG_ENABLE_OBJC_ARC = "";
CLANG_WARN_CXX0X_EXTENSIONS = NO;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION = NO;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = YES;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
FRAMEWORK_SEARCH_PATHS = /Library/Frameworks;
GCC_C_LANGUAGE_STANDARD = c99;
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
GCC_PREPROCESSOR_DEFINITIONS = PARSEC_CLIENT;
GCC_TREAT_INCOMPATIBLE_POINTER_TYPE_WARNINGS_AS_ERRORS = YES;
GCC_VERSION = "";
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_PEDANTIC = NO;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
HEADER_SEARCH_PATHS = (
"\"$(SRCROOT)/../src\"",
"\"$(SRCROOT)/../src/libparsec\"",
"\"$(SRCROOT)/../src/parsec\"",
);
LD_RUNPATH_SEARCH_PATHS = "";
LLVM_LTO = YES;
MACOSX_DEPLOYMENT_TARGET = 10.5;
OTHER_LDFLAGS = "";
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = "";
TEST_AFTER_BUILD = NO;
VALID_ARCHS = i386;
};
name = Release;
};
FAFEE6A7163BDA5E0056CECD /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
CLANG_CXX_LANGUAGE_STANDARD = "compiler-default";
CLANG_CXX_LIBRARY = "compiler-default";
CLANG_WARN_CXX0X_EXTENSIONS = NO;
CLANG_X86_VECTOR_INSTRUCTIONS = default;
COMBINE_HIDPI_IMAGES = YES;
COPY_PHASE_STRIP = NO;
GCC_C_LANGUAGE_STANDARD = c99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_PRECOMPILE_PREFIX_HEADER = NO;
GCC_PREFIX_HEADER = "";
GCC_TREAT_INCOMPATIBLE_POINTER_TYPE_WARNINGS_AS_ERRORS = YES;
GCC_VERSION = "";
GCC_WARN_ABOUT_MISSING_NEWLINE = YES;
GCC_WARN_SHADOW = NO;
HEADER_SEARCH_PATHS = (
/Library/Frameworks/SDL.framework/Headers,
/Library/Frameworks/SDL_mixer.framework/Headers,
/usr/local/include,
"\"$(SRCROOT)/../../src/libraries\"",
);
INFOPLIST_FILE = "Parsec-Info.plist";
LD_RUNPATH_SEARCH_PATHS = "@loader_path/../Frameworks @loader_path/../Libraries";
LIBRARY_SEARCH_PATHS = /Library/Frameworks;
MACOSX_DEPLOYMENT_TARGET = 10.5;
PRODUCT_NAME = "$(TARGET_NAME)";
VALID_ARCHS = i386;
WRAPPER_EXTENSION = app;
};
name = Debug;
};
FAFEE6A8163BDA5E0056CECD /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
CLANG_CXX_LANGUAGE_STANDARD = "compiler-default";
CLANG_CXX_LIBRARY = "compiler-default";
CLANG_WARN_CXX0X_EXTENSIONS = NO;
CLANG_X86_VECTOR_INSTRUCTIONS = default;
COMBINE_HIDPI_IMAGES = YES;
COPY_PHASE_STRIP = YES;
GCC_C_LANGUAGE_STANDARD = c99;
GCC_PRECOMPILE_PREFIX_HEADER = NO;
GCC_PREFIX_HEADER = "";
GCC_TREAT_INCOMPATIBLE_POINTER_TYPE_WARNINGS_AS_ERRORS = YES;
GCC_VERSION = "";
GCC_WARN_ABOUT_MISSING_NEWLINE = YES;
GCC_WARN_SHADOW = NO;
HEADER_SEARCH_PATHS = (
/Library/Frameworks/SDL.framework/Headers,
/Library/Frameworks/SDL_mixer.framework/Headers,
/usr/local/include,
"\"$(SRCROOT)/../../src/libraries\"",
);
INFOPLIST_FILE = "Parsec-Info.plist";
LD_RUNPATH_SEARCH_PATHS = "@loader_path/../Frameworks @loader_path/../Libraries";
LIBRARY_SEARCH_PATHS = /Library/Frameworks;
LLVM_LTO = YES;
MACOSX_DEPLOYMENT_TARGET = 10.5;
ONLY_ACTIVE_ARCH = NO;
OTHER_LDFLAGS = "";
PRODUCT_NAME = "$(TARGET_NAME)";
VALID_ARCHS = i386;
WRAPPER_EXTENSION = app;
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
FA371690164DD43600230CE8 /* Build configuration list for PBXNativeTarget "Parsec Server" */ = {
isa = XCConfigurationList;
buildConfigurations = (
FA371691164DD43600230CE8 /* Debug */,
FA371692164DD43600230CE8 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
FAFEE68C163BDA5E0056CECD /* Build configuration list for PBXProject "Parsec" */ = {
isa = XCConfigurationList;
buildConfigurations = (
FAFEE6A4163BDA5E0056CECD /* Debug */,
FAFEE6A5163BDA5E0056CECD /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
FAFEE6A6163BDA5E0056CECD /* Build configuration list for PBXNativeTarget "Parsec" */ = {
isa = XCConfigurationList;
buildConfigurations = (
FAFEE6A7163BDA5E0056CECD /* Debug */,
FAFEE6A8163BDA5E0056CECD /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = FAFEE689163BDA5E0056CECD /* Project object */;
}
|