summaryrefslogblamecommitdiff
path: root/Xcode/ManaPlus.xcodeproj/project.pbxproj
blob: 1adabd1c1d277ece6b3f6534871ed540c8c991aa (plain) (tree)
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
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
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
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
































































































































































































































































































































































































































































































































































































































































































































































                                                                                                                                                                                   
                                                                                                                                                   





















                                                                                                                                                                            











                                                                                        

































                                                                                                  



































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                                                                                                                                                                                   
                                                                                                                                                                








                                                                                                                                                                                                                                        






                                                             







                                                                                                   













































                                                                                                     







                                                                                     













































































































































































                                                                                        
                                                                    





















































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                                                        


                                                                           
































































                                                                                                                                             
                                                                                 


























                                                                                                                                    












                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                     
                                                     




















                                                                             
                                                     
























                                                                                        





                                                                                       

































                                                                                        





                                                                                       




















                                                                                                             
                                                                
                                                                
                                                 













                                                                                                             
                                                                
                                                                
                                                 






































                                                                                                               
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 46;
	objects = {

/* Begin PBXBuildFile section */
		2BDF45C4166D5AEC0054E77F /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2BDF45C3166D5AEC0054E77F /* Cocoa.framework */; };
		2BDF45CE166D5AEC0054E77F /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 2BDF45CC166D5AEC0054E77F /* InfoPlist.strings */; };
		2BDF45D4166D5AEC0054E77F /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = 2BDF45D2166D5AEC0054E77F /* Credits.rtf */; };
		2BDF45D7166D5AEC0054E77F /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF45D6166D5AEC0054E77F /* AppDelegate.m */; };
		2BDF45DA166D5AEC0054E77F /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2BDF45D8166D5AEC0054E77F /* MainMenu.xib */; };
		2BDF45E2166D5AEC0054E77F /* SenTestingKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2BDF45E1166D5AEC0054E77F /* SenTestingKit.framework */; };
		2BDF45E3166D5AEC0054E77F /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2BDF45C3166D5AEC0054E77F /* Cocoa.framework */; };
		2BDF45EB166D5AEC0054E77F /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 2BDF45E9166D5AEC0054E77F /* InfoPlist.strings */; };
		2BDF45EE166D5AEC0054E77F /* ManaPlusTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF45ED166D5AEC0054E77F /* ManaPlusTests.m */; };
		2BDF4A76166D5B690054E77F /* actionmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4755166D5B680054E77F /* actionmanager.cpp */; };
		2BDF4A77166D5B690054E77F /* actionmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4755166D5B680054E77F /* actionmanager.cpp */; };
		2BDF4A78166D5B690054E77F /* actor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4757166D5B680054E77F /* actor.cpp */; };
		2BDF4A79166D5B690054E77F /* actor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4757166D5B680054E77F /* actor.cpp */; };
		2BDF4A7A166D5B690054E77F /* actorsprite.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4759166D5B680054E77F /* actorsprite.cpp */; };
		2BDF4A7B166D5B690054E77F /* actorsprite.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4759166D5B680054E77F /* actorsprite.cpp */; };
		2BDF4A7C166D5B690054E77F /* actorspritemanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF475C166D5B680054E77F /* actorspritemanager.cpp */; };
		2BDF4A7D166D5B690054E77F /* actorspritemanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF475C166D5B680054E77F /* actorspritemanager.cpp */; };
		2BDF4A7E166D5B690054E77F /* animatedsprite.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF475E166D5B680054E77F /* animatedsprite.cpp */; };
		2BDF4A7F166D5B690054E77F /* animatedsprite.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF475E166D5B680054E77F /* animatedsprite.cpp */; };
		2BDF4A80166D5B690054E77F /* animationdelayload.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4760166D5B680054E77F /* animationdelayload.cpp */; };
		2BDF4A81166D5B690054E77F /* animationdelayload.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4760166D5B680054E77F /* animationdelayload.cpp */; };
		2BDF4A82166D5B690054E77F /* animationparticle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4762166D5B680054E77F /* animationparticle.cpp */; };
		2BDF4A83166D5B690054E77F /* animationparticle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4762166D5B680054E77F /* animationparticle.cpp */; };
		2BDF4A84166D5B690054E77F /* auctionmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4764166D5B680054E77F /* auctionmanager.cpp */; };
		2BDF4A85166D5B690054E77F /* auctionmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4764166D5B680054E77F /* auctionmanager.cpp */; };
		2BDF4A86166D5B690054E77F /* avatar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4766166D5B680054E77F /* avatar.cpp */; };
		2BDF4A87166D5B690054E77F /* avatar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4766166D5B680054E77F /* avatar.cpp */; };
		2BDF4A88166D5B690054E77F /* being.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4768166D5B680054E77F /* being.cpp */; };
		2BDF4A89166D5B690054E77F /* being.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4768166D5B680054E77F /* being.cpp */; };
		2BDF4A8A166D5B690054E77F /* channel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF476A166D5B680054E77F /* channel.cpp */; };
		2BDF4A8B166D5B690054E77F /* channel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF476A166D5B680054E77F /* channel.cpp */; };
		2BDF4A8C166D5B690054E77F /* channelmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF476C166D5B680054E77F /* channelmanager.cpp */; };
		2BDF4A8D166D5B690054E77F /* channelmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF476C166D5B680054E77F /* channelmanager.cpp */; };
		2BDF4A8E166D5B690054E77F /* chatlogger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF476E166D5B680054E77F /* chatlogger.cpp */; };
		2BDF4A8F166D5B690054E77F /* chatlogger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF476E166D5B680054E77F /* chatlogger.cpp */; };
		2BDF4A90166D5B690054E77F /* client.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4770166D5B680054E77F /* client.cpp */; };
		2BDF4A91166D5B690054E77F /* client.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4770166D5B680054E77F /* client.cpp */; };
		2BDF4A92166D5B690054E77F /* commandhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4772166D5B680054E77F /* commandhandler.cpp */; };
		2BDF4A93166D5B690054E77F /* commandhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4772166D5B680054E77F /* commandhandler.cpp */; };
		2BDF4A94166D5B690054E77F /* commands.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4774166D5B680054E77F /* commands.cpp */; };
		2BDF4A95166D5B690054E77F /* commands.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4774166D5B680054E77F /* commands.cpp */; };
		2BDF4A96166D5B690054E77F /* compoundsprite.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4776166D5B680054E77F /* compoundsprite.cpp */; };
		2BDF4A97166D5B690054E77F /* compoundsprite.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4776166D5B680054E77F /* compoundsprite.cpp */; };
		2BDF4A98166D5B690054E77F /* configuration.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4779166D5B680054E77F /* configuration.cpp */; };
		2BDF4A99166D5B690054E77F /* configuration.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4779166D5B680054E77F /* configuration.cpp */; };
		2BDF4A9A166D5B690054E77F /* debug_new.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF477C166D5B680054E77F /* debug_new.cpp */; };
		2BDF4A9B166D5B690054E77F /* debug_new.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF477C166D5B680054E77F /* debug_new.cpp */; };
		2BDF4A9C166D5B690054E77F /* defaults.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4781166D5B680054E77F /* defaults.cpp */; };
		2BDF4A9D166D5B690054E77F /* defaults.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4781166D5B680054E77F /* defaults.cpp */; };
		2BDF4A9E166D5B690054E77F /* depricatedevent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4783166D5B680054E77F /* depricatedevent.cpp */; };
		2BDF4A9F166D5B690054E77F /* depricatedevent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4783166D5B680054E77F /* depricatedevent.cpp */; };
		2BDF4AA0166D5B690054E77F /* dropshortcut.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4785166D5B680054E77F /* dropshortcut.cpp */; };
		2BDF4AA1166D5B690054E77F /* dropshortcut.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4785166D5B680054E77F /* dropshortcut.cpp */; };
		2BDF4AA2166D5B690054E77F /* effectmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4787166D5B680054E77F /* effectmanager.cpp */; };
		2BDF4AA3166D5B690054E77F /* effectmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4787166D5B680054E77F /* effectmanager.cpp */; };
		2BDF4AA4166D5B690054E77F /* emoteshortcut.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4789166D5B680054E77F /* emoteshortcut.cpp */; };
		2BDF4AA5166D5B690054E77F /* emoteshortcut.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4789166D5B680054E77F /* emoteshortcut.cpp */; };
		2BDF4AAA166D5B690054E77F /* flooritem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF478E166D5B680054E77F /* flooritem.cpp */; };
		2BDF4AAB166D5B690054E77F /* flooritem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF478E166D5B680054E77F /* flooritem.cpp */; };
		2BDF4AAC166D5B690054E77F /* game.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4790166D5B680054E77F /* game.cpp */; };
		2BDF4AAD166D5B690054E77F /* game.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4790166D5B680054E77F /* game.cpp */; };
		2BDF4AAE166D5B690054E77F /* graphics.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4792166D5B680054E77F /* graphics.cpp */; };
		2BDF4AAF166D5B690054E77F /* graphics.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4792166D5B680054E77F /* graphics.cpp */; };
		2BDF4AB0166D5B690054E77F /* graphicsmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4794166D5B680054E77F /* graphicsmanager.cpp */; };
		2BDF4AB1166D5B690054E77F /* graphicsmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4794166D5B680054E77F /* graphicsmanager.cpp */; };
		2BDF4AB2166D5B690054E77F /* graphicsvertexes.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4796166D5B680054E77F /* graphicsvertexes.cpp */; };
		2BDF4AB3166D5B690054E77F /* graphicsvertexes.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4796166D5B680054E77F /* graphicsvertexes.cpp */; };
		2BDF4AB4166D5B690054E77F /* beingpopup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4799166D5B680054E77F /* beingpopup.cpp */; };
		2BDF4AB5166D5B690054E77F /* beingpopup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4799166D5B680054E77F /* beingpopup.cpp */; };
		2BDF4AB6166D5B690054E77F /* botcheckerwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF479B166D5B680054E77F /* botcheckerwindow.cpp */; };
		2BDF4AB7166D5B690054E77F /* botcheckerwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF479B166D5B680054E77F /* botcheckerwindow.cpp */; };
		2BDF4AB8166D5B690054E77F /* buydialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF479D166D5B680054E77F /* buydialog.cpp */; };
		2BDF4AB9166D5B690054E77F /* buydialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF479D166D5B680054E77F /* buydialog.cpp */; };
		2BDF4ABA166D5B690054E77F /* buyselldialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF479F166D5B680054E77F /* buyselldialog.cpp */; };
		2BDF4ABB166D5B690054E77F /* buyselldialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF479F166D5B680054E77F /* buyselldialog.cpp */; };
		2BDF4ABC166D5B690054E77F /* changeemaildialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47A1166D5B680054E77F /* changeemaildialog.cpp */; };
		2BDF4ABD166D5B690054E77F /* changeemaildialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47A1166D5B680054E77F /* changeemaildialog.cpp */; };
		2BDF4ABE166D5B690054E77F /* changepassworddialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47A3166D5B680054E77F /* changepassworddialog.cpp */; };
		2BDF4ABF166D5B690054E77F /* changepassworddialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47A3166D5B680054E77F /* changepassworddialog.cpp */; };
		2BDF4AC0166D5B690054E77F /* charcreatedialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47A5166D5B680054E77F /* charcreatedialog.cpp */; };
		2BDF4AC1166D5B690054E77F /* charcreatedialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47A5166D5B680054E77F /* charcreatedialog.cpp */; };
		2BDF4AC2166D5B690054E77F /* charselectdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47A7166D5B680054E77F /* charselectdialog.cpp */; };
		2BDF4AC3166D5B690054E77F /* charselectdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47A7166D5B680054E77F /* charselectdialog.cpp */; };
		2BDF4AC4166D5B690054E77F /* chatwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47A9166D5B680054E77F /* chatwindow.cpp */; };
		2BDF4AC5166D5B690054E77F /* chatwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47A9166D5B680054E77F /* chatwindow.cpp */; };
		2BDF4AC6166D5B690054E77F /* confirmdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47AB166D5B680054E77F /* confirmdialog.cpp */; };
		2BDF4AC7166D5B690054E77F /* confirmdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47AB166D5B680054E77F /* confirmdialog.cpp */; };
		2BDF4AC8166D5B690054E77F /* connectiondialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47AD166D5B680054E77F /* connectiondialog.cpp */; };
		2BDF4AC9166D5B690054E77F /* connectiondialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47AD166D5B680054E77F /* connectiondialog.cpp */; };
		2BDF4ACA166D5B690054E77F /* debugwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47AF166D5B680054E77F /* debugwindow.cpp */; };
		2BDF4ACB166D5B690054E77F /* debugwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47AF166D5B680054E77F /* debugwindow.cpp */; };
		2BDF4ACC166D5B690054E77F /* didyouknowwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47B1166D5B680054E77F /* didyouknowwindow.cpp */; };
		2BDF4ACD166D5B690054E77F /* didyouknowwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47B1166D5B680054E77F /* didyouknowwindow.cpp */; };
		2BDF4ACE166D5B690054E77F /* editdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47B3166D5B680054E77F /* editdialog.cpp */; };
		2BDF4ACF166D5B690054E77F /* editdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47B3166D5B680054E77F /* editdialog.cpp */; };
		2BDF4AD0166D5B690054E77F /* editserverdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47B5166D5B680054E77F /* editserverdialog.cpp */; };
		2BDF4AD1166D5B690054E77F /* editserverdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47B5166D5B680054E77F /* editserverdialog.cpp */; };
		2BDF4AD2166D5B690054E77F /* equipmentwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47B7166D5B680054E77F /* equipmentwindow.cpp */; };
		2BDF4AD3166D5B690054E77F /* equipmentwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47B7166D5B680054E77F /* equipmentwindow.cpp */; };
		2BDF4AD4166D5B690054E77F /* focushandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47B9166D5B680054E77F /* focushandler.cpp */; };
		2BDF4AD5166D5B690054E77F /* focushandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47B9166D5B680054E77F /* focushandler.cpp */; };
		2BDF4AD6166D5B690054E77F /* gui.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47BB166D5B680054E77F /* gui.cpp */; };
		2BDF4AD7166D5B690054E77F /* gui.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47BB166D5B680054E77F /* gui.cpp */; };
		2BDF4AD8166D5B690054E77F /* helpwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47BD166D5B680054E77F /* helpwindow.cpp */; };
		2BDF4AD9166D5B690054E77F /* helpwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47BD166D5B680054E77F /* helpwindow.cpp */; };
		2BDF4ADA166D5B690054E77F /* inventorywindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47BF166D5B680054E77F /* inventorywindow.cpp */; };
		2BDF4ADB166D5B690054E77F /* inventorywindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47BF166D5B680054E77F /* inventorywindow.cpp */; };
		2BDF4ADC166D5B690054E77F /* itemamountwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47C1166D5B680054E77F /* itemamountwindow.cpp */; };
		2BDF4ADD166D5B690054E77F /* itemamountwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47C1166D5B680054E77F /* itemamountwindow.cpp */; };
		2BDF4ADE166D5B690054E77F /* itempopup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47C3166D5B680054E77F /* itempopup.cpp */; };
		2BDF4ADF166D5B690054E77F /* itempopup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47C3166D5B680054E77F /* itempopup.cpp */; };
		2BDF4AE0166D5B690054E77F /* killstats.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47C5166D5B680054E77F /* killstats.cpp */; };
		2BDF4AE1166D5B690054E77F /* killstats.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47C5166D5B680054E77F /* killstats.cpp */; };
		2BDF4AE2166D5B690054E77F /* logindialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47C7166D5B680054E77F /* logindialog.cpp */; };
		2BDF4AE3166D5B690054E77F /* logindialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47C7166D5B680054E77F /* logindialog.cpp */; };
		2BDF4AE4166D5B690054E77F /* minimap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47C9166D5B680054E77F /* minimap.cpp */; };
		2BDF4AE5166D5B690054E77F /* minimap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47C9166D5B680054E77F /* minimap.cpp */; };
		2BDF4AE6166D5B690054E77F /* ministatuswindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47CB166D5B680054E77F /* ministatuswindow.cpp */; };
		2BDF4AE7166D5B690054E77F /* ministatuswindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47CB166D5B680054E77F /* ministatuswindow.cpp */; };
		2BDF4AE8166D5B690054E77F /* npcdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47CD166D5B680054E77F /* npcdialog.cpp */; };
		2BDF4AE9166D5B690054E77F /* npcdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47CD166D5B680054E77F /* npcdialog.cpp */; };
		2BDF4AEA166D5B690054E77F /* npcpostdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47CF166D5B680054E77F /* npcpostdialog.cpp */; };
		2BDF4AEB166D5B690054E77F /* npcpostdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47CF166D5B680054E77F /* npcpostdialog.cpp */; };
		2BDF4AEC166D5B690054E77F /* okdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47D1166D5B680054E77F /* okdialog.cpp */; };
		2BDF4AED166D5B690054E77F /* okdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47D1166D5B680054E77F /* okdialog.cpp */; };
		2BDF4AEE166D5B690054E77F /* outfitwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47D3166D5B680054E77F /* outfitwindow.cpp */; };
		2BDF4AEF166D5B690054E77F /* outfitwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47D3166D5B680054E77F /* outfitwindow.cpp */; };
		2BDF4AF0166D5B690054E77F /* palette.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47D5166D5B680054E77F /* palette.cpp */; };
		2BDF4AF1166D5B690054E77F /* palette.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47D5166D5B680054E77F /* palette.cpp */; };
		2BDF4AF2166D5B690054E77F /* popupmenu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47D7166D5B680054E77F /* popupmenu.cpp */; };
		2BDF4AF3166D5B690054E77F /* popupmenu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47D7166D5B680054E77F /* popupmenu.cpp */; };
		2BDF4AF4166D5B690054E77F /* questswindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47D9166D5B680054E77F /* questswindow.cpp */; };
		2BDF4AF5166D5B690054E77F /* questswindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47D9166D5B680054E77F /* questswindow.cpp */; };
		2BDF4AF6166D5B690054E77F /* quitdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47DB166D5B680054E77F /* quitdialog.cpp */; };
		2BDF4AF7166D5B690054E77F /* quitdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47DB166D5B680054E77F /* quitdialog.cpp */; };
		2BDF4AF8166D5B690054E77F /* registerdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47DD166D5B680054E77F /* registerdialog.cpp */; };
		2BDF4AF9166D5B690054E77F /* registerdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47DD166D5B680054E77F /* registerdialog.cpp */; };
		2BDF4AFA166D5B690054E77F /* sdlfont.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47DF166D5B680054E77F /* sdlfont.cpp */; };
		2BDF4AFB166D5B690054E77F /* sdlfont.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47DF166D5B680054E77F /* sdlfont.cpp */; };
		2BDF4AFC166D5B690054E77F /* sdlinput.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47E1166D5B680054E77F /* sdlinput.cpp */; };
		2BDF4AFD166D5B690054E77F /* sdlinput.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47E1166D5B680054E77F /* sdlinput.cpp */; };
		2BDF4AFE166D5B690054E77F /* selldialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47E3166D5B680054E77F /* selldialog.cpp */; };
		2BDF4AFF166D5B690054E77F /* selldialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47E3166D5B680054E77F /* selldialog.cpp */; };
		2BDF4B00166D5B690054E77F /* serverdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47E5166D5B680054E77F /* serverdialog.cpp */; };
		2BDF4B01166D5B690054E77F /* serverdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47E5166D5B680054E77F /* serverdialog.cpp */; };
		2BDF4B02166D5B690054E77F /* setup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47E7166D5B680054E77F /* setup.cpp */; };
		2BDF4B03166D5B690054E77F /* setup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47E7166D5B680054E77F /* setup.cpp */; };
		2BDF4B04166D5B690054E77F /* setup_audio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47E9166D5B680054E77F /* setup_audio.cpp */; };
		2BDF4B05166D5B690054E77F /* setup_audio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47E9166D5B680054E77F /* setup_audio.cpp */; };
		2BDF4B06166D5B690054E77F /* setup_chat.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47EB166D5B680054E77F /* setup_chat.cpp */; };
		2BDF4B07166D5B690054E77F /* setup_chat.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47EB166D5B680054E77F /* setup_chat.cpp */; };
		2BDF4B08166D5B690054E77F /* setup_colors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47ED166D5B680054E77F /* setup_colors.cpp */; };
		2BDF4B09166D5B690054E77F /* setup_colors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47ED166D5B680054E77F /* setup_colors.cpp */; };
		2BDF4B0A166D5B690054E77F /* setup_input.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47EF166D5B680054E77F /* setup_input.cpp */; };
		2BDF4B0B166D5B690054E77F /* setup_input.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47EF166D5B680054E77F /* setup_input.cpp */; };
		2BDF4B0C166D5B690054E77F /* setup_joystick.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47F1166D5B680054E77F /* setup_joystick.cpp */; };
		2BDF4B0D166D5B690054E77F /* setup_joystick.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47F1166D5B680054E77F /* setup_joystick.cpp */; };
		2BDF4B0E166D5B690054E77F /* setup_other.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47F3166D5B680054E77F /* setup_other.cpp */; };
		2BDF4B0F166D5B690054E77F /* setup_other.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47F3166D5B680054E77F /* setup_other.cpp */; };
		2BDF4B10166D5B690054E77F /* setup_perfomance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47F5166D5B680054E77F /* setup_perfomance.cpp */; };
		2BDF4B11166D5B690054E77F /* setup_perfomance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47F5166D5B680054E77F /* setup_perfomance.cpp */; };
		2BDF4B12166D5B690054E77F /* setup_players.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47F7166D5B680054E77F /* setup_players.cpp */; };
		2BDF4B13166D5B690054E77F /* setup_players.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47F7166D5B680054E77F /* setup_players.cpp */; };
		2BDF4B14166D5B690054E77F /* setup_relations.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47F9166D5B680054E77F /* setup_relations.cpp */; };
		2BDF4B15166D5B690054E77F /* setup_relations.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47F9166D5B680054E77F /* setup_relations.cpp */; };
		2BDF4B16166D5B690054E77F /* setup_theme.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47FB166D5B680054E77F /* setup_theme.cpp */; };
		2BDF4B17166D5B690054E77F /* setup_theme.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47FB166D5B680054E77F /* setup_theme.cpp */; };
		2BDF4B18166D5B690054E77F /* setup_video.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47FD166D5B680054E77F /* setup_video.cpp */; };
		2BDF4B19166D5B690054E77F /* setup_video.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47FD166D5B680054E77F /* setup_video.cpp */; };
		2BDF4B1A166D5B690054E77F /* setup_visual.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47FF166D5B680054E77F /* setup_visual.cpp */; };
		2BDF4B1B166D5B690054E77F /* setup_visual.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF47FF166D5B680054E77F /* setup_visual.cpp */; };
		2BDF4B1C166D5B690054E77F /* shopwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4802166D5B680054E77F /* shopwindow.cpp */; };
		2BDF4B1D166D5B690054E77F /* shopwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4802166D5B680054E77F /* shopwindow.cpp */; };
		2BDF4B1E166D5B690054E77F /* shortcutwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4804166D5B680054E77F /* shortcutwindow.cpp */; };
		2BDF4B1F166D5B690054E77F /* shortcutwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4804166D5B680054E77F /* shortcutwindow.cpp */; };
		2BDF4B20166D5B690054E77F /* skilldialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4806166D5B680054E77F /* skilldialog.cpp */; };
		2BDF4B21166D5B690054E77F /* skilldialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4806166D5B680054E77F /* skilldialog.cpp */; };
		2BDF4B22166D5B690054E77F /* socialwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4808166D5B680054E77F /* socialwindow.cpp */; };
		2BDF4B23166D5B690054E77F /* socialwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4808166D5B680054E77F /* socialwindow.cpp */; };
		2BDF4B26166D5B690054E77F /* speechbubble.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF480C166D5B680054E77F /* speechbubble.cpp */; };
		2BDF4B27166D5B690054E77F /* speechbubble.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF480C166D5B680054E77F /* speechbubble.cpp */; };
		2BDF4B28166D5B690054E77F /* spellpopup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF480E166D5B680054E77F /* spellpopup.cpp */; };
		2BDF4B29166D5B690054E77F /* spellpopup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF480E166D5B680054E77F /* spellpopup.cpp */; };
		2BDF4B2A166D5B690054E77F /* statuspopup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4810166D5B680054E77F /* statuspopup.cpp */; };
		2BDF4B2B166D5B690054E77F /* statuspopup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4810166D5B680054E77F /* statuspopup.cpp */; };
		2BDF4B2C166D5B690054E77F /* statuswindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4812166D5B680054E77F /* statuswindow.cpp */; };
		2BDF4B2D166D5B690054E77F /* statuswindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4812166D5B680054E77F /* statuswindow.cpp */; };
		2BDF4B2E166D5B690054E77F /* textcommandeditor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4814166D5B680054E77F /* textcommandeditor.cpp */; };
		2BDF4B2F166D5B690054E77F /* textcommandeditor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4814166D5B680054E77F /* textcommandeditor.cpp */; };
		2BDF4B30166D5B690054E77F /* textdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4816166D5B680054E77F /* textdialog.cpp */; };
		2BDF4B31166D5B690054E77F /* textdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4816166D5B680054E77F /* textdialog.cpp */; };
		2BDF4B32166D5B690054E77F /* textpopup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4818166D5B680054E77F /* textpopup.cpp */; };
		2BDF4B33166D5B690054E77F /* textpopup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4818166D5B680054E77F /* textpopup.cpp */; };
		2BDF4B34166D5B690054E77F /* theme.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF481A166D5B680054E77F /* theme.cpp */; };
		2BDF4B35166D5B690054E77F /* theme.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF481A166D5B680054E77F /* theme.cpp */; };
		2BDF4B36166D5B690054E77F /* tradewindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF481C166D5B680054E77F /* tradewindow.cpp */; };
		2BDF4B37166D5B690054E77F /* tradewindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF481C166D5B680054E77F /* tradewindow.cpp */; };
		2BDF4B38166D5B690054E77F /* unregisterdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF481E166D5B680054E77F /* unregisterdialog.cpp */; };
		2BDF4B39166D5B690054E77F /* unregisterdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF481E166D5B680054E77F /* unregisterdialog.cpp */; };
		2BDF4B3A166D5B690054E77F /* updaterwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4820166D5B680054E77F /* updaterwindow.cpp */; };
		2BDF4B3B166D5B690054E77F /* updaterwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4820166D5B680054E77F /* updaterwindow.cpp */; };
		2BDF4B3C166D5B690054E77F /* userpalette.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4822166D5B680054E77F /* userpalette.cpp */; };
		2BDF4B3D166D5B690054E77F /* userpalette.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4822166D5B680054E77F /* userpalette.cpp */; };
		2BDF4B3E166D5B690054E77F /* viewport.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4824166D5B680054E77F /* viewport.cpp */; };
		2BDF4B3F166D5B690054E77F /* viewport.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4824166D5B680054E77F /* viewport.cpp */; };
		2BDF4B40166D5B690054E77F /* whoisonline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4826166D5B680054E77F /* whoisonline.cpp */; };
		2BDF4B41166D5B690054E77F /* whoisonline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4826166D5B680054E77F /* whoisonline.cpp */; };
		2BDF4B42166D5B690054E77F /* avatarlistbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4829166D5B680054E77F /* avatarlistbox.cpp */; };
		2BDF4B43166D5B690054E77F /* avatarlistbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4829166D5B680054E77F /* avatarlistbox.cpp */; };
		2BDF4B44166D5B690054E77F /* battletab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF482B166D5B680054E77F /* battletab.cpp */; };
		2BDF4B45166D5B690054E77F /* battletab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF482B166D5B680054E77F /* battletab.cpp */; };
		2BDF4B46166D5B690054E77F /* browserbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF482D166D5B680054E77F /* browserbox.cpp */; };
		2BDF4B47166D5B690054E77F /* browserbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF482D166D5B680054E77F /* browserbox.cpp */; };
		2BDF4B4A166D5B690054E77F /* button.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4830166D5B680054E77F /* button.cpp */; };
		2BDF4B4B166D5B690054E77F /* button.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4830166D5B680054E77F /* button.cpp */; };
		2BDF4B4C166D5B690054E77F /* channeltab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4832166D5B680054E77F /* channeltab.cpp */; };
		2BDF4B4D166D5B690054E77F /* channeltab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4832166D5B680054E77F /* channeltab.cpp */; };
		2BDF4B4E166D5B690054E77F /* chattab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4834166D5B680054E77F /* chattab.cpp */; };
		2BDF4B4F166D5B690054E77F /* chattab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4834166D5B680054E77F /* chattab.cpp */; };
		2BDF4B50166D5B690054E77F /* checkbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4836166D5B680054E77F /* checkbox.cpp */; };
		2BDF4B51166D5B690054E77F /* checkbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4836166D5B680054E77F /* checkbox.cpp */; };
		2BDF4B52166D5B690054E77F /* container.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4838166D5B680054E77F /* container.cpp */; };
		2BDF4B53166D5B690054E77F /* container.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4838166D5B680054E77F /* container.cpp */; };
		2BDF4B54166D5B690054E77F /* desktop.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF483A166D5B680054E77F /* desktop.cpp */; };
		2BDF4B55166D5B690054E77F /* desktop.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF483A166D5B680054E77F /* desktop.cpp */; };
		2BDF4B56166D5B690054E77F /* dropdown.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF483C166D5B680054E77F /* dropdown.cpp */; };
		2BDF4B57166D5B690054E77F /* dropdown.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF483C166D5B680054E77F /* dropdown.cpp */; };
		2BDF4B58166D5B690054E77F /* dropshortcutcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF483E166D5B680054E77F /* dropshortcutcontainer.cpp */; };
		2BDF4B59166D5B690054E77F /* dropshortcutcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF483E166D5B680054E77F /* dropshortcutcontainer.cpp */; };
		2BDF4B5A166D5B690054E77F /* emoteshortcutcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4840166D5B680054E77F /* emoteshortcutcontainer.cpp */; };
		2BDF4B5B166D5B690054E77F /* emoteshortcutcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4840166D5B680054E77F /* emoteshortcutcontainer.cpp */; };
		2BDF4B5C166D5B690054E77F /* extendedlistbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4842166D5B680054E77F /* extendedlistbox.cpp */; };
		2BDF4B5D166D5B690054E77F /* extendedlistbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4842166D5B680054E77F /* extendedlistbox.cpp */; };
		2BDF4B5E166D5B690054E77F /* extendednamesmodel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4845166D5B680054E77F /* extendednamesmodel.cpp */; };
		2BDF4B5F166D5B690054E77F /* extendednamesmodel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4845166D5B680054E77F /* extendednamesmodel.cpp */; };
		2BDF4B60166D5B690054E77F /* flowcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4847166D5B680054E77F /* flowcontainer.cpp */; };
		2BDF4B61166D5B690054E77F /* flowcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4847166D5B680054E77F /* flowcontainer.cpp */; };
		2BDF4B62166D5B690054E77F /* guildchattab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4849166D5B680054E77F /* guildchattab.cpp */; };
		2BDF4B63166D5B690054E77F /* guildchattab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4849166D5B680054E77F /* guildchattab.cpp */; };
		2BDF4B64166D5B690054E77F /* guitable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF484B166D5B680054E77F /* guitable.cpp */; };
		2BDF4B65166D5B690054E77F /* guitable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF484B166D5B680054E77F /* guitable.cpp */; };
		2BDF4B66166D5B690054E77F /* horizontcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF484D166D5B680054E77F /* horizontcontainer.cpp */; };
		2BDF4B67166D5B690054E77F /* horizontcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF484D166D5B680054E77F /* horizontcontainer.cpp */; };
		2BDF4B68166D5B690054E77F /* icon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF484F166D5B680054E77F /* icon.cpp */; };
		2BDF4B69166D5B690054E77F /* icon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF484F166D5B680054E77F /* icon.cpp */; };
		2BDF4B6A166D5B690054E77F /* inttextfield.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4851166D5B680054E77F /* inttextfield.cpp */; };
		2BDF4B6B166D5B690054E77F /* inttextfield.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4851166D5B680054E77F /* inttextfield.cpp */; };
		2BDF4B6C166D5B690054E77F /* itemcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4853166D5B680054E77F /* itemcontainer.cpp */; };
		2BDF4B6D166D5B690054E77F /* itemcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4853166D5B680054E77F /* itemcontainer.cpp */; };
		2BDF4B6E166D5B690054E77F /* itemlinkhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4855166D5B680054E77F /* itemlinkhandler.cpp */; };
		2BDF4B6F166D5B690054E77F /* itemlinkhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4855166D5B680054E77F /* itemlinkhandler.cpp */; };
		2BDF4B70166D5B690054E77F /* itemshortcutcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4857166D5B680054E77F /* itemshortcutcontainer.cpp */; };
		2BDF4B71166D5B690054E77F /* itemshortcutcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4857166D5B680054E77F /* itemshortcutcontainer.cpp */; };
		2BDF4B72166D5B690054E77F /* label.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4859166D5B680054E77F /* label.cpp */; };
		2BDF4B73166D5B690054E77F /* label.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4859166D5B680054E77F /* label.cpp */; };
		2BDF4B74166D5B690054E77F /* layout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF485B166D5B680054E77F /* layout.cpp */; };
		2BDF4B75166D5B690054E77F /* layout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF485B166D5B680054E77F /* layout.cpp */; };
		2BDF4B76166D5B690054E77F /* layouthelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF485D166D5B680054E77F /* layouthelper.cpp */; };
		2BDF4B77166D5B690054E77F /* layouthelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF485D166D5B680054E77F /* layouthelper.cpp */; };
		2BDF4B78166D5B690054E77F /* listbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4860166D5B680054E77F /* listbox.cpp */; };
		2BDF4B79166D5B690054E77F /* listbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4860166D5B680054E77F /* listbox.cpp */; };
		2BDF4B7A166D5B690054E77F /* namesmodel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4863166D5B680054E77F /* namesmodel.cpp */; };
		2BDF4B7B166D5B690054E77F /* namesmodel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4863166D5B680054E77F /* namesmodel.cpp */; };
		2BDF4B7C166D5B690054E77F /* passwordfield.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4865166D5B680054E77F /* passwordfield.cpp */; };
		2BDF4B7D166D5B690054E77F /* passwordfield.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4865166D5B680054E77F /* passwordfield.cpp */; };
		2BDF4B7E166D5B690054E77F /* playerbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4867166D5B680054E77F /* playerbox.cpp */; };
		2BDF4B7F166D5B690054E77F /* playerbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4867166D5B680054E77F /* playerbox.cpp */; };
		2BDF4B80166D5B690054E77F /* popup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4869166D5B680054E77F /* popup.cpp */; };
		2BDF4B81166D5B690054E77F /* popup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4869166D5B680054E77F /* popup.cpp */; };
		2BDF4B82166D5B690054E77F /* progressbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF486B166D5B680054E77F /* progressbar.cpp */; };
		2BDF4B83166D5B690054E77F /* progressbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF486B166D5B680054E77F /* progressbar.cpp */; };
		2BDF4B84166D5B690054E77F /* progressindicator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF486D166D5B680054E77F /* progressindicator.cpp */; };
		2BDF4B85166D5B690054E77F /* progressindicator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF486D166D5B680054E77F /* progressindicator.cpp */; };
		2BDF4B86166D5B690054E77F /* radiobutton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF486F166D5B680054E77F /* radiobutton.cpp */; };
		2BDF4B87166D5B690054E77F /* radiobutton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF486F166D5B680054E77F /* radiobutton.cpp */; };
		2BDF4B88166D5B690054E77F /* radiogroup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4871166D5B680054E77F /* radiogroup.cpp */; };
		2BDF4B89166D5B690054E77F /* radiogroup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4871166D5B680054E77F /* radiogroup.cpp */; };
		2BDF4B8A166D5B690054E77F /* scrollarea.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4873166D5B680054E77F /* scrollarea.cpp */; };
		2BDF4B8B166D5B690054E77F /* scrollarea.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4873166D5B680054E77F /* scrollarea.cpp */; };
		2BDF4B8C166D5B690054E77F /* setupitem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4875166D5B680054E77F /* setupitem.cpp */; };
		2BDF4B8D166D5B690054E77F /* setupitem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4875166D5B680054E77F /* setupitem.cpp */; };
		2BDF4B8E166D5B690054E77F /* setuptab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4877166D5B680054E77F /* setuptab.cpp */; };
		2BDF4B8F166D5B690054E77F /* setuptab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4877166D5B680054E77F /* setuptab.cpp */; };
		2BDF4B90166D5B690054E77F /* setuptabscroll.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4879166D5B680054E77F /* setuptabscroll.cpp */; };
		2BDF4B91166D5B690054E77F /* setuptabscroll.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4879166D5B680054E77F /* setuptabscroll.cpp */; };
		2BDF4B92166D5B690054E77F /* shopitems.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF487B166D5B680054E77F /* shopitems.cpp */; };
		2BDF4B93166D5B690054E77F /* shopitems.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF487B166D5B680054E77F /* shopitems.cpp */; };
		2BDF4B94166D5B690054E77F /* shoplistbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF487D166D5B680054E77F /* shoplistbox.cpp */; };
		2BDF4B95166D5B690054E77F /* shoplistbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF487D166D5B680054E77F /* shoplistbox.cpp */; };
		2BDF4B96166D5B690054E77F /* shortcutcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF487F166D5B680054E77F /* shortcutcontainer.cpp */; };
		2BDF4B97166D5B690054E77F /* shortcutcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF487F166D5B680054E77F /* shortcutcontainer.cpp */; };
		2BDF4B98166D5B690054E77F /* slider.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4881166D5B680054E77F /* slider.cpp */; };
		2BDF4B99166D5B690054E77F /* slider.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4881166D5B680054E77F /* slider.cpp */; };
		2BDF4B9A166D5B690054E77F /* sliderlist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4883166D5B680054E77F /* sliderlist.cpp */; };
		2BDF4B9B166D5B690054E77F /* sliderlist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4883166D5B680054E77F /* sliderlist.cpp */; };
		2BDF4B9C166D5B690054E77F /* spellshortcutcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4885166D5B680054E77F /* spellshortcutcontainer.cpp */; };
		2BDF4B9D166D5B690054E77F /* spellshortcutcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4885166D5B680054E77F /* spellshortcutcontainer.cpp */; };
		2BDF4B9E166D5B690054E77F /* tab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4887166D5B680054E77F /* tab.cpp */; };
		2BDF4B9F166D5B690054E77F /* tab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4887166D5B680054E77F /* tab.cpp */; };
		2BDF4BA0166D5B690054E77F /* tabbedarea.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4889166D5B680054E77F /* tabbedarea.cpp */; };
		2BDF4BA1166D5B690054E77F /* tabbedarea.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4889166D5B680054E77F /* tabbedarea.cpp */; };
		2BDF4BA2166D5B690054E77F /* tablemodel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF488B166D5B680054E77F /* tablemodel.cpp */; };
		2BDF4BA3166D5B690054E77F /* tablemodel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF488B166D5B680054E77F /* tablemodel.cpp */; };
		2BDF4BA4166D5B690054E77F /* tabstrip.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF488D166D5B680054E77F /* tabstrip.cpp */; };
		2BDF4BA5166D5B690054E77F /* tabstrip.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF488D166D5B680054E77F /* tabstrip.cpp */; };
		2BDF4BA6166D5B690054E77F /* textbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF488F166D5B680054E77F /* textbox.cpp */; };
		2BDF4BA7166D5B690054E77F /* textbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF488F166D5B680054E77F /* textbox.cpp */; };
		2BDF4BA8166D5B690054E77F /* textfield.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4891166D5B680054E77F /* textfield.cpp */; };
		2BDF4BA9166D5B690054E77F /* textfield.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4891166D5B680054E77F /* textfield.cpp */; };
		2BDF4BAA166D5B690054E77F /* textpreview.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4893166D5B680054E77F /* textpreview.cpp */; };
		2BDF4BAB166D5B690054E77F /* textpreview.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4893166D5B680054E77F /* textpreview.cpp */; };
		2BDF4BAC166D5B690054E77F /* tradetab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4895166D5B680054E77F /* tradetab.cpp */; };
		2BDF4BAD166D5B690054E77F /* tradetab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4895166D5B680054E77F /* tradetab.cpp */; };
		2BDF4BAE166D5B690054E77F /* vertcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4897166D5B680054E77F /* vertcontainer.cpp */; };
		2BDF4BAF166D5B690054E77F /* vertcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4897166D5B680054E77F /* vertcontainer.cpp */; };
		2BDF4BB0166D5B690054E77F /* whispertab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4899166D5B680054E77F /* whispertab.cpp */; };
		2BDF4BB1166D5B690054E77F /* whispertab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4899166D5B680054E77F /* whispertab.cpp */; };
		2BDF4BB2166D5B690054E77F /* widgetgroup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF489C166D5B680054E77F /* widgetgroup.cpp */; };
		2BDF4BB3166D5B690054E77F /* widgetgroup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF489C166D5B680054E77F /* widgetgroup.cpp */; };
		2BDF4BB4166D5B690054E77F /* window.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF489E166D5B680054E77F /* window.cpp */; };
		2BDF4BB5166D5B690054E77F /* window.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF489E166D5B680054E77F /* window.cpp */; };
		2BDF4BB6166D5B690054E77F /* windowcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48A0166D5B680054E77F /* windowcontainer.cpp */; };
		2BDF4BB7166D5B690054E77F /* windowcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48A0166D5B680054E77F /* windowcontainer.cpp */; };
		2BDF4BB8166D5B690054E77F /* windowmenu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48A2166D5B680054E77F /* windowmenu.cpp */; };
		2BDF4BB9166D5B690054E77F /* windowmenu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48A2166D5B680054E77F /* windowmenu.cpp */; };
		2BDF4BBA166D5B690054E77F /* worldselectdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48A4166D5B680054E77F /* worldselectdialog.cpp */; };
		2BDF4BBB166D5B690054E77F /* worldselectdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48A4166D5B680054E77F /* worldselectdialog.cpp */; };
		2BDF4BBC166D5B690054E77F /* actionevent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48A7166D5B680054E77F /* actionevent.cpp */; };
		2BDF4BBD166D5B690054E77F /* actionevent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48A7166D5B680054E77F /* actionevent.cpp */; };
		2BDF4BBE166D5B690054E77F /* basiccontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48A8166D5B680054E77F /* basiccontainer.cpp */; };
		2BDF4BBF166D5B690054E77F /* basiccontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48A8166D5B680054E77F /* basiccontainer.cpp */; };
		2BDF4BC0166D5B690054E77F /* cliprectangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48A9166D5B680054E77F /* cliprectangle.cpp */; };
		2BDF4BC1166D5B690054E77F /* cliprectangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48A9166D5B680054E77F /* cliprectangle.cpp */; };
		2BDF4BC2166D5B690054E77F /* color.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48AA166D5B680054E77F /* color.cpp */; };
		2BDF4BC3166D5B690054E77F /* color.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48AA166D5B680054E77F /* color.cpp */; };
		2BDF4BC4166D5B690054E77F /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48AB166D5B680054E77F /* event.cpp */; };
		2BDF4BC5166D5B690054E77F /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48AB166D5B680054E77F /* event.cpp */; };
		2BDF4BC6166D5B690054E77F /* exception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48AC166D5B680054E77F /* exception.cpp */; };
		2BDF4BC7166D5B690054E77F /* exception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48AC166D5B680054E77F /* exception.cpp */; };
		2BDF4BC8166D5B690054E77F /* focushandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48AD166D5B680054E77F /* focushandler.cpp */; };
		2BDF4BC9166D5B690054E77F /* focushandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48AD166D5B680054E77F /* focushandler.cpp */; };
		2BDF4BCA166D5B690054E77F /* font.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48AE166D5B680054E77F /* font.cpp */; };
		2BDF4BCB166D5B690054E77F /* font.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48AE166D5B680054E77F /* font.cpp */; };
		2BDF4BCC166D5B690054E77F /* graphics.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48AF166D5B680054E77F /* graphics.cpp */; };
		2BDF4BCD166D5B690054E77F /* graphics.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48AF166D5B680054E77F /* graphics.cpp */; };
		2BDF4BCE166D5B690054E77F /* gui.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48B0166D5B680054E77F /* gui.cpp */; };
		2BDF4BCF166D5B690054E77F /* gui.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48B0166D5B680054E77F /* gui.cpp */; };
		2BDF4BD0166D5B690054E77F /* image.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48B1166D5B680054E77F /* image.cpp */; };
		2BDF4BD1166D5B690054E77F /* image.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48B1166D5B680054E77F /* image.cpp */; };
		2BDF4BD2166D5B690054E77F /* inputevent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48E2166D5B680054E77F /* inputevent.cpp */; };
		2BDF4BD3166D5B690054E77F /* inputevent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48E2166D5B680054E77F /* inputevent.cpp */; };
		2BDF4BD4166D5B690054E77F /* key.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48E3166D5B680054E77F /* key.cpp */; };
		2BDF4BD5166D5B690054E77F /* key.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48E3166D5B680054E77F /* key.cpp */; };
		2BDF4BD6166D5B690054E77F /* keyevent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48E4166D5B680054E77F /* keyevent.cpp */; };
		2BDF4BD7166D5B690054E77F /* keyevent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48E4166D5B680054E77F /* keyevent.cpp */; };
		2BDF4BD8166D5B690054E77F /* keyinput.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48E5166D5B680054E77F /* keyinput.cpp */; };
		2BDF4BD9166D5B690054E77F /* keyinput.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48E5166D5B680054E77F /* keyinput.cpp */; };
		2BDF4BDA166D5B690054E77F /* mouseevent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48E6166D5B680054E77F /* mouseevent.cpp */; };
		2BDF4BDB166D5B690054E77F /* mouseevent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48E6166D5B680054E77F /* mouseevent.cpp */; };
		2BDF4BDC166D5B690054E77F /* mouseinput.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48E7166D5B680054E77F /* mouseinput.cpp */; };
		2BDF4BDD166D5B690054E77F /* mouseinput.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48E7166D5B680054E77F /* mouseinput.cpp */; };
		2BDF4BDE166D5B690054E77F /* rectangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48E8166D5B680054E77F /* rectangle.cpp */; };
		2BDF4BDF166D5B690054E77F /* rectangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48E8166D5B680054E77F /* rectangle.cpp */; };
		2BDF4BE0166D5B690054E77F /* sdlgraphics.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48EA166D5B680054E77F /* sdlgraphics.cpp */; };
		2BDF4BE1166D5B690054E77F /* sdlgraphics.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48EA166D5B680054E77F /* sdlgraphics.cpp */; };
		2BDF4BE2166D5B690054E77F /* selectionevent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48EB166D5B680054E77F /* selectionevent.cpp */; };
		2BDF4BE3166D5B690054E77F /* selectionevent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48EB166D5B680054E77F /* selectionevent.cpp */; };
		2BDF4BE4166D5B690054E77F /* widget.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48EC166D5B680054E77F /* widget.cpp */; };
		2BDF4BE5166D5B690054E77F /* widget.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48EC166D5B680054E77F /* widget.cpp */; };
		2BDF4BE6166D5B690054E77F /* button.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48EE166D5B680054E77F /* button.cpp */; };
		2BDF4BE7166D5B690054E77F /* button.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48EE166D5B680054E77F /* button.cpp */; };
		2BDF4BE8166D5B690054E77F /* checkbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48EF166D5B680054E77F /* checkbox.cpp */; };
		2BDF4BE9166D5B690054E77F /* checkbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48EF166D5B680054E77F /* checkbox.cpp */; };
		2BDF4BEA166D5B690054E77F /* container.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48F0166D5B680054E77F /* container.cpp */; };
		2BDF4BEB166D5B690054E77F /* container.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48F0166D5B680054E77F /* container.cpp */; };
		2BDF4BEC166D5B690054E77F /* dropdown.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48F1166D5B680054E77F /* dropdown.cpp */; };
		2BDF4BED166D5B690054E77F /* dropdown.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48F1166D5B680054E77F /* dropdown.cpp */; };
		2BDF4BEE166D5B690054E77F /* label.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48F2166D5B680054E77F /* label.cpp */; };
		2BDF4BEF166D5B690054E77F /* label.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48F2166D5B680054E77F /* label.cpp */; };
		2BDF4BF0166D5B690054E77F /* listbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48F3166D5B680054E77F /* listbox.cpp */; };
		2BDF4BF1166D5B690054E77F /* listbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48F3166D5B680054E77F /* listbox.cpp */; };
		2BDF4BF2166D5B690054E77F /* radiobutton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48F4166D5B680054E77F /* radiobutton.cpp */; };
		2BDF4BF3166D5B690054E77F /* radiobutton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48F4166D5B680054E77F /* radiobutton.cpp */; };
		2BDF4BF4166D5B690054E77F /* scrollarea.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48F5166D5B680054E77F /* scrollarea.cpp */; };
		2BDF4BF5166D5B690054E77F /* scrollarea.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48F5166D5B680054E77F /* scrollarea.cpp */; };
		2BDF4BF6166D5B690054E77F /* slider.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48F6166D5B680054E77F /* slider.cpp */; };
		2BDF4BF7166D5B690054E77F /* slider.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48F6166D5B680054E77F /* slider.cpp */; };
		2BDF4BF8166D5B690054E77F /* textbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48F7166D5B680054E77F /* textbox.cpp */; };
		2BDF4BF9166D5B690054E77F /* textbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48F7166D5B680054E77F /* textbox.cpp */; };
		2BDF4BFA166D5B690054E77F /* textfield.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48F8166D5B680054E77F /* textfield.cpp */; };
		2BDF4BFB166D5B690054E77F /* textfield.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48F8166D5B680054E77F /* textfield.cpp */; };
		2BDF4BFC166D5B690054E77F /* window.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48F9166D5B680054E77F /* window.cpp */; };
		2BDF4BFD166D5B690054E77F /* window.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48F9166D5B680054E77F /* window.cpp */; };
		2BDF4BFE166D5B690054E77F /* guild.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48FA166D5B680054E77F /* guild.cpp */; };
		2BDF4BFF166D5B690054E77F /* guild.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48FA166D5B680054E77F /* guild.cpp */; };
		2BDF4C00166D5B690054E77F /* guildmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48FC166D5B680054E77F /* guildmanager.cpp */; };
		2BDF4C01166D5B690054E77F /* guildmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48FC166D5B680054E77F /* guildmanager.cpp */; };
		2BDF4C02166D5B690054E77F /* imageparticle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48FE166D5B680054E77F /* imageparticle.cpp */; };
		2BDF4C03166D5B690054E77F /* imageparticle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF48FE166D5B680054E77F /* imageparticle.cpp */; };
		2BDF4C04166D5B690054E77F /* imagesprite.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4900166D5B680054E77F /* imagesprite.cpp */; };
		2BDF4C05166D5B690054E77F /* imagesprite.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4900166D5B680054E77F /* imagesprite.cpp */; };
		2BDF4C06166D5B690054E77F /* inputevent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4902166D5B680054E77F /* inputevent.cpp */; };
		2BDF4C07166D5B690054E77F /* inputevent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4902166D5B680054E77F /* inputevent.cpp */; };
		2BDF4C08166D5B690054E77F /* inputmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4904166D5B680054E77F /* inputmanager.cpp */; };
		2BDF4C09166D5B690054E77F /* inputmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4904166D5B680054E77F /* inputmanager.cpp */; };
		2BDF4C0A166D5B690054E77F /* inventory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4906166D5B680054E77F /* inventory.cpp */; };
		2BDF4C0B166D5B690054E77F /* inventory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4906166D5B680054E77F /* inventory.cpp */; };
		2BDF4C0C166D5B690054E77F /* item.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4908166D5B680054E77F /* item.cpp */; };
		2BDF4C0D166D5B690054E77F /* item.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4908166D5B680054E77F /* item.cpp */; };
		2BDF4C0E166D5B690054E77F /* itemshortcut.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF490A166D5B680054E77F /* itemshortcut.cpp */; };
		2BDF4C0F166D5B690054E77F /* itemshortcut.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF490A166D5B680054E77F /* itemshortcut.cpp */; };
		2BDF4C10166D5B690054E77F /* joystick.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF490C166D5B680054E77F /* joystick.cpp */; };
		2BDF4C11166D5B690054E77F /* joystick.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF490C166D5B680054E77F /* joystick.cpp */; };
		2BDF4C12166D5B690054E77F /* keyboardconfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF490E166D5B680054E77F /* keyboardconfig.cpp */; };
		2BDF4C13166D5B690054E77F /* keyboardconfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF490E166D5B680054E77F /* keyboardconfig.cpp */; };
		2BDF4C14166D5B690054E77F /* keyevent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4912166D5B680054E77F /* keyevent.cpp */; };
		2BDF4C15166D5B690054E77F /* keyevent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4912166D5B680054E77F /* keyevent.cpp */; };
		2BDF4C16166D5B690054E77F /* keyinput.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4914166D5B680054E77F /* keyinput.cpp */; };
		2BDF4C17166D5B690054E77F /* keyinput.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4914166D5B680054E77F /* keyinput.cpp */; };
		2BDF4C18166D5B690054E77F /* listener.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4916166D5B680054E77F /* listener.cpp */; };
		2BDF4C19166D5B690054E77F /* listener.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4916166D5B680054E77F /* listener.cpp */; };
		2BDF4C1A166D5B690054E77F /* localplayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4919166D5B680054E77F /* localplayer.cpp */; };
		2BDF4C1B166D5B690054E77F /* localplayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4919166D5B680054E77F /* localplayer.cpp */; };
		2BDF4C1C166D5B690054E77F /* logger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF491B166D5B680054E77F /* logger.cpp */; };
		2BDF4C1D166D5B690054E77F /* logger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF491B166D5B680054E77F /* logger.cpp */; };
		2BDF4C1E166D5B690054E77F /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF491D166D5B680054E77F /* main.cpp */; };
		2BDF4C1F166D5B690054E77F /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF491D166D5B680054E77F /* main.cpp */; };
		2BDF4C20166D5B690054E77F /* map.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF491F166D5B680054E77F /* map.cpp */; };
		2BDF4C21166D5B690054E77F /* map.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF491F166D5B680054E77F /* map.cpp */; };
		2BDF4C22166D5B690054E77F /* maplayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4921166D5B680054E77F /* maplayer.cpp */; };
		2BDF4C23166D5B690054E77F /* maplayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4921166D5B680054E77F /* maplayer.cpp */; };
		2BDF4C24166D5B690054E77F /* mgl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4923166D5B680054E77F /* mgl.cpp */; };
		2BDF4C25166D5B690054E77F /* mgl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4923166D5B680054E77F /* mgl.cpp */; };
		2BDF4C26166D5B690054E77F /* mobileopenglgraphics.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4925166D5B680054E77F /* mobileopenglgraphics.cpp */; };
		2BDF4C27166D5B690054E77F /* mobileopenglgraphics.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4925166D5B680054E77F /* mobileopenglgraphics.cpp */; };
		2BDF4C28166D5B690054E77F /* mouseinput.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4927166D5B680054E77F /* mouseinput.cpp */; };
		2BDF4C29166D5B690054E77F /* mouseinput.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4927166D5B680054E77F /* mouseinput.cpp */; };
		2BDF4C2A166D5B690054E77F /* mumblemanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4929166D5B680054E77F /* mumblemanager.cpp */; };
		2BDF4C2B166D5B690054E77F /* mumblemanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4929166D5B680054E77F /* mumblemanager.cpp */; };
		2BDF4C2C166D5B690054E77F /* charhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF492F166D5B680054E77F /* charhandler.cpp */; };
		2BDF4C2D166D5B690054E77F /* charhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF492F166D5B680054E77F /* charhandler.cpp */; };
		2BDF4C2E166D5B690054E77F /* download.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4932166D5B680054E77F /* download.cpp */; };
		2BDF4C2F166D5B690054E77F /* download.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4932166D5B680054E77F /* download.cpp */; };
		2BDF4C30166D5B690054E77F /* adminhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4935166D5B680054E77F /* adminhandler.cpp */; };
		2BDF4C31166D5B690054E77F /* adminhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4935166D5B680054E77F /* adminhandler.cpp */; };
		2BDF4C32166D5B690054E77F /* beinghandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4937166D5B680054E77F /* beinghandler.cpp */; };
		2BDF4C33166D5B690054E77F /* beinghandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4937166D5B680054E77F /* beinghandler.cpp */; };
		2BDF4C34166D5B690054E77F /* buysellhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4939166D5B680054E77F /* buysellhandler.cpp */; };
		2BDF4C35166D5B690054E77F /* buysellhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4939166D5B680054E77F /* buysellhandler.cpp */; };
		2BDF4C36166D5B690054E77F /* charserverhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF493B166D5B680054E77F /* charserverhandler.cpp */; };
		2BDF4C37166D5B690054E77F /* charserverhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF493B166D5B680054E77F /* charserverhandler.cpp */; };
		2BDF4C38166D5B690054E77F /* chathandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF493D166D5B680054E77F /* chathandler.cpp */; };
		2BDF4C39166D5B690054E77F /* chathandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF493D166D5B680054E77F /* chathandler.cpp */; };
		2BDF4C3A166D5B690054E77F /* gamehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4940166D5B680054E77F /* gamehandler.cpp */; };
		2BDF4C3B166D5B690054E77F /* gamehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4940166D5B680054E77F /* gamehandler.cpp */; };
		2BDF4C3C166D5B690054E77F /* guildtab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4943166D5B680054E77F /* guildtab.cpp */; };
		2BDF4C3D166D5B690054E77F /* guildtab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4943166D5B680054E77F /* guildtab.cpp */; };
		2BDF4C3E166D5B690054E77F /* partytab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4945166D5B680054E77F /* partytab.cpp */; };
		2BDF4C3F166D5B690054E77F /* partytab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4945166D5B680054E77F /* partytab.cpp */; };
		2BDF4C40166D5B690054E77F /* guildhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4947166D5B680054E77F /* guildhandler.cpp */; };
		2BDF4C41166D5B690054E77F /* guildhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4947166D5B680054E77F /* guildhandler.cpp */; };
		2BDF4C42166D5B690054E77F /* inventoryhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4949166D5B680054E77F /* inventoryhandler.cpp */; };
		2BDF4C43166D5B690054E77F /* inventoryhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4949166D5B680054E77F /* inventoryhandler.cpp */; };
		2BDF4C44166D5B690054E77F /* itemhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF494B166D5B680054E77F /* itemhandler.cpp */; };
		2BDF4C45166D5B690054E77F /* itemhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF494B166D5B680054E77F /* itemhandler.cpp */; };
		2BDF4C46166D5B690054E77F /* loginhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF494D166D5B680054E77F /* loginhandler.cpp */; };
		2BDF4C47166D5B690054E77F /* loginhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF494D166D5B680054E77F /* loginhandler.cpp */; };
		2BDF4C48166D5B690054E77F /* network.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF494F166D5B680054E77F /* network.cpp */; };
		2BDF4C49166D5B690054E77F /* network.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF494F166D5B680054E77F /* network.cpp */; };
		2BDF4C4A166D5B690054E77F /* npchandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4951166D5B680054E77F /* npchandler.cpp */; };
		2BDF4C4B166D5B690054E77F /* npchandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4951166D5B680054E77F /* npchandler.cpp */; };
		2BDF4C4C166D5B690054E77F /* partyhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4953166D5B680054E77F /* partyhandler.cpp */; };
		2BDF4C4D166D5B690054E77F /* partyhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4953166D5B680054E77F /* partyhandler.cpp */; };
		2BDF4C4E166D5B690054E77F /* playerhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4955166D5B680054E77F /* playerhandler.cpp */; };
		2BDF4C4F166D5B690054E77F /* playerhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4955166D5B680054E77F /* playerhandler.cpp */; };
		2BDF4C50166D5B690054E77F /* specialhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4957166D5B680054E77F /* specialhandler.cpp */; };
		2BDF4C51166D5B690054E77F /* specialhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4957166D5B680054E77F /* specialhandler.cpp */; };
		2BDF4C52166D5B690054E77F /* tradehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF495A166D5B680054E77F /* tradehandler.cpp */; };
		2BDF4C53166D5B690054E77F /* tradehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF495A166D5B680054E77F /* tradehandler.cpp */; };
		2BDF4C54166D5B690054E77F /* adminhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF495D166D5B680054E77F /* adminhandler.cpp */; };
		2BDF4C55166D5B690054E77F /* adminhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF495D166D5B680054E77F /* adminhandler.cpp */; };
		2BDF4C56166D5B690054E77F /* beinghandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF495F166D5B680054E77F /* beinghandler.cpp */; };
		2BDF4C57166D5B690054E77F /* beinghandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF495F166D5B680054E77F /* beinghandler.cpp */; };
		2BDF4C58166D5B690054E77F /* buysellhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4961166D5B680054E77F /* buysellhandler.cpp */; };
		2BDF4C59166D5B690054E77F /* buysellhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4961166D5B680054E77F /* buysellhandler.cpp */; };
		2BDF4C5A166D5B690054E77F /* charserverhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4963166D5B680054E77F /* charserverhandler.cpp */; };
		2BDF4C5B166D5B690054E77F /* charserverhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4963166D5B680054E77F /* charserverhandler.cpp */; };
		2BDF4C5C166D5B690054E77F /* chathandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4965166D5B680054E77F /* chathandler.cpp */; };
		2BDF4C5D166D5B690054E77F /* chathandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4965166D5B680054E77F /* chathandler.cpp */; };
		2BDF4C5E166D5B690054E77F /* gamehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4967166D5B680054E77F /* gamehandler.cpp */; };
		2BDF4C5F166D5B690054E77F /* gamehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4967166D5B680054E77F /* gamehandler.cpp */; };
		2BDF4C60166D5B690054E77F /* generalhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4969166D5B680054E77F /* generalhandler.cpp */; };
		2BDF4C61166D5B690054E77F /* generalhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4969166D5B680054E77F /* generalhandler.cpp */; };
		2BDF4C62166D5B690054E77F /* guildtab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF496C166D5B680054E77F /* guildtab.cpp */; };
		2BDF4C63166D5B690054E77F /* guildtab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF496C166D5B680054E77F /* guildtab.cpp */; };
		2BDF4C64166D5B690054E77F /* partytab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF496E166D5B680054E77F /* partytab.cpp */; };
		2BDF4C65166D5B690054E77F /* partytab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF496E166D5B680054E77F /* partytab.cpp */; };
		2BDF4C66166D5B690054E77F /* guildhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4970166D5B680054E77F /* guildhandler.cpp */; };
		2BDF4C67166D5B690054E77F /* guildhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4970166D5B680054E77F /* guildhandler.cpp */; };
		2BDF4C68166D5B690054E77F /* inventoryhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4972166D5B680054E77F /* inventoryhandler.cpp */; };
		2BDF4C69166D5B690054E77F /* inventoryhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4972166D5B680054E77F /* inventoryhandler.cpp */; };
		2BDF4C6A166D5B690054E77F /* itemhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4974166D5B680054E77F /* itemhandler.cpp */; };
		2BDF4C6B166D5B690054E77F /* itemhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4974166D5B680054E77F /* itemhandler.cpp */; };
		2BDF4C6C166D5B690054E77F /* loginhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4976166D5B680054E77F /* loginhandler.cpp */; };
		2BDF4C6D166D5B690054E77F /* loginhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4976166D5B680054E77F /* loginhandler.cpp */; };
		2BDF4C6E166D5B690054E77F /* messagehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4978166D5B680054E77F /* messagehandler.cpp */; };
		2BDF4C6F166D5B690054E77F /* messagehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4978166D5B680054E77F /* messagehandler.cpp */; };
		2BDF4C70166D5B690054E77F /* messagein.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF497A166D5B680054E77F /* messagein.cpp */; };
		2BDF4C71166D5B690054E77F /* messagein.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF497A166D5B680054E77F /* messagein.cpp */; };
		2BDF4C72166D5B690054E77F /* messageout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF497C166D5B680054E77F /* messageout.cpp */; };
		2BDF4C73166D5B690054E77F /* messageout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF497C166D5B680054E77F /* messageout.cpp */; };
		2BDF4C74166D5B690054E77F /* network.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF497E166D5B680054E77F /* network.cpp */; };
		2BDF4C75166D5B690054E77F /* network.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF497E166D5B680054E77F /* network.cpp */; };
		2BDF4C76166D5B690054E77F /* npchandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4980166D5B680054E77F /* npchandler.cpp */; };
		2BDF4C77166D5B690054E77F /* npchandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4980166D5B680054E77F /* npchandler.cpp */; };
		2BDF4C78166D5B690054E77F /* partyhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4982166D5B680054E77F /* partyhandler.cpp */; };
		2BDF4C79166D5B690054E77F /* partyhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4982166D5B680054E77F /* partyhandler.cpp */; };
		2BDF4C7A166D5B690054E77F /* playerhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4984166D5B680054E77F /* playerhandler.cpp */; };
		2BDF4C7B166D5B690054E77F /* playerhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4984166D5B680054E77F /* playerhandler.cpp */; };
		2BDF4C7C166D5B690054E77F /* specialhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4987166D5B680054E77F /* specialhandler.cpp */; };
		2BDF4C7D166D5B690054E77F /* specialhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4987166D5B680054E77F /* specialhandler.cpp */; };
		2BDF4C7E166D5B690054E77F /* tradehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4989166D5B680054E77F /* tradehandler.cpp */; };
		2BDF4C7F166D5B690054E77F /* tradehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4989166D5B680054E77F /* tradehandler.cpp */; };
		2BDF4C80166D5B690054E77F /* messagein.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4992166D5B680054E77F /* messagein.cpp */; };
		2BDF4C81166D5B690054E77F /* messagein.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4992166D5B680054E77F /* messagein.cpp */; };
		2BDF4C82166D5B690054E77F /* messageout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4994166D5B680054E77F /* messageout.cpp */; };
		2BDF4C83166D5B690054E77F /* messageout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4994166D5B680054E77F /* messageout.cpp */; };
		2BDF4C84166D5B690054E77F /* net.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4996166D5B680054E77F /* net.cpp */; };
		2BDF4C85166D5B690054E77F /* net.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4996166D5B680054E77F /* net.cpp */; };
		2BDF4C86166D5B690054E77F /* packetcounters.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4999166D5B680054E77F /* packetcounters.cpp */; };
		2BDF4C87166D5B690054E77F /* packetcounters.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4999166D5B680054E77F /* packetcounters.cpp */; };
		2BDF4C88166D5B690054E77F /* adminhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49A0166D5B680054E77F /* adminhandler.cpp */; };
		2BDF4C89166D5B690054E77F /* adminhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49A0166D5B680054E77F /* adminhandler.cpp */; };
		2BDF4C8A166D5B690054E77F /* beinghandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49A2166D5B680054E77F /* beinghandler.cpp */; };
		2BDF4C8B166D5B690054E77F /* beinghandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49A2166D5B680054E77F /* beinghandler.cpp */; };
		2BDF4C8C166D5B690054E77F /* buysellhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49A4166D5B680054E77F /* buysellhandler.cpp */; };
		2BDF4C8D166D5B690054E77F /* buysellhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49A4166D5B680054E77F /* buysellhandler.cpp */; };
		2BDF4C8E166D5B690054E77F /* charserverhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49A6166D5B680054E77F /* charserverhandler.cpp */; };
		2BDF4C8F166D5B690054E77F /* charserverhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49A6166D5B680054E77F /* charserverhandler.cpp */; };
		2BDF4C90166D5B690054E77F /* chathandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49A8166D5B680054E77F /* chathandler.cpp */; };
		2BDF4C91166D5B690054E77F /* chathandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49A8166D5B680054E77F /* chathandler.cpp */; };
		2BDF4C92166D5B690054E77F /* gamehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49AA166D5B680054E77F /* gamehandler.cpp */; };
		2BDF4C93166D5B690054E77F /* gamehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49AA166D5B680054E77F /* gamehandler.cpp */; };
		2BDF4C94166D5B690054E77F /* generalhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49AC166D5B680054E77F /* generalhandler.cpp */; };
		2BDF4C95166D5B690054E77F /* generalhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49AC166D5B680054E77F /* generalhandler.cpp */; };
		2BDF4C96166D5B690054E77F /* guildtab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49AF166D5B680054E77F /* guildtab.cpp */; };
		2BDF4C97166D5B690054E77F /* guildtab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49AF166D5B680054E77F /* guildtab.cpp */; };
		2BDF4C98166D5B690054E77F /* partytab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49B1166D5B680054E77F /* partytab.cpp */; };
		2BDF4C99166D5B690054E77F /* partytab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49B1166D5B680054E77F /* partytab.cpp */; };
		2BDF4C9A166D5B690054E77F /* guildhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49B3166D5B680054E77F /* guildhandler.cpp */; };
		2BDF4C9B166D5B690054E77F /* guildhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49B3166D5B680054E77F /* guildhandler.cpp */; };
		2BDF4C9C166D5B690054E77F /* inventoryhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49B5166D5B680054E77F /* inventoryhandler.cpp */; };
		2BDF4C9D166D5B690054E77F /* inventoryhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49B5166D5B680054E77F /* inventoryhandler.cpp */; };
		2BDF4C9E166D5B690054E77F /* itemhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49B7166D5B680054E77F /* itemhandler.cpp */; };
		2BDF4C9F166D5B690054E77F /* itemhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49B7166D5B680054E77F /* itemhandler.cpp */; };
		2BDF4CA0166D5B690054E77F /* loginhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49B9166D5B680054E77F /* loginhandler.cpp */; };
		2BDF4CA1166D5B690054E77F /* loginhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49B9166D5B680054E77F /* loginhandler.cpp */; };
		2BDF4CA2166D5B690054E77F /* messagehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49BB166D5B680054E77F /* messagehandler.cpp */; };
		2BDF4CA3166D5B690054E77F /* messagehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49BB166D5B680054E77F /* messagehandler.cpp */; };
		2BDF4CA4166D5B690054E77F /* messagein.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49BD166D5B680054E77F /* messagein.cpp */; };
		2BDF4CA5166D5B690054E77F /* messagein.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49BD166D5B680054E77F /* messagein.cpp */; };
		2BDF4CA6166D5B690054E77F /* messageout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49BF166D5B680054E77F /* messageout.cpp */; };
		2BDF4CA7166D5B690054E77F /* messageout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49BF166D5B680054E77F /* messageout.cpp */; };
		2BDF4CA8166D5B690054E77F /* network.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49C1166D5B680054E77F /* network.cpp */; };
		2BDF4CA9166D5B690054E77F /* network.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49C1166D5B680054E77F /* network.cpp */; };
		2BDF4CAA166D5B690054E77F /* npchandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49C3166D5B680054E77F /* npchandler.cpp */; };
		2BDF4CAB166D5B690054E77F /* npchandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49C3166D5B680054E77F /* npchandler.cpp */; };
		2BDF4CAC166D5B690054E77F /* partyhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49C5166D5B680054E77F /* partyhandler.cpp */; };
		2BDF4CAD166D5B690054E77F /* partyhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49C5166D5B680054E77F /* partyhandler.cpp */; };
		2BDF4CAE166D5B690054E77F /* playerhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49C7166D5B680054E77F /* playerhandler.cpp */; };
		2BDF4CAF166D5B690054E77F /* playerhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49C7166D5B680054E77F /* playerhandler.cpp */; };
		2BDF4CB0166D5B690054E77F /* questhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49CA166D5B680054E77F /* questhandler.cpp */; };
		2BDF4CB1166D5B690054E77F /* questhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49CA166D5B680054E77F /* questhandler.cpp */; };
		2BDF4CB2166D5B690054E77F /* specialhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49CC166D5B680054E77F /* specialhandler.cpp */; };
		2BDF4CB3166D5B690054E77F /* specialhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49CC166D5B680054E77F /* specialhandler.cpp */; };
		2BDF4CB4166D5B690054E77F /* tradehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49CE166D5B680054E77F /* tradehandler.cpp */; };
		2BDF4CB5166D5B690054E77F /* tradehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49CE166D5B680054E77F /* tradehandler.cpp */; };
		2BDF4CB6166D5B690054E77F /* normalopenglgraphics.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49D2166D5B680054E77F /* normalopenglgraphics.cpp */; };
		2BDF4CB7166D5B690054E77F /* normalopenglgraphics.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49D2166D5B680054E77F /* normalopenglgraphics.cpp */; };
		2BDF4CB8166D5B690054E77F /* particle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49D4166D5B680054E77F /* particle.cpp */; };
		2BDF4CB9166D5B690054E77F /* particle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49D4166D5B680054E77F /* particle.cpp */; };
		2BDF4CBA166D5B690054E77F /* particlecontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49D6166D5B680054E77F /* particlecontainer.cpp */; };
		2BDF4CBB166D5B690054E77F /* particlecontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49D6166D5B680054E77F /* particlecontainer.cpp */; };
		2BDF4CBC166D5B690054E77F /* particleemitter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49D8166D5B680054E77F /* particleemitter.cpp */; };
		2BDF4CBD166D5B690054E77F /* particleemitter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49D8166D5B680054E77F /* particleemitter.cpp */; };
		2BDF4CBE166D5B690054E77F /* party.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49DB166D5B680054E77F /* party.cpp */; };
		2BDF4CBF166D5B690054E77F /* party.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49DB166D5B680054E77F /* party.cpp */; };
		2BDF4CC0166D5B690054E77F /* playerinfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49DD166D5B680054E77F /* playerinfo.cpp */; };
		2BDF4CC1166D5B690054E77F /* playerinfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49DD166D5B680054E77F /* playerinfo.cpp */; };
		2BDF4CC2166D5B690054E77F /* playerrelations.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49DF166D5B680054E77F /* playerrelations.cpp */; };
		2BDF4CC3166D5B690054E77F /* playerrelations.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49DF166D5B680054E77F /* playerrelations.cpp */; };
		2BDF4CC4166D5B690054E77F /* position.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49E1166D5B680054E77F /* position.cpp */; };
		2BDF4CC5166D5B690054E77F /* position.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49E1166D5B680054E77F /* position.cpp */; };
		2BDF4CC6166D5B690054E77F /* action.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49E5166D5B680054E77F /* action.cpp */; };
		2BDF4CC7166D5B690054E77F /* action.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49E5166D5B680054E77F /* action.cpp */; };
		2BDF4CC8166D5B690054E77F /* ambientlayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49E7166D5B680054E77F /* ambientlayer.cpp */; };
		2BDF4CC9166D5B690054E77F /* ambientlayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49E7166D5B680054E77F /* ambientlayer.cpp */; };
		2BDF4CCA166D5B690054E77F /* animation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49E9166D5B680054E77F /* animation.cpp */; };
		2BDF4CCB166D5B690054E77F /* animation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49E9166D5B680054E77F /* animation.cpp */; };
		2BDF4CCC166D5B690054E77F /* atlasmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49EB166D5B680054E77F /* atlasmanager.cpp */; };
		2BDF4CCD166D5B690054E77F /* atlasmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49EB166D5B680054E77F /* atlasmanager.cpp */; };
		2BDF4CCE166D5B690054E77F /* beinginfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49ED166D5B680054E77F /* beinginfo.cpp */; };
		2BDF4CCF166D5B690054E77F /* beinginfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49ED166D5B680054E77F /* beinginfo.cpp */; };
		2BDF4CD0166D5B690054E77F /* chardb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49EF166D5B680054E77F /* chardb.cpp */; };
		2BDF4CD1166D5B690054E77F /* chardb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49EF166D5B680054E77F /* chardb.cpp */; };
		2BDF4CD2166D5B690054E77F /* colordb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49F1166D5B680054E77F /* colordb.cpp */; };
		2BDF4CD3166D5B690054E77F /* colordb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49F1166D5B680054E77F /* colordb.cpp */; };
		2BDF4CD4166D5B690054E77F /* cursor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49F3166D5B680054E77F /* cursor.cpp */; };
		2BDF4CD5166D5B690054E77F /* cursor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49F3166D5B680054E77F /* cursor.cpp */; };
		2BDF4CD6166D5B690054E77F /* dye.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49F5166D5B680054E77F /* dye.cpp */; };
		2BDF4CD7166D5B690054E77F /* dye.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49F5166D5B680054E77F /* dye.cpp */; };
		2BDF4CD8166D5B690054E77F /* emotedb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49F7166D5B680054E77F /* emotedb.cpp */; };
		2BDF4CD9166D5B690054E77F /* emotedb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49F7166D5B680054E77F /* emotedb.cpp */; };
		2BDF4CDA166D5B690054E77F /* image.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49FA166D5B680054E77F /* image.cpp */; };
		2BDF4CDB166D5B690054E77F /* image.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49FA166D5B680054E77F /* image.cpp */; };
		2BDF4CDC166D5B690054E77F /* imagehelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49FC166D5B680054E77F /* imagehelper.cpp */; };
		2BDF4CDD166D5B690054E77F /* imagehelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49FC166D5B680054E77F /* imagehelper.cpp */; };
		2BDF4CDE166D5B690054E77F /* imageset.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49FE166D5B680054E77F /* imageset.cpp */; };
		2BDF4CDF166D5B690054E77F /* imageset.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF49FE166D5B680054E77F /* imageset.cpp */; };
		2BDF4CE0166D5B690054E77F /* imagewriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A00166D5B680054E77F /* imagewriter.cpp */; };
		2BDF4CE1166D5B690054E77F /* imagewriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A00166D5B680054E77F /* imagewriter.cpp */; };
		2BDF4CE2166D5B690054E77F /* itemdb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A02166D5B680054E77F /* itemdb.cpp */; };
		2BDF4CE3166D5B690054E77F /* itemdb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A02166D5B680054E77F /* itemdb.cpp */; };
		2BDF4CE4166D5B690054E77F /* iteminfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A04166D5B680054E77F /* iteminfo.cpp */; };
		2BDF4CE5166D5B690054E77F /* iteminfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A04166D5B680054E77F /* iteminfo.cpp */; };
		2BDF4CE6166D5B690054E77F /* mapdb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A06166D5B680054E77F /* mapdb.cpp */; };
		2BDF4CE7166D5B690054E77F /* mapdb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A06166D5B680054E77F /* mapdb.cpp */; };
		2BDF4CE8166D5B690054E77F /* mapreader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A08166D5B680054E77F /* mapreader.cpp */; };
		2BDF4CE9166D5B690054E77F /* mapreader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A08166D5B680054E77F /* mapreader.cpp */; };
		2BDF4CEA166D5B690054E77F /* monsterdb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A0A166D5B680054E77F /* monsterdb.cpp */; };
		2BDF4CEB166D5B690054E77F /* monsterdb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A0A166D5B680054E77F /* monsterdb.cpp */; };
		2BDF4CEC166D5B690054E77F /* npcdb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A0C166D5B680054E77F /* npcdb.cpp */; };
		2BDF4CED166D5B690054E77F /* npcdb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A0C166D5B680054E77F /* npcdb.cpp */; };
		2BDF4CEE166D5B690054E77F /* openglimagehelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A0E166D5B680054E77F /* openglimagehelper.cpp */; };
		2BDF4CEF166D5B690054E77F /* openglimagehelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A0E166D5B680054E77F /* openglimagehelper.cpp */; };
		2BDF4CF0166D5B690054E77F /* resource.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A10166D5B680054E77F /* resource.cpp */; };
		2BDF4CF1166D5B690054E77F /* resource.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A10166D5B680054E77F /* resource.cpp */; };
		2BDF4CF2166D5B690054E77F /* resourcemanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A12166D5B680054E77F /* resourcemanager.cpp */; };
		2BDF4CF3166D5B690054E77F /* resourcemanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A12166D5B680054E77F /* resourcemanager.cpp */; };
		2BDF4CF4166D5B690054E77F /* sdlimagehelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A14166D5B680054E77F /* sdlimagehelper.cpp */; };
		2BDF4CF5166D5B690054E77F /* sdlimagehelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A14166D5B680054E77F /* sdlimagehelper.cpp */; };
		2BDF4CF6166D5B690054E77F /* sdlmusic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A16166D5B680054E77F /* sdlmusic.cpp */; };
		2BDF4CF7166D5B690054E77F /* sdlmusic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A16166D5B680054E77F /* sdlmusic.cpp */; };
		2BDF4CF8166D5B690054E77F /* soundeffect.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A18166D5B680054E77F /* soundeffect.cpp */; };
		2BDF4CF9166D5B690054E77F /* soundeffect.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A18166D5B680054E77F /* soundeffect.cpp */; };
		2BDF4CFA166D5B690054E77F /* specialdb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A1A166D5B680054E77F /* specialdb.cpp */; };
		2BDF4CFB166D5B690054E77F /* specialdb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A1A166D5B680054E77F /* specialdb.cpp */; };
		2BDF4CFC166D5B690054E77F /* spritedef.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A1C166D5B680054E77F /* spritedef.cpp */; };
		2BDF4CFD166D5B690054E77F /* spritedef.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A1C166D5B680054E77F /* spritedef.cpp */; };
		2BDF4CFE166D5B690054E77F /* subimage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A1E166D5B680054E77F /* subimage.cpp */; };
		2BDF4CFF166D5B690054E77F /* subimage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A1E166D5B680054E77F /* subimage.cpp */; };
		2BDF4D00166D5B690054E77F /* wallpaper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A20166D5B680054E77F /* wallpaper.cpp */; };
		2BDF4D01166D5B690054E77F /* wallpaper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A20166D5B680054E77F /* wallpaper.cpp */; };
		2BDF4D02166D5B690054E77F /* rotationalparticle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A22166D5B680054E77F /* rotationalparticle.cpp */; };
		2BDF4D03166D5B690054E77F /* rotationalparticle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A22166D5B680054E77F /* rotationalparticle.cpp */; };
		2BDF4D04166D5B690054E77F /* safeopenglgraphics.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A24166D5B680054E77F /* safeopenglgraphics.cpp */; };
		2BDF4D05166D5B690054E77F /* safeopenglgraphics.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A24166D5B680054E77F /* safeopenglgraphics.cpp */; };
		2BDF4D06166D5B690054E77F /* SDLMain.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A27166D5B680054E77F /* SDLMain.m */; };
		2BDF4D07166D5B690054E77F /* SDLMain.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A27166D5B680054E77F /* SDLMain.m */; };
		2BDF4D08166D5B690054E77F /* shopitem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A28166D5B680054E77F /* shopitem.cpp */; };
		2BDF4D09166D5B690054E77F /* shopitem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A28166D5B680054E77F /* shopitem.cpp */; };
		2BDF4D0A166D5B690054E77F /* simpleanimation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A2A166D5B680054E77F /* simpleanimation.cpp */; };
		2BDF4D0B166D5B690054E77F /* simpleanimation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A2A166D5B680054E77F /* simpleanimation.cpp */; };
		2BDF4D0C166D5B690054E77F /* soundmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A2C166D5B680054E77F /* soundmanager.cpp */; };
		2BDF4D0D166D5B690054E77F /* soundmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A2C166D5B680054E77F /* soundmanager.cpp */; };
		2BDF4D0E166D5B690054E77F /* spellmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A2E166D5B680054E77F /* spellmanager.cpp */; };
		2BDF4D0F166D5B690054E77F /* spellmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A2E166D5B680054E77F /* spellmanager.cpp */; };
		2BDF4D10166D5B690054E77F /* spellshortcut.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A30166D5B680054E77F /* spellshortcut.cpp */; };
		2BDF4D11166D5B690054E77F /* spellshortcut.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A30166D5B680054E77F /* spellshortcut.cpp */; };
		2BDF4D12166D5B690054E77F /* statuseffect.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A33166D5B680054E77F /* statuseffect.cpp */; };
		2BDF4D13166D5B690054E77F /* statuseffect.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A33166D5B680054E77F /* statuseffect.cpp */; };
		2BDF4D14166D5B690054E77F /* testlauncher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A36166D5B680054E77F /* testlauncher.cpp */; };
		2BDF4D15166D5B690054E77F /* testlauncher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A36166D5B680054E77F /* testlauncher.cpp */; };
		2BDF4D16166D5B690054E77F /* testmain.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A38166D5B680054E77F /* testmain.cpp */; };
		2BDF4D17166D5B690054E77F /* testmain.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A38166D5B680054E77F /* testmain.cpp */; };
		2BDF4D18166D5B690054E77F /* text.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A3A166D5B680054E77F /* text.cpp */; };
		2BDF4D19166D5B690054E77F /* text.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A3A166D5B680054E77F /* text.cpp */; };
		2BDF4D1A166D5B690054E77F /* textcommand.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A3C166D5B680054E77F /* textcommand.cpp */; };
		2BDF4D1B166D5B690054E77F /* textcommand.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A3C166D5B680054E77F /* textcommand.cpp */; };
		2BDF4D1C166D5B690054E77F /* textmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A3E166D5B680054E77F /* textmanager.cpp */; };
		2BDF4D1D166D5B690054E77F /* textmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A3E166D5B680054E77F /* textmanager.cpp */; };
		2BDF4D1E166D5B690054E77F /* textparticle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A40166D5B680054E77F /* textparticle.cpp */; };
		2BDF4D1F166D5B690054E77F /* textparticle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A40166D5B680054E77F /* textparticle.cpp */; };
		2BDF4D20166D5B690054E77F /* touchactions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A44166D5B680054E77F /* touchactions.cpp */; };
		2BDF4D21166D5B690054E77F /* touchactions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A44166D5B680054E77F /* touchactions.cpp */; };
		2BDF4D22166D5B690054E77F /* touchmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A46166D5B680054E77F /* touchmanager.cpp */; };
		2BDF4D23166D5B690054E77F /* touchmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A46166D5B680054E77F /* touchmanager.cpp */; };
		2BDF4D24166D5B690054E77F /* units.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A48166D5B680054E77F /* units.cpp */; };
		2BDF4D25166D5B690054E77F /* units.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A48166D5B680054E77F /* units.cpp */; };
		2BDF4D26166D5B690054E77F /* base64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A4B166D5B680054E77F /* base64.cpp */; };
		2BDF4D27166D5B690054E77F /* base64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A4B166D5B680054E77F /* base64.cpp */; };
		2BDF4D28166D5B690054E77F /* checkutils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A4D166D5B680054E77F /* checkutils.cpp */; };
		2BDF4D29166D5B690054E77F /* checkutils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A4D166D5B680054E77F /* checkutils.cpp */; };
		2BDF4D2A166D5B690054E77F /* copynpaste.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A4F166D5B680054E77F /* copynpaste.cpp */; };
		2BDF4D2B166D5B690054E77F /* copynpaste.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A4F166D5B680054E77F /* copynpaste.cpp */; };
		2BDF4D2C166D5B690054E77F /* langs.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A53166D5B680054E77F /* langs.cpp */; };
		2BDF4D2D166D5B690054E77F /* langs.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A53166D5B680054E77F /* langs.cpp */; };
		2BDF4D2E166D5B690054E77F /* mkdir.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A56166D5B680054E77F /* mkdir.cpp */; };
		2BDF4D2F166D5B690054E77F /* mkdir.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A56166D5B680054E77F /* mkdir.cpp */; };
		2BDF4D30166D5B690054E77F /* paths.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A59166D5B680054E77F /* paths.cpp */; };
		2BDF4D31166D5B690054E77F /* paths.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A59166D5B680054E77F /* paths.cpp */; };
		2BDF4D32166D5B690054E77F /* perfomance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A5B166D5B680054E77F /* perfomance.cpp */; };
		2BDF4D33166D5B690054E77F /* perfomance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A5B166D5B680054E77F /* perfomance.cpp */; };
		2BDF4D34166D5B690054E77F /* physfsrwops.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A5D166D5B680054E77F /* physfsrwops.cpp */; };
		2BDF4D35166D5B690054E77F /* physfsrwops.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A5D166D5B680054E77F /* physfsrwops.cpp */; };
		2BDF4D36166D5B690054E77F /* process.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A5F166D5B680054E77F /* process.cpp */; };
		2BDF4D37166D5B690054E77F /* process.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A5F166D5B680054E77F /* process.cpp */; };
		2BDF4D3A166D5B690054E77F /* specialfolder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A63166D5B680054E77F /* specialfolder.cpp */; };
		2BDF4D3B166D5B690054E77F /* specialfolder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A63166D5B680054E77F /* specialfolder.cpp */; };
		2BDF4D3C166D5B690054E77F /* stringutils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A65166D5B680054E77F /* stringutils.cpp */; };
		2BDF4D3D166D5B690054E77F /* stringutils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A65166D5B680054E77F /* stringutils.cpp */; };
		2BDF4D40166D5B690054E77F /* podict.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A6A166D5B680054E77F /* podict.cpp */; };
		2BDF4D41166D5B690054E77F /* podict.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A6A166D5B680054E77F /* podict.cpp */; };
		2BDF4D42166D5B690054E77F /* poparser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A6C166D5B680054E77F /* poparser.cpp */; };
		2BDF4D43166D5B690054E77F /* poparser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A6C166D5B680054E77F /* poparser.cpp */; };
		2BDF4D44166D5B690054E77F /* translationmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A6E166D5B680054E77F /* translationmanager.cpp */; };
		2BDF4D45166D5B690054E77F /* translationmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A6E166D5B680054E77F /* translationmanager.cpp */; };
		2BDF4D46166D5B690054E77F /* xml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A70166D5B680054E77F /* xml.cpp */; };
		2BDF4D47166D5B690054E77F /* xml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A70166D5B680054E77F /* xml.cpp */; };
		2BDF4D48166D5B690054E77F /* vector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A73166D5B680054E77F /* vector.cpp */; };
		2BDF4D49166D5B690054E77F /* vector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF4A73166D5B680054E77F /* vector.cpp */; };
		2BDF4D4F166D5D9E0054E77F /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2BDF4D4A166D5D9E0054E77F /* SDL_image.framework */; };
		2BDF4D50166D5D9E0054E77F /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2BDF4D4B166D5D9E0054E77F /* SDL_mixer.framework */; };
		2BDF4D51166D5D9E0054E77F /* SDL_net.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2BDF4D4C166D5D9E0054E77F /* SDL_net.framework */; };
		2BDF4D52166D5D9E0054E77F /* SDL_ttf.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2BDF4D4D166D5D9E0054E77F /* SDL_ttf.framework */; };
		2BDF4D53166D5D9E0054E77F /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2BDF4D4E166D5D9E0054E77F /* SDL.framework */; };
		2BDF4D55166D5DCD0054E77F /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2BDF4D54166D5DCD0054E77F /* OpenGL.framework */; };
		2BDF4D57166D5E040054E77F /* libcurl.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 2BDF4D56166D5E040054E77F /* libcurl.dylib */; };
		2BDF4D6F166D6ADC0054E77F /* Mana.icns in Resources */ = {isa = PBXBuildFile; fileRef = 2BDF4D6E166D6ADC0054E77F /* Mana.icns */; };
		2BDF4D76166D783A0054E77F /* data in Resources */ = {isa = PBXBuildFile; fileRef = 2BDF4D75166D781C0054E77F /* data */; };
		2BDF4D81166D7F060054E77F /* SDL_image.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = 2BDF4D4A166D5D9E0054E77F /* SDL_image.framework */; };
		2BDF4D82166D7F090054E77F /* SDL_mixer.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = 2BDF4D4B166D5D9E0054E77F /* SDL_mixer.framework */; };
		2BDF4D83166D7F0D0054E77F /* SDL_net.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = 2BDF4D4C166D5D9E0054E77F /* SDL_net.framework */; };
		2BDF4D84166D7F0F0054E77F /* SDL_ttf.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = 2BDF4D4D166D5D9E0054E77F /* SDL_ttf.framework */; };
		2BDF4D85166D7F120054E77F /* SDL.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = 2BDF4D4E166D5D9E0054E77F /* SDL.framework */; };
		2BDF4D97166D8E0D0054E77F /* libfreetype.6.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 2BDF4D8F166D8E0C0054E77F /* libfreetype.6.dylib */; };
		2BDF4D98166D8E0D0054E77F /* libiconv.2.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 2BDF4D90166D8E0C0054E77F /* libiconv.2.dylib */; };
		2BDF4D99166D8E0D0054E77F /* libintl.8.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 2BDF4D91166D8E0C0054E77F /* libintl.8.dylib */; };
		2BDF4D9B166D8E0D0054E77F /* libpng15.15.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 2BDF4D93166D8E0D0054E77F /* libpng15.15.dylib */; };
		2BDF4D9C166D8E0D0054E77F /* libSDL_gfx.14.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 2BDF4D94166D8E0D0054E77F /* libSDL_gfx.14.dylib */; };
		2BDF4D9D166D8E0D0054E77F /* libxml2.2.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 2BDF4D95166D8E0D0054E77F /* libxml2.2.dylib */; };
		2BDF4D9E166D8E0D0054E77F /* libz.1.2.7.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 2BDF4D96166D8E0D0054E77F /* libz.1.2.7.dylib */; };
		2BDF4D9F166D8E2C0054E77F /* libfreetype.6.dylib in CopyFiles */ = {isa = PBXBuildFile; fileRef = 2BDF4D8F166D8E0C0054E77F /* libfreetype.6.dylib */; };
		2BDF4DA0166D8E2F0054E77F /* libiconv.2.dylib in CopyFiles */ = {isa = PBXBuildFile; fileRef = 2BDF4D90166D8E0C0054E77F /* libiconv.2.dylib */; };
		2BDF4DA1166D8E330054E77F /* libintl.8.dylib in CopyFiles */ = {isa = PBXBuildFile; fileRef = 2BDF4D91166D8E0C0054E77F /* libintl.8.dylib */; };
		2BDF4DA3166D8E370054E77F /* libpng15.15.dylib in CopyFiles */ = {isa = PBXBuildFile; fileRef = 2BDF4D93166D8E0D0054E77F /* libpng15.15.dylib */; };
		2BDF4DA4166D8E3C0054E77F /* libSDL_gfx.14.dylib in CopyFiles */ = {isa = PBXBuildFile; fileRef = 2BDF4D94166D8E0D0054E77F /* libSDL_gfx.14.dylib */; };
		2BDF4DA5166D8E3E0054E77F /* libxml2.2.dylib in CopyFiles */ = {isa = PBXBuildFile; fileRef = 2BDF4D95166D8E0D0054E77F /* libxml2.2.dylib */; };
		2BDF4DA6166D8E410054E77F /* libz.1.2.7.dylib in CopyFiles */ = {isa = PBXBuildFile; fileRef = 2BDF4D96166D8E0D0054E77F /* libz.1.2.7.dylib */; };
		2BDF4DA9166D99330054E77F /* libphysfs.2.0.2.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 2BDF4DA8166D99320054E77F /* libphysfs.2.0.2.dylib */; };
		2BDF4DAA166D99410054E77F /* libphysfs.2.0.2.dylib in CopyFiles */ = {isa = PBXBuildFile; fileRef = 2BDF4DA8166D99320054E77F /* libphysfs.2.0.2.dylib */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
		2BDF45E4166D5AEC0054E77F /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 2BDF45B6166D5AEC0054E77F /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 2BDF45BE166D5AEC0054E77F;
			remoteInfo = ManaPlus;
		};
/* End PBXContainerItemProxy section */

/* Begin PBXCopyFilesBuildPhase section */
		2BDF4D77166D7EA00054E77F /* CopyFiles */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = "";
			dstSubfolderSpec = 10;
			files = (
				2BDF4D81166D7F060054E77F /* SDL_image.framework in CopyFiles */,
				2BDF4D82166D7F090054E77F /* SDL_mixer.framework in CopyFiles */,
				2BDF4D83166D7F0D0054E77F /* SDL_net.framework in CopyFiles */,
				2BDF4D84166D7F0F0054E77F /* SDL_ttf.framework in CopyFiles */,
				2BDF4D85166D7F120054E77F /* SDL.framework in CopyFiles */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		2BDF4D86166D88400054E77F /* CopyFiles */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = "";
			dstSubfolderSpec = 12;
			files = (
				2BDF4DAA166D99410054E77F /* libphysfs.2.0.2.dylib in CopyFiles */,
				2BDF4DA6166D8E410054E77F /* libz.1.2.7.dylib in CopyFiles */,
				2BDF4DA5166D8E3E0054E77F /* libxml2.2.dylib in CopyFiles */,
				2BDF4DA3166D8E370054E77F /* libpng15.15.dylib in CopyFiles */,
				2BDF4DA4166D8E3C0054E77F /* libSDL_gfx.14.dylib in CopyFiles */,
				2BDF4D9F166D8E2C0054E77F /* libfreetype.6.dylib in CopyFiles */,
				2BDF4DA0166D8E2F0054E77F /* libiconv.2.dylib in CopyFiles */,
				2BDF4DA1166D8E330054E77F /* libintl.8.dylib in CopyFiles */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXCopyFilesBuildPhase section */

/* Begin PBXFileReference section */
		2BDF45BF166D5AEC0054E77F /* ManaPlus.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ManaPlus.app; sourceTree = BUILT_PRODUCTS_DIR; };
		2BDF45C3166D5AEC0054E77F /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
		2BDF45C6166D5AEC0054E77F /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = System/Library/Frameworks/AppKit.framework; sourceTree = SDKROOT; };
		2BDF45C7166D5AEC0054E77F /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };
		2BDF45C8166D5AEC0054E77F /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
		2BDF45CB166D5AEC0054E77F /* ManaPlus-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "ManaPlus-Info.plist"; sourceTree = "<group>"; };
		2BDF45CD166D5AEC0054E77F /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
		2BDF45D1166D5AEC0054E77F /* ManaPlus-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "ManaPlus-Prefix.pch"; sourceTree = "<group>"; };
		2BDF45D3166D5AEC0054E77F /* en */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; name = en; path = en.lproj/Credits.rtf; sourceTree = "<group>"; };
		2BDF45D5166D5AEC0054E77F /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
		2BDF45D6166D5AEC0054E77F /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
		2BDF45D9166D5AEC0054E77F /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/MainMenu.xib; sourceTree = "<group>"; };
		2BDF45E0166D5AEC0054E77F /* ManaPlusTests.octest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ManaPlusTests.octest; sourceTree = BUILT_PRODUCTS_DIR; };
		2BDF45E1166D5AEC0054E77F /* SenTestingKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SenTestingKit.framework; path = Library/Frameworks/SenTestingKit.framework; sourceTree = DEVELOPER_DIR; };
		2BDF45E8166D5AEC0054E77F /* ManaPlusTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "ManaPlusTests-Info.plist"; sourceTree = "<group>"; };
		2BDF45EA166D5AEC0054E77F /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
		2BDF45EC166D5AEC0054E77F /* ManaPlusTests.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ManaPlusTests.h; sourceTree = "<group>"; };
		2BDF45ED166D5AEC0054E77F /* ManaPlusTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ManaPlusTests.m; sourceTree = "<group>"; };
		2BDF4755166D5B680054E77F /* actionmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = actionmanager.cpp; path = ../../src/actionmanager.cpp; sourceTree = "<group>"; };
		2BDF4756166D5B680054E77F /* actionmanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = actionmanager.h; path = ../../src/actionmanager.h; sourceTree = "<group>"; };
		2BDF4757166D5B680054E77F /* actor.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = actor.cpp; path = ../../src/actor.cpp; sourceTree = "<group>"; };
		2BDF4758166D5B680054E77F /* actor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = actor.h; path = ../../src/actor.h; sourceTree = "<group>"; };
		2BDF4759166D5B680054E77F /* actorsprite.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = actorsprite.cpp; path = ../../src/actorsprite.cpp; sourceTree = "<group>"; };
		2BDF475A166D5B680054E77F /* actorsprite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = actorsprite.h; path = ../../src/actorsprite.h; sourceTree = "<group>"; };
		2BDF475B166D5B680054E77F /* actorspritelistener.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = actorspritelistener.h; path = ../../src/actorspritelistener.h; sourceTree = "<group>"; };
		2BDF475C166D5B680054E77F /* actorspritemanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = actorspritemanager.cpp; path = ../../src/actorspritemanager.cpp; sourceTree = "<group>"; };
		2BDF475D166D5B680054E77F /* actorspritemanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = actorspritemanager.h; path = ../../src/actorspritemanager.h; sourceTree = "<group>"; };
		2BDF475E166D5B680054E77F /* animatedsprite.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = animatedsprite.cpp; path = ../../src/animatedsprite.cpp; sourceTree = "<group>"; };
		2BDF475F166D5B680054E77F /* animatedsprite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = animatedsprite.h; path = ../../src/animatedsprite.h; sourceTree = "<group>"; };
		2BDF4760166D5B680054E77F /* animationdelayload.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = animationdelayload.cpp; path = ../../src/animationdelayload.cpp; sourceTree = "<group>"; };
		2BDF4761166D5B680054E77F /* animationdelayload.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = animationdelayload.h; path = ../../src/animationdelayload.h; sourceTree = "<group>"; };
		2BDF4762166D5B680054E77F /* animationparticle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = animationparticle.cpp; path = ../../src/animationparticle.cpp; sourceTree = "<group>"; };
		2BDF4763166D5B680054E77F /* animationparticle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = animationparticle.h; path = ../../src/animationparticle.h; sourceTree = "<group>"; };
		2BDF4764166D5B680054E77F /* auctionmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = auctionmanager.cpp; path = ../../src/auctionmanager.cpp; sourceTree = "<group>"; };
		2BDF4765166D5B680054E77F /* auctionmanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = auctionmanager.h; path = ../../src/auctionmanager.h; sourceTree = "<group>"; };
		2BDF4766166D5B680054E77F /* avatar.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = avatar.cpp; path = ../../src/avatar.cpp; sourceTree = "<group>"; };
		2BDF4767166D5B680054E77F /* avatar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = avatar.h; path = ../../src/avatar.h; sourceTree = "<group>"; };
		2BDF4768166D5B680054E77F /* being.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = being.cpp; path = ../../src/being.cpp; sourceTree = "<group>"; };
		2BDF4769166D5B680054E77F /* being.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = being.h; path = ../../src/being.h; sourceTree = "<group>"; };
		2BDF476A166D5B680054E77F /* channel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = channel.cpp; path = ../../src/channel.cpp; sourceTree = "<group>"; };
		2BDF476B166D5B680054E77F /* channel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = channel.h; path = ../../src/channel.h; sourceTree = "<group>"; };
		2BDF476C166D5B680054E77F /* channelmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = channelmanager.cpp; path = ../../src/channelmanager.cpp; sourceTree = "<group>"; };
		2BDF476D166D5B680054E77F /* channelmanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = channelmanager.h; path = ../../src/channelmanager.h; sourceTree = "<group>"; };
		2BDF476E166D5B680054E77F /* chatlogger.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = chatlogger.cpp; path = ../../src/chatlogger.cpp; sourceTree = "<group>"; };
		2BDF476F166D5B680054E77F /* chatlogger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = chatlogger.h; path = ../../src/chatlogger.h; sourceTree = "<group>"; };
		2BDF4770166D5B680054E77F /* client.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = client.cpp; path = ../../src/client.cpp; sourceTree = "<group>"; };
		2BDF4771166D5B680054E77F /* client.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = client.h; path = ../../src/client.h; sourceTree = "<group>"; };
		2BDF4772166D5B680054E77F /* commandhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = commandhandler.cpp; path = ../../src/commandhandler.cpp; sourceTree = "<group>"; };
		2BDF4773166D5B680054E77F /* commandhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = commandhandler.h; path = ../../src/commandhandler.h; sourceTree = "<group>"; };
		2BDF4774166D5B680054E77F /* commands.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = commands.cpp; path = ../../src/commands.cpp; sourceTree = "<group>"; };
		2BDF4775166D5B680054E77F /* commands.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = commands.h; path = ../../src/commands.h; sourceTree = "<group>"; };
		2BDF4776166D5B680054E77F /* compoundsprite.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = compoundsprite.cpp; path = ../../src/compoundsprite.cpp; sourceTree = "<group>"; };
		2BDF4777166D5B680054E77F /* compoundsprite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = compoundsprite.h; path = ../../src/compoundsprite.h; sourceTree = "<group>"; };
		2BDF4778166D5B680054E77F /* configlistener.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = configlistener.h; path = ../../src/configlistener.h; sourceTree = "<group>"; };
		2BDF4779166D5B680054E77F /* configuration.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = configuration.cpp; path = ../../src/configuration.cpp; sourceTree = "<group>"; };
		2BDF477A166D5B680054E77F /* configuration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = configuration.h; path = ../../src/configuration.h; sourceTree = "<group>"; };
		2BDF477C166D5B680054E77F /* debug_new.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = debug_new.cpp; sourceTree = "<group>"; };
		2BDF477D166D5B680054E77F /* debug_new.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = debug_new.h; sourceTree = "<group>"; };
		2BDF477E166D5B680054E77F /* fast_mutex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fast_mutex.h; sourceTree = "<group>"; };
		2BDF477F166D5B680054E77F /* static_assert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = static_assert.h; sourceTree = "<group>"; };
		2BDF4780166D5B680054E77F /* debug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = debug.h; path = ../../src/debug.h; sourceTree = "<group>"; };
		2BDF4781166D5B680054E77F /* defaults.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = defaults.cpp; path = ../../src/defaults.cpp; sourceTree = "<group>"; };
		2BDF4782166D5B680054E77F /* defaults.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = defaults.h; path = ../../src/defaults.h; sourceTree = "<group>"; };
		2BDF4783166D5B680054E77F /* depricatedevent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = depricatedevent.cpp; path = ../../src/depricatedevent.cpp; sourceTree = "<group>"; };
		2BDF4784166D5B680054E77F /* depricatedevent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = depricatedevent.h; path = ../../src/depricatedevent.h; sourceTree = "<group>"; };
		2BDF4785166D5B680054E77F /* dropshortcut.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = dropshortcut.cpp; path = ../../src/dropshortcut.cpp; sourceTree = "<group>"; };
		2BDF4786166D5B680054E77F /* dropshortcut.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = dropshortcut.h; path = ../../src/dropshortcut.h; sourceTree = "<group>"; };
		2BDF4787166D5B680054E77F /* effectmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = effectmanager.cpp; path = ../../src/effectmanager.cpp; sourceTree = "<group>"; };
		2BDF4788166D5B680054E77F /* effectmanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = effectmanager.h; path = ../../src/effectmanager.h; sourceTree = "<group>"; };
		2BDF4789166D5B680054E77F /* emoteshortcut.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = emoteshortcut.cpp; path = ../../src/emoteshortcut.cpp; sourceTree = "<group>"; };
		2BDF478A166D5B680054E77F /* emoteshortcut.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = emoteshortcut.h; path = ../../src/emoteshortcut.h; sourceTree = "<group>"; };
		2BDF478B166D5B680054E77F /* equipment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = equipment.h; path = ../../src/equipment.h; sourceTree = "<group>"; };
		2BDF478E166D5B680054E77F /* flooritem.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = flooritem.cpp; path = ../../src/flooritem.cpp; sourceTree = "<group>"; };
		2BDF478F166D5B680054E77F /* flooritem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = flooritem.h; path = ../../src/flooritem.h; sourceTree = "<group>"; };
		2BDF4790166D5B680054E77F /* game.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = game.cpp; path = ../../src/game.cpp; sourceTree = "<group>"; };
		2BDF4791166D5B680054E77F /* game.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = game.h; path = ../../src/game.h; sourceTree = "<group>"; };
		2BDF4792166D5B680054E77F /* graphics.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = graphics.cpp; path = ../../src/graphics.cpp; sourceTree = "<group>"; };
		2BDF4793166D5B680054E77F /* graphics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = graphics.h; path = ../../src/graphics.h; sourceTree = "<group>"; };
		2BDF4794166D5B680054E77F /* graphicsmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = graphicsmanager.cpp; path = ../../src/graphicsmanager.cpp; sourceTree = "<group>"; };
		2BDF4795166D5B680054E77F /* graphicsmanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = graphicsmanager.h; path = ../../src/graphicsmanager.h; sourceTree = "<group>"; };
		2BDF4796166D5B680054E77F /* graphicsvertexes.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = graphicsvertexes.cpp; path = ../../src/graphicsvertexes.cpp; sourceTree = "<group>"; };
		2BDF4797166D5B680054E77F /* graphicsvertexes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = graphicsvertexes.h; path = ../../src/graphicsvertexes.h; sourceTree = "<group>"; };
		2BDF4799166D5B680054E77F /* beingpopup.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = beingpopup.cpp; sourceTree = "<group>"; };
		2BDF479A166D5B680054E77F /* beingpopup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = beingpopup.h; sourceTree = "<group>"; };
		2BDF479B166D5B680054E77F /* botcheckerwindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = botcheckerwindow.cpp; sourceTree = "<group>"; };
		2BDF479C166D5B680054E77F /* botcheckerwindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = botcheckerwindow.h; sourceTree = "<group>"; };
		2BDF479D166D5B680054E77F /* buydialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = buydialog.cpp; sourceTree = "<group>"; };
		2BDF479E166D5B680054E77F /* buydialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = buydialog.h; sourceTree = "<group>"; };
		2BDF479F166D5B680054E77F /* buyselldialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = buyselldialog.cpp; sourceTree = "<group>"; };
		2BDF47A0166D5B680054E77F /* buyselldialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = buyselldialog.h; sourceTree = "<group>"; };
		2BDF47A1166D5B680054E77F /* changeemaildialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = changeemaildialog.cpp; sourceTree = "<group>"; };
		2BDF47A2166D5B680054E77F /* changeemaildialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = changeemaildialog.h; sourceTree = "<group>"; };
		2BDF47A3166D5B680054E77F /* changepassworddialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = changepassworddialog.cpp; sourceTree = "<group>"; };
		2BDF47A4166D5B680054E77F /* changepassworddialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = changepassworddialog.h; sourceTree = "<group>"; };
		2BDF47A5166D5B680054E77F /* charcreatedialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = charcreatedialog.cpp; sourceTree = "<group>"; };
		2BDF47A6166D5B680054E77F /* charcreatedialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = charcreatedialog.h; sourceTree = "<group>"; };
		2BDF47A7166D5B680054E77F /* charselectdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = charselectdialog.cpp; sourceTree = "<group>"; };
		2BDF47A8166D5B680054E77F /* charselectdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = charselectdialog.h; sourceTree = "<group>"; };
		2BDF47A9166D5B680054E77F /* chatwindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chatwindow.cpp; sourceTree = "<group>"; };
		2BDF47AA166D5B680054E77F /* chatwindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chatwindow.h; sourceTree = "<group>"; };
		2BDF47AB166D5B680054E77F /* confirmdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = confirmdialog.cpp; sourceTree = "<group>"; };
		2BDF47AC166D5B680054E77F /* confirmdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = confirmdialog.h; sourceTree = "<group>"; };
		2BDF47AD166D5B680054E77F /* connectiondialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = connectiondialog.cpp; sourceTree = "<group>"; };
		2BDF47AE166D5B680054E77F /* connectiondialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = connectiondialog.h; sourceTree = "<group>"; };
		2BDF47AF166D5B680054E77F /* debugwindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = debugwindow.cpp; sourceTree = "<group>"; };
		2BDF47B0166D5B680054E77F /* debugwindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = debugwindow.h; sourceTree = "<group>"; };
		2BDF47B1166D5B680054E77F /* didyouknowwindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = didyouknowwindow.cpp; sourceTree = "<group>"; };
		2BDF47B2166D5B680054E77F /* didyouknowwindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = didyouknowwindow.h; sourceTree = "<group>"; };
		2BDF47B3166D5B680054E77F /* editdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = editdialog.cpp; sourceTree = "<group>"; };
		2BDF47B4166D5B680054E77F /* editdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = editdialog.h; sourceTree = "<group>"; };
		2BDF47B5166D5B680054E77F /* editserverdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = editserverdialog.cpp; sourceTree = "<group>"; };
		2BDF47B6166D5B680054E77F /* editserverdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = editserverdialog.h; sourceTree = "<group>"; };
		2BDF47B7166D5B680054E77F /* equipmentwindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = equipmentwindow.cpp; sourceTree = "<group>"; };
		2BDF47B8166D5B680054E77F /* equipmentwindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = equipmentwindow.h; sourceTree = "<group>"; };
		2BDF47B9166D5B680054E77F /* focushandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = focushandler.cpp; sourceTree = "<group>"; };
		2BDF47BA166D5B680054E77F /* focushandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = focushandler.h; sourceTree = "<group>"; };
		2BDF47BB166D5B680054E77F /* gui.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = gui.cpp; sourceTree = "<group>"; };
		2BDF47BC166D5B680054E77F /* gui.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gui.h; sourceTree = "<group>"; };
		2BDF47BD166D5B680054E77F /* helpwindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = helpwindow.cpp; sourceTree = "<group>"; };
		2BDF47BE166D5B680054E77F /* helpwindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = helpwindow.h; sourceTree = "<group>"; };
		2BDF47BF166D5B680054E77F /* inventorywindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = inventorywindow.cpp; sourceTree = "<group>"; };
		2BDF47C0166D5B680054E77F /* inventorywindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = inventorywindow.h; sourceTree = "<group>"; };
		2BDF47C1166D5B680054E77F /* itemamountwindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = itemamountwindow.cpp; sourceTree = "<group>"; };
		2BDF47C2166D5B680054E77F /* itemamountwindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = itemamountwindow.h; sourceTree = "<group>"; };
		2BDF47C3166D5B680054E77F /* itempopup.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = itempopup.cpp; sourceTree = "<group>"; };
		2BDF47C4166D5B680054E77F /* itempopup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = itempopup.h; sourceTree = "<group>"; };
		2BDF47C5166D5B680054E77F /* killstats.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = killstats.cpp; sourceTree = "<group>"; };
		2BDF47C6166D5B680054E77F /* killstats.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = killstats.h; sourceTree = "<group>"; };
		2BDF47C7166D5B680054E77F /* logindialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = logindialog.cpp; sourceTree = "<group>"; };
		2BDF47C8166D5B680054E77F /* logindialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = logindialog.h; sourceTree = "<group>"; };
		2BDF47C9166D5B680054E77F /* minimap.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = minimap.cpp; sourceTree = "<group>"; };
		2BDF47CA166D5B680054E77F /* minimap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = minimap.h; sourceTree = "<group>"; };
		2BDF47CB166D5B680054E77F /* ministatuswindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ministatuswindow.cpp; sourceTree = "<group>"; };
		2BDF47CC166D5B680054E77F /* ministatuswindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ministatuswindow.h; sourceTree = "<group>"; };
		2BDF47CD166D5B680054E77F /* npcdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = npcdialog.cpp; sourceTree = "<group>"; };
		2BDF47CE166D5B680054E77F /* npcdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = npcdialog.h; sourceTree = "<group>"; };
		2BDF47CF166D5B680054E77F /* npcpostdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = npcpostdialog.cpp; sourceTree = "<group>"; };
		2BDF47D0166D5B680054E77F /* npcpostdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = npcpostdialog.h; sourceTree = "<group>"; };
		2BDF47D1166D5B680054E77F /* okdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = okdialog.cpp; sourceTree = "<group>"; };
		2BDF47D2166D5B680054E77F /* okdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = okdialog.h; sourceTree = "<group>"; };
		2BDF47D3166D5B680054E77F /* outfitwindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = outfitwindow.cpp; sourceTree = "<group>"; };
		2BDF47D4166D5B680054E77F /* outfitwindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = outfitwindow.h; sourceTree = "<group>"; };
		2BDF47D5166D5B680054E77F /* palette.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = palette.cpp; sourceTree = "<group>"; };
		2BDF47D6166D5B680054E77F /* palette.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = palette.h; sourceTree = "<group>"; };
		2BDF47D7166D5B680054E77F /* popupmenu.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = popupmenu.cpp; sourceTree = "<group>"; };
		2BDF47D8166D5B680054E77F /* popupmenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = popupmenu.h; sourceTree = "<group>"; };
		2BDF47D9166D5B680054E77F /* questswindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = questswindow.cpp; sourceTree = "<group>"; };
		2BDF47DA166D5B680054E77F /* questswindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = questswindow.h; sourceTree = "<group>"; };
		2BDF47DB166D5B680054E77F /* quitdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = quitdialog.cpp; sourceTree = "<group>"; };
		2BDF47DC166D5B680054E77F /* quitdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = quitdialog.h; sourceTree = "<group>"; };
		2BDF47DD166D5B680054E77F /* registerdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = registerdialog.cpp; sourceTree = "<group>"; };
		2BDF47DE166D5B680054E77F /* registerdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = registerdialog.h; sourceTree = "<group>"; };
		2BDF47DF166D5B680054E77F /* sdlfont.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sdlfont.cpp; sourceTree = "<group>"; };
		2BDF47E0166D5B680054E77F /* sdlfont.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sdlfont.h; sourceTree = "<group>"; };
		2BDF47E1166D5B680054E77F /* sdlinput.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sdlinput.cpp; sourceTree = "<group>"; };
		2BDF47E2166D5B680054E77F /* sdlinput.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sdlinput.h; sourceTree = "<group>"; };
		2BDF47E3166D5B680054E77F /* selldialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = selldialog.cpp; sourceTree = "<group>"; };
		2BDF47E4166D5B680054E77F /* selldialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = selldialog.h; sourceTree = "<group>"; };
		2BDF47E5166D5B680054E77F /* serverdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = serverdialog.cpp; sourceTree = "<group>"; };
		2BDF47E6166D5B680054E77F /* serverdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = serverdialog.h; sourceTree = "<group>"; };
		2BDF47E7166D5B680054E77F /* setup.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = setup.cpp; sourceTree = "<group>"; };
		2BDF47E8166D5B680054E77F /* setup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = setup.h; sourceTree = "<group>"; };
		2BDF47E9166D5B680054E77F /* setup_audio.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = setup_audio.cpp; sourceTree = "<group>"; };
		2BDF47EA166D5B680054E77F /* setup_audio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = setup_audio.h; sourceTree = "<group>"; };
		2BDF47EB166D5B680054E77F /* setup_chat.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = setup_chat.cpp; sourceTree = "<group>"; };
		2BDF47EC166D5B680054E77F /* setup_chat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = setup_chat.h; sourceTree = "<group>"; };
		2BDF47ED166D5B680054E77F /* setup_colors.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = setup_colors.cpp; sourceTree = "<group>"; };
		2BDF47EE166D5B680054E77F /* setup_colors.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = setup_colors.h; sourceTree = "<group>"; };
		2BDF47EF166D5B680054E77F /* setup_input.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = setup_input.cpp; sourceTree = "<group>"; };
		2BDF47F0166D5B680054E77F /* setup_input.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = setup_input.h; sourceTree = "<group>"; };
		2BDF47F1166D5B680054E77F /* setup_joystick.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = setup_joystick.cpp; sourceTree = "<group>"; };
		2BDF47F2166D5B680054E77F /* setup_joystick.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = setup_joystick.h; sourceTree = "<group>"; };
		2BDF47F3166D5B680054E77F /* setup_other.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = setup_other.cpp; sourceTree = "<group>"; };
		2BDF47F4166D5B680054E77F /* setup_other.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = setup_other.h; sourceTree = "<group>"; };
		2BDF47F5166D5B680054E77F /* setup_perfomance.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = setup_perfomance.cpp; sourceTree = "<group>"; };
		2BDF47F6166D5B680054E77F /* setup_perfomance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = setup_perfomance.h; sourceTree = "<group>"; };
		2BDF47F7166D5B680054E77F /* setup_players.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = setup_players.cpp; sourceTree = "<group>"; };
		2BDF47F8166D5B680054E77F /* setup_players.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = setup_players.h; sourceTree = "<group>"; };
		2BDF47F9166D5B680054E77F /* setup_relations.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = setup_relations.cpp; sourceTree = "<group>"; };
		2BDF47FA166D5B680054E77F /* setup_relations.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = setup_relations.h; sourceTree = "<group>"; };
		2BDF47FB166D5B680054E77F /* setup_theme.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = setup_theme.cpp; sourceTree = "<group>"; };
		2BDF47FC166D5B680054E77F /* setup_theme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = setup_theme.h; sourceTree = "<group>"; };
		2BDF47FD166D5B680054E77F /* setup_video.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = setup_video.cpp; sourceTree = "<group>"; };
		2BDF47FE166D5B680054E77F /* setup_video.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = setup_video.h; sourceTree = "<group>"; };
		2BDF47FF166D5B680054E77F /* setup_visual.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = setup_visual.cpp; sourceTree = "<group>"; };
		2BDF4800166D5B680054E77F /* setup_visual.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = setup_visual.h; sourceTree = "<group>"; };
		2BDF4801166D5B680054E77F /* setupactiondata.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = setupactiondata.h; sourceTree = "<group>"; };
		2BDF4802166D5B680054E77F /* shopwindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = shopwindow.cpp; sourceTree = "<group>"; };
		2BDF4803166D5B680054E77F /* shopwindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shopwindow.h; sourceTree = "<group>"; };
		2BDF4804166D5B680054E77F /* shortcutwindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = shortcutwindow.cpp; sourceTree = "<group>"; };
		2BDF4805166D5B680054E77F /* shortcutwindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shortcutwindow.h; sourceTree = "<group>"; };
		2BDF4806166D5B680054E77F /* skilldialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = skilldialog.cpp; sourceTree = "<group>"; };
		2BDF4807166D5B680054E77F /* skilldialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = skilldialog.h; sourceTree = "<group>"; };
		2BDF4808166D5B680054E77F /* socialwindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = socialwindow.cpp; sourceTree = "<group>"; };
		2BDF4809166D5B680054E77F /* socialwindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = socialwindow.h; sourceTree = "<group>"; };
		2BDF480A166D5B680054E77F /* specialswindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = specialswindow.cpp; sourceTree = "<group>"; };
		2BDF480B166D5B680054E77F /* specialswindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = specialswindow.h; sourceTree = "<group>"; };
		2BDF480C166D5B680054E77F /* speechbubble.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = speechbubble.cpp; sourceTree = "<group>"; };
		2BDF480D166D5B680054E77F /* speechbubble.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = speechbubble.h; sourceTree = "<group>"; };
		2BDF480E166D5B680054E77F /* spellpopup.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = spellpopup.cpp; sourceTree = "<group>"; };
		2BDF480F166D5B680054E77F /* spellpopup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = spellpopup.h; sourceTree = "<group>"; };
		2BDF4810166D5B680054E77F /* statuspopup.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = statuspopup.cpp; sourceTree = "<group>"; };
		2BDF4811166D5B680054E77F /* statuspopup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = statuspopup.h; sourceTree = "<group>"; };
		2BDF4812166D5B680054E77F /* statuswindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = statuswindow.cpp; sourceTree = "<group>"; };
		2BDF4813166D5B680054E77F /* statuswindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = statuswindow.h; sourceTree = "<group>"; };
		2BDF4814166D5B680054E77F /* textcommandeditor.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = textcommandeditor.cpp; sourceTree = "<group>"; };
		2BDF4815166D5B680054E77F /* textcommandeditor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = textcommandeditor.h; sourceTree = "<group>"; };
		2BDF4816166D5B680054E77F /* textdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = textdialog.cpp; sourceTree = "<group>"; };
		2BDF4817166D5B680054E77F /* textdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = textdialog.h; sourceTree = "<group>"; };
		2BDF4818166D5B680054E77F /* textpopup.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = textpopup.cpp; sourceTree = "<group>"; };
		2BDF4819166D5B680054E77F /* textpopup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = textpopup.h; sourceTree = "<group>"; };
		2BDF481A166D5B680054E77F /* theme.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = theme.cpp; sourceTree = "<group>"; };
		2BDF481B166D5B680054E77F /* theme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = theme.h; sourceTree = "<group>"; };
		2BDF481C166D5B680054E77F /* tradewindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tradewindow.cpp; sourceTree = "<group>"; };
		2BDF481D166D5B680054E77F /* tradewindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tradewindow.h; sourceTree = "<group>"; };
		2BDF481E166D5B680054E77F /* unregisterdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = unregisterdialog.cpp; sourceTree = "<group>"; };
		2BDF481F166D5B680054E77F /* unregisterdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unregisterdialog.h; sourceTree = "<group>"; };
		2BDF4820166D5B680054E77F /* updaterwindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = updaterwindow.cpp; sourceTree = "<group>"; };
		2BDF4821166D5B680054E77F /* updaterwindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = updaterwindow.h; sourceTree = "<group>"; };
		2BDF4822166D5B680054E77F /* userpalette.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = userpalette.cpp; sourceTree = "<group>"; };
		2BDF4823166D5B680054E77F /* userpalette.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = userpalette.h; sourceTree = "<group>"; };
		2BDF4824166D5B680054E77F /* viewport.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = viewport.cpp; sourceTree = "<group>"; };
		2BDF4825166D5B680054E77F /* viewport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = viewport.h; sourceTree = "<group>"; };
		2BDF4826166D5B680054E77F /* whoisonline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = whoisonline.cpp; sourceTree = "<group>"; };
		2BDF4827166D5B680054E77F /* whoisonline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = whoisonline.h; sourceTree = "<group>"; };
		2BDF4829166D5B680054E77F /* avatarlistbox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = avatarlistbox.cpp; sourceTree = "<group>"; };
		2BDF482A166D5B680054E77F /* avatarlistbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = avatarlistbox.h; sourceTree = "<group>"; };
		2BDF482B166D5B680054E77F /* battletab.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = battletab.cpp; sourceTree = "<group>"; };
		2BDF482C166D5B680054E77F /* battletab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = battletab.h; sourceTree = "<group>"; };
		2BDF482D166D5B680054E77F /* browserbox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = browserbox.cpp; sourceTree = "<group>"; };
		2BDF482E166D5B680054E77F /* browserbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = browserbox.h; sourceTree = "<group>"; };
		2BDF482F166D5B680054E77F /* browserbox_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = browserbox_unittest.cc; sourceTree = "<group>"; };
		2BDF4830166D5B680054E77F /* button.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = button.cpp; sourceTree = "<group>"; };
		2BDF4831166D5B680054E77F /* button.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = button.h; sourceTree = "<group>"; };
		2BDF4832166D5B680054E77F /* channeltab.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = channeltab.cpp; sourceTree = "<group>"; };
		2BDF4833166D5B680054E77F /* channeltab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = channeltab.h; sourceTree = "<group>"; };
		2BDF4834166D5B680054E77F /* chattab.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chattab.cpp; sourceTree = "<group>"; };
		2BDF4835166D5B680054E77F /* chattab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chattab.h; sourceTree = "<group>"; };
		2BDF4836166D5B680054E77F /* checkbox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = checkbox.cpp; sourceTree = "<group>"; };
		2BDF4837166D5B680054E77F /* checkbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = checkbox.h; sourceTree = "<group>"; };
		2BDF4838166D5B680054E77F /* container.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = container.cpp; sourceTree = "<group>"; };
		2BDF4839166D5B680054E77F /* container.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = container.h; sourceTree = "<group>"; };
		2BDF483A166D5B680054E77F /* desktop.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = desktop.cpp; sourceTree = "<group>"; };
		2BDF483B166D5B680054E77F /* desktop.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = desktop.h; sourceTree = "<group>"; };
		2BDF483C166D5B680054E77F /* dropdown.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dropdown.cpp; sourceTree = "<group>"; };
		2BDF483D166D5B680054E77F /* dropdown.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dropdown.h; sourceTree = "<group>"; };
		2BDF483E166D5B680054E77F /* dropshortcutcontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dropshortcutcontainer.cpp; sourceTree = "<group>"; };
		2BDF483F166D5B680054E77F /* dropshortcutcontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dropshortcutcontainer.h; sourceTree = "<group>"; };
		2BDF4840166D5B680054E77F /* emoteshortcutcontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = emoteshortcutcontainer.cpp; sourceTree = "<group>"; };
		2BDF4841166D5B680054E77F /* emoteshortcutcontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = emoteshortcutcontainer.h; sourceTree = "<group>"; };
		2BDF4842166D5B680054E77F /* extendedlistbox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = extendedlistbox.cpp; sourceTree = "<group>"; };
		2BDF4843166D5B680054E77F /* extendedlistbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = extendedlistbox.h; sourceTree = "<group>"; };
		2BDF4844166D5B680054E77F /* extendedlistmodel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = extendedlistmodel.h; sourceTree = "<group>"; };
		2BDF4845166D5B680054E77F /* extendednamesmodel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = extendednamesmodel.cpp; sourceTree = "<group>"; };
		2BDF4846166D5B680054E77F /* extendednamesmodel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = extendednamesmodel.h; sourceTree = "<group>"; };
		2BDF4847166D5B680054E77F /* flowcontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = flowcontainer.cpp; sourceTree = "<group>"; };
		2BDF4848166D5B680054E77F /* flowcontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = flowcontainer.h; sourceTree = "<group>"; };
		2BDF4849166D5B680054E77F /* guildchattab.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = guildchattab.cpp; sourceTree = "<group>"; };
		2BDF484A166D5B680054E77F /* guildchattab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = guildchattab.h; sourceTree = "<group>"; };
		2BDF484B166D5B680054E77F /* guitable.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = guitable.cpp; sourceTree = "<group>"; };
		2BDF484C166D5B680054E77F /* guitable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = guitable.h; sourceTree = "<group>"; };
		2BDF484D166D5B680054E77F /* horizontcontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = horizontcontainer.cpp; sourceTree = "<group>"; };
		2BDF484E166D5B680054E77F /* horizontcontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = horizontcontainer.h; sourceTree = "<group>"; };
		2BDF484F166D5B680054E77F /* icon.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = icon.cpp; sourceTree = "<group>"; };
		2BDF4850166D5B680054E77F /* icon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = icon.h; sourceTree = "<group>"; };
		2BDF4851166D5B680054E77F /* inttextfield.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = inttextfield.cpp; sourceTree = "<group>"; };
		2BDF4852166D5B680054E77F /* inttextfield.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = inttextfield.h; sourceTree = "<group>"; };
		2BDF4853166D5B680054E77F /* itemcontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = itemcontainer.cpp; sourceTree = "<group>"; };
		2BDF4854166D5B680054E77F /* itemcontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = itemcontainer.h; sourceTree = "<group>"; };
		2BDF4855166D5B680054E77F /* itemlinkhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = itemlinkhandler.cpp; sourceTree = "<group>"; };
		2BDF4856166D5B680054E77F /* itemlinkhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = itemlinkhandler.h; sourceTree = "<group>"; };
		2BDF4857166D5B680054E77F /* itemshortcutcontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = itemshortcutcontainer.cpp; sourceTree = "<group>"; };
		2BDF4858166D5B680054E77F /* itemshortcutcontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = itemshortcutcontainer.h; sourceTree = "<group>"; };
		2BDF4859166D5B680054E77F /* label.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = label.cpp; sourceTree = "<group>"; };
		2BDF485A166D5B680054E77F /* label.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = label.h; sourceTree = "<group>"; };
		2BDF485B166D5B680054E77F /* layout.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = layout.cpp; sourceTree = "<group>"; };
		2BDF485C166D5B680054E77F /* layout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = layout.h; sourceTree = "<group>"; };
		2BDF485D166D5B680054E77F /* layouthelper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = layouthelper.cpp; sourceTree = "<group>"; };
		2BDF485E166D5B680054E77F /* layouthelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = layouthelper.h; sourceTree = "<group>"; };
		2BDF485F166D5B680054E77F /* linkhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = linkhandler.h; sourceTree = "<group>"; };
		2BDF4860166D5B680054E77F /* listbox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = listbox.cpp; sourceTree = "<group>"; };
		2BDF4861166D5B680054E77F /* listbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = listbox.h; sourceTree = "<group>"; };
		2BDF4862166D5B680054E77F /* mouseevent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mouseevent.h; sourceTree = "<group>"; };
		2BDF4863166D5B680054E77F /* namesmodel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = namesmodel.cpp; sourceTree = "<group>"; };
		2BDF4864166D5B680054E77F /* namesmodel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = namesmodel.h; sourceTree = "<group>"; };
		2BDF4865166D5B680054E77F /* passwordfield.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = passwordfield.cpp; sourceTree = "<group>"; };
		2BDF4866166D5B680054E77F /* passwordfield.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = passwordfield.h; sourceTree = "<group>"; };
		2BDF4867166D5B680054E77F /* playerbox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = playerbox.cpp; sourceTree = "<group>"; };
		2BDF4868166D5B680054E77F /* playerbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = playerbox.h; sourceTree = "<group>"; };
		2BDF4869166D5B680054E77F /* popup.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = popup.cpp; sourceTree = "<group>"; };
		2BDF486A166D5B680054E77F /* popup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = popup.h; sourceTree = "<group>"; };
		2BDF486B166D5B680054E77F /* progressbar.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = progressbar.cpp; sourceTree = "<group>"; };
		2BDF486C166D5B680054E77F /* progressbar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = progressbar.h; sourceTree = "<group>"; };
		2BDF486D166D5B680054E77F /* progressindicator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = progressindicator.cpp; sourceTree = "<group>"; };
		2BDF486E166D5B680054E77F /* progressindicator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = progressindicator.h; sourceTree = "<group>"; };
		2BDF486F166D5B680054E77F /* radiobutton.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = radiobutton.cpp; sourceTree = "<group>"; };
		2BDF4870166D5B680054E77F /* radiobutton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = radiobutton.h; sourceTree = "<group>"; };
		2BDF4871166D5B680054E77F /* radiogroup.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = radiogroup.cpp; sourceTree = "<group>"; };
		2BDF4872166D5B680054E77F /* radiogroup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = radiogroup.h; sourceTree = "<group>"; };
		2BDF4873166D5B680054E77F /* scrollarea.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = scrollarea.cpp; sourceTree = "<group>"; };
		2BDF4874166D5B680054E77F /* scrollarea.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = scrollarea.h; sourceTree = "<group>"; };
		2BDF4875166D5B680054E77F /* setupitem.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = setupitem.cpp; sourceTree = "<group>"; };
		2BDF4876166D5B680054E77F /* setupitem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = setupitem.h; sourceTree = "<group>"; };
		2BDF4877166D5B680054E77F /* setuptab.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = setuptab.cpp; sourceTree = "<group>"; };
		2BDF4878166D5B680054E77F /* setuptab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = setuptab.h; sourceTree = "<group>"; };
		2BDF4879166D5B680054E77F /* setuptabscroll.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = setuptabscroll.cpp; sourceTree = "<group>"; };
		2BDF487A166D5B680054E77F /* setuptabscroll.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = setuptabscroll.h; sourceTree = "<group>"; };
		2BDF487B166D5B680054E77F /* shopitems.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = shopitems.cpp; sourceTree = "<group>"; };
		2BDF487C166D5B680054E77F /* shopitems.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shopitems.h; sourceTree = "<group>"; };
		2BDF487D166D5B680054E77F /* shoplistbox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = shoplistbox.cpp; sourceTree = "<group>"; };
		2BDF487E166D5B680054E77F /* shoplistbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shoplistbox.h; sourceTree = "<group>"; };
		2BDF487F166D5B680054E77F /* shortcutcontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = shortcutcontainer.cpp; sourceTree = "<group>"; };
		2BDF4880166D5B680054E77F /* shortcutcontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shortcutcontainer.h; sourceTree = "<group>"; };
		2BDF4881166D5B680054E77F /* slider.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slider.cpp; sourceTree = "<group>"; };
		2BDF4882166D5B680054E77F /* slider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = slider.h; sourceTree = "<group>"; };
		2BDF4883166D5B680054E77F /* sliderlist.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sliderlist.cpp; sourceTree = "<group>"; };
		2BDF4884166D5B680054E77F /* sliderlist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sliderlist.h; sourceTree = "<group>"; };
		2BDF4885166D5B680054E77F /* spellshortcutcontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = spellshortcutcontainer.cpp; sourceTree = "<group>"; };
		2BDF4886166D5B680054E77F /* spellshortcutcontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = spellshortcutcontainer.h; sourceTree = "<group>"; };
		2BDF4887166D5B680054E77F /* tab.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tab.cpp; sourceTree = "<group>"; };
		2BDF4888166D5B680054E77F /* tab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tab.h; sourceTree = "<group>"; };
		2BDF4889166D5B680054E77F /* tabbedarea.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tabbedarea.cpp; sourceTree = "<group>"; };
		2BDF488A166D5B680054E77F /* tabbedarea.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tabbedarea.h; sourceTree = "<group>"; };
		2BDF488B166D5B680054E77F /* tablemodel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tablemodel.cpp; sourceTree = "<group>"; };
		2BDF488C166D5B680054E77F /* tablemodel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tablemodel.h; sourceTree = "<group>"; };
		2BDF488D166D5B680054E77F /* tabstrip.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tabstrip.cpp; sourceTree = "<group>"; };
		2BDF488E166D5B680054E77F /* tabstrip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tabstrip.h; sourceTree = "<group>"; };
		2BDF488F166D5B680054E77F /* textbox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = textbox.cpp; sourceTree = "<group>"; };
		2BDF4890166D5B680054E77F /* textbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = textbox.h; sourceTree = "<group>"; };
		2BDF4891166D5B680054E77F /* textfield.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = textfield.cpp; sourceTree = "<group>"; };
		2BDF4892166D5B680054E77F /* textfield.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = textfield.h; sourceTree = "<group>"; };
		2BDF4893166D5B680054E77F /* textpreview.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = textpreview.cpp; sourceTree = "<group>"; };
		2BDF4894166D5B680054E77F /* textpreview.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = textpreview.h; sourceTree = "<group>"; };
		2BDF4895166D5B680054E77F /* tradetab.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tradetab.cpp; sourceTree = "<group>"; };
		2BDF4896166D5B680054E77F /* tradetab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tradetab.h; sourceTree = "<group>"; };
		2BDF4897166D5B680054E77F /* vertcontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = vertcontainer.cpp; sourceTree = "<group>"; };
		2BDF4898166D5B680054E77F /* vertcontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vertcontainer.h; sourceTree = "<group>"; };
		2BDF4899166D5B680054E77F /* whispertab.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = whispertab.cpp; sourceTree = "<group>"; };
		2BDF489A166D5B680054E77F /* whispertab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = whispertab.h; sourceTree = "<group>"; };
		2BDF489B166D5B680054E77F /* widget2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = widget2.h; sourceTree = "<group>"; };
		2BDF489C166D5B680054E77F /* widgetgroup.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = widgetgroup.cpp; sourceTree = "<group>"; };
		2BDF489D166D5B680054E77F /* widgetgroup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = widgetgroup.h; sourceTree = "<group>"; };
		2BDF489E166D5B680054E77F /* window.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = window.cpp; sourceTree = "<group>"; };
		2BDF489F166D5B680054E77F /* window.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = window.h; sourceTree = "<group>"; };
		2BDF48A0166D5B680054E77F /* windowcontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = windowcontainer.cpp; sourceTree = "<group>"; };
		2BDF48A1166D5B680054E77F /* windowcontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = windowcontainer.h; sourceTree = "<group>"; };
		2BDF48A2166D5B680054E77F /* windowmenu.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = windowmenu.cpp; sourceTree = "<group>"; };
		2BDF48A3166D5B680054E77F /* windowmenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = windowmenu.h; sourceTree = "<group>"; };
		2BDF48A4166D5B680054E77F /* worldselectdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = worldselectdialog.cpp; sourceTree = "<group>"; };
		2BDF48A5166D5B680054E77F /* worldselectdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = worldselectdialog.h; sourceTree = "<group>"; };
		2BDF48A7166D5B680054E77F /* actionevent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = actionevent.cpp; sourceTree = "<group>"; };
		2BDF48A8166D5B680054E77F /* basiccontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = basiccontainer.cpp; sourceTree = "<group>"; };
		2BDF48A9166D5B680054E77F /* cliprectangle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = cliprectangle.cpp; sourceTree = "<group>"; };
		2BDF48AA166D5B680054E77F /* color.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = color.cpp; sourceTree = "<group>"; };
		2BDF48AB166D5B680054E77F /* event.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = event.cpp; sourceTree = "<group>"; };
		2BDF48AC166D5B680054E77F /* exception.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = exception.cpp; sourceTree = "<group>"; };
		2BDF48AD166D5B680054E77F /* focushandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = focushandler.cpp; sourceTree = "<group>"; };
		2BDF48AE166D5B680054E77F /* font.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = font.cpp; sourceTree = "<group>"; };
		2BDF48AF166D5B680054E77F /* graphics.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = graphics.cpp; sourceTree = "<group>"; };
		2BDF48B0166D5B680054E77F /* gui.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = gui.cpp; sourceTree = "<group>"; };
		2BDF48B1166D5B680054E77F /* image.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = image.cpp; sourceTree = "<group>"; };
		2BDF48B4166D5B680054E77F /* actionevent.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = actionevent.hpp; sourceTree = "<group>"; };
		2BDF48B5166D5B680054E77F /* actionlistener.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = actionlistener.hpp; sourceTree = "<group>"; };
		2BDF48B6166D5B680054E77F /* basiccontainer.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = basiccontainer.hpp; sourceTree = "<group>"; };
		2BDF48B7166D5B680054E77F /* cliprectangle.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = cliprectangle.hpp; sourceTree = "<group>"; };
		2BDF48B8166D5B680054E77F /* color.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = color.hpp; sourceTree = "<group>"; };
		2BDF48B9166D5B680054E77F /* deathlistener.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = deathlistener.hpp; sourceTree = "<group>"; };
		2BDF48BA166D5B680054E77F /* event.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = event.hpp; sourceTree = "<group>"; };
		2BDF48BB166D5B680054E77F /* exception.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = exception.hpp; sourceTree = "<group>"; };
		2BDF48BC166D5B680054E77F /* focushandler.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = focushandler.hpp; sourceTree = "<group>"; };
		2BDF48BD166D5B680054E77F /* focuslistener.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = focuslistener.hpp; sourceTree = "<group>"; };
		2BDF48BE166D5B680054E77F /* font.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = font.hpp; sourceTree = "<group>"; };
		2BDF48BF166D5B680054E77F /* graphics.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = graphics.hpp; sourceTree = "<group>"; };
		2BDF48C0166D5B680054E77F /* gui.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = gui.hpp; sourceTree = "<group>"; };
		2BDF48C1166D5B680054E77F /* image.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = image.hpp; sourceTree = "<group>"; };
		2BDF48C2166D5B680054E77F /* input.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = input.hpp; sourceTree = "<group>"; };
		2BDF48C3166D5B680054E77F /* inputevent.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = inputevent.hpp; sourceTree = "<group>"; };
		2BDF48C4166D5B680054E77F /* key.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = key.hpp; sourceTree = "<group>"; };
		2BDF48C5166D5B680054E77F /* keyevent.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = keyevent.hpp; sourceTree = "<group>"; };
		2BDF48C6166D5B680054E77F /* keyinput.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = keyinput.hpp; sourceTree = "<group>"; };
		2BDF48C7166D5B680054E77F /* keylistener.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = keylistener.hpp; sourceTree = "<group>"; };
		2BDF48C8166D5B680054E77F /* listmodel.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = listmodel.hpp; sourceTree = "<group>"; };
		2BDF48C9166D5B680054E77F /* mouseevent.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = mouseevent.hpp; sourceTree = "<group>"; };
		2BDF48CA166D5B680054E77F /* mouseinput.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = mouseinput.hpp; sourceTree = "<group>"; };
		2BDF48CB166D5B680054E77F /* mouselistener.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = mouselistener.hpp; sourceTree = "<group>"; };
		2BDF48CC166D5B680054E77F /* platform.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = platform.hpp; sourceTree = "<group>"; };
		2BDF48CD166D5B680054E77F /* rectangle.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = rectangle.hpp; sourceTree = "<group>"; };
		2BDF48CF166D5B680054E77F /* sdlgraphics.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = sdlgraphics.hpp; sourceTree = "<group>"; };
		2BDF48D0166D5B680054E77F /* sdlpixel.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = sdlpixel.hpp; sourceTree = "<group>"; };
		2BDF48D1166D5B680054E77F /* selectionevent.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = selectionevent.hpp; sourceTree = "<group>"; };
		2BDF48D2166D5B680054E77F /* selectionlistener.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = selectionlistener.hpp; sourceTree = "<group>"; };
		2BDF48D3166D5B680054E77F /* widget.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = widget.hpp; sourceTree = "<group>"; };
		2BDF48D4166D5B680054E77F /* widgetlistener.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = widgetlistener.hpp; sourceTree = "<group>"; };
		2BDF48D6166D5B680054E77F /* button.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = button.hpp; sourceTree = "<group>"; };
		2BDF48D7166D5B680054E77F /* checkbox.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = checkbox.hpp; sourceTree = "<group>"; };
		2BDF48D8166D5B680054E77F /* container.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = container.hpp; sourceTree = "<group>"; };
		2BDF48D9166D5B680054E77F /* dropdown.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = dropdown.hpp; sourceTree = "<group>"; };
		2BDF48DA166D5B680054E77F /* label.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = label.hpp; sourceTree = "<group>"; };
		2BDF48DB166D5B680054E77F /* listbox.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = listbox.hpp; sourceTree = "<group>"; };
		2BDF48DC166D5B680054E77F /* radiobutton.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = radiobutton.hpp; sourceTree = "<group>"; };
		2BDF48DD166D5B680054E77F /* scrollarea.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = scrollarea.hpp; sourceTree = "<group>"; };
		2BDF48DE166D5B680054E77F /* slider.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = slider.hpp; sourceTree = "<group>"; };
		2BDF48DF166D5B680054E77F /* textbox.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = textbox.hpp; sourceTree = "<group>"; };
		2BDF48E0166D5B680054E77F /* textfield.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = textfield.hpp; sourceTree = "<group>"; };
		2BDF48E1166D5B680054E77F /* window.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = window.hpp; sourceTree = "<group>"; };
		2BDF48E2166D5B680054E77F /* inputevent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = inputevent.cpp; sourceTree = "<group>"; };
		2BDF48E3166D5B680054E77F /* key.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = key.cpp; sourceTree = "<group>"; };
		2BDF48E4166D5B680054E77F /* keyevent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = keyevent.cpp; sourceTree = "<group>"; };
		2BDF48E5166D5B680054E77F /* keyinput.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = keyinput.cpp; sourceTree = "<group>"; };
		2BDF48E6166D5B680054E77F /* mouseevent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mouseevent.cpp; sourceTree = "<group>"; };
		2BDF48E7166D5B680054E77F /* mouseinput.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mouseinput.cpp; sourceTree = "<group>"; };
		2BDF48E8166D5B680054E77F /* rectangle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rectangle.cpp; sourceTree = "<group>"; };
		2BDF48EA166D5B680054E77F /* sdlgraphics.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sdlgraphics.cpp; sourceTree = "<group>"; };
		2BDF48EB166D5B680054E77F /* selectionevent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = selectionevent.cpp; sourceTree = "<group>"; };
		2BDF48EC166D5B680054E77F /* widget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = widget.cpp; sourceTree = "<group>"; };
		2BDF48EE166D5B680054E77F /* button.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = button.cpp; sourceTree = "<group>"; };
		2BDF48EF166D5B680054E77F /* checkbox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = checkbox.cpp; sourceTree = "<group>"; };
		2BDF48F0166D5B680054E77F /* container.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = container.cpp; sourceTree = "<group>"; };
		2BDF48F1166D5B680054E77F /* dropdown.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dropdown.cpp; sourceTree = "<group>"; };
		2BDF48F2166D5B680054E77F /* label.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = label.cpp; sourceTree = "<group>"; };
		2BDF48F3166D5B680054E77F /* listbox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = listbox.cpp; sourceTree = "<group>"; };
		2BDF48F4166D5B680054E77F /* radiobutton.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = radiobutton.cpp; sourceTree = "<group>"; };
		2BDF48F5166D5B680054E77F /* scrollarea.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = scrollarea.cpp; sourceTree = "<group>"; };
		2BDF48F6166D5B680054E77F /* slider.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slider.cpp; sourceTree = "<group>"; };
		2BDF48F7166D5B680054E77F /* textbox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = textbox.cpp; sourceTree = "<group>"; };
		2BDF48F8166D5B680054E77F /* textfield.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = textfield.cpp; sourceTree = "<group>"; };
		2BDF48F9166D5B680054E77F /* window.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = window.cpp; sourceTree = "<group>"; };
		2BDF48FA166D5B680054E77F /* guild.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = guild.cpp; path = ../../src/guild.cpp; sourceTree = "<group>"; };
		2BDF48FB166D5B680054E77F /* guild.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = guild.h; path = ../../src/guild.h; sourceTree = "<group>"; };
		2BDF48FC166D5B680054E77F /* guildmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = guildmanager.cpp; path = ../../src/guildmanager.cpp; sourceTree = "<group>"; };
		2BDF48FD166D5B680054E77F /* guildmanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = guildmanager.h; path = ../../src/guildmanager.h; sourceTree = "<group>"; };
		2BDF48FE166D5B680054E77F /* imageparticle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = imageparticle.cpp; path = ../../src/imageparticle.cpp; sourceTree = "<group>"; };
		2BDF48FF166D5B680054E77F /* imageparticle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = imageparticle.h; path = ../../src/imageparticle.h; sourceTree = "<group>"; };
		2BDF4900166D5B680054E77F /* imagesprite.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = imagesprite.cpp; path = ../../src/imagesprite.cpp; sourceTree = "<group>"; };
		2BDF4901166D5B680054E77F /* imagesprite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = imagesprite.h; path = ../../src/imagesprite.h; sourceTree = "<group>"; };
		2BDF4902166D5B680054E77F /* inputevent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = inputevent.cpp; path = ../../src/inputevent.cpp; sourceTree = "<group>"; };
		2BDF4903166D5B680054E77F /* inputevent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = inputevent.h; path = ../../src/inputevent.h; sourceTree = "<group>"; };
		2BDF4904166D5B680054E77F /* inputmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = inputmanager.cpp; path = ../../src/inputmanager.cpp; sourceTree = "<group>"; };
		2BDF4905166D5B680054E77F /* inputmanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = inputmanager.h; path = ../../src/inputmanager.h; sourceTree = "<group>"; };
		2BDF4906166D5B680054E77F /* inventory.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = inventory.cpp; path = ../../src/inventory.cpp; sourceTree = "<group>"; };
		2BDF4907166D5B680054E77F /* inventory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = inventory.h; path = ../../src/inventory.h; sourceTree = "<group>"; };
		2BDF4908166D5B680054E77F /* item.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = item.cpp; path = ../../src/item.cpp; sourceTree = "<group>"; };
		2BDF4909166D5B680054E77F /* item.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = item.h; path = ../../src/item.h; sourceTree = "<group>"; };
		2BDF490A166D5B680054E77F /* itemshortcut.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = itemshortcut.cpp; path = ../../src/itemshortcut.cpp; sourceTree = "<group>"; };
		2BDF490B166D5B680054E77F /* itemshortcut.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = itemshortcut.h; path = ../../src/itemshortcut.h; sourceTree = "<group>"; };
		2BDF490C166D5B680054E77F /* joystick.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = joystick.cpp; path = ../../src/joystick.cpp; sourceTree = "<group>"; };
		2BDF490D166D5B680054E77F /* joystick.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = joystick.h; path = ../../src/joystick.h; sourceTree = "<group>"; };
		2BDF490E166D5B680054E77F /* keyboardconfig.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = keyboardconfig.cpp; path = ../../src/keyboardconfig.cpp; sourceTree = "<group>"; };
		2BDF490F166D5B680054E77F /* keyboardconfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = keyboardconfig.h; path = ../../src/keyboardconfig.h; sourceTree = "<group>"; };
		2BDF4910166D5B680054E77F /* keyboarddata.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = keyboarddata.h; path = ../../src/keyboarddata.h; sourceTree = "<group>"; };
		2BDF4911166D5B680054E77F /* keydata.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = keydata.h; path = ../../src/keydata.h; sourceTree = "<group>"; };
		2BDF4912166D5B680054E77F /* keyevent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = keyevent.cpp; path = ../../src/keyevent.cpp; sourceTree = "<group>"; };
		2BDF4913166D5B680054E77F /* keyevent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = keyevent.h; path = ../../src/keyevent.h; sourceTree = "<group>"; };
		2BDF4914166D5B680054E77F /* keyinput.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = keyinput.cpp; path = ../../src/keyinput.cpp; sourceTree = "<group>"; };
		2BDF4915166D5B680054E77F /* keyinput.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = keyinput.h; path = ../../src/keyinput.h; sourceTree = "<group>"; };
		2BDF4916166D5B680054E77F /* listener.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = listener.cpp; path = ../../src/listener.cpp; sourceTree = "<group>"; };
		2BDF4917166D5B680054E77F /* listener.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = listener.h; path = ../../src/listener.h; sourceTree = "<group>"; };
		2BDF4918166D5B680054E77F /* localconsts.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = localconsts.h; path = ../../src/localconsts.h; sourceTree = "<group>"; };
		2BDF4919166D5B680054E77F /* localplayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = localplayer.cpp; path = ../../src/localplayer.cpp; sourceTree = "<group>"; };
		2BDF491A166D5B680054E77F /* localplayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = localplayer.h; path = ../../src/localplayer.h; sourceTree = "<group>"; };
		2BDF491B166D5B680054E77F /* logger.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = logger.cpp; path = ../../src/logger.cpp; sourceTree = "<group>"; };
		2BDF491C166D5B680054E77F /* logger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = logger.h; path = ../../src/logger.h; sourceTree = "<group>"; };
		2BDF491D166D5B680054E77F /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = main.cpp; path = ../../src/main.cpp; sourceTree = "<group>"; };
		2BDF491E166D5B680054E77F /* main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = main.h; path = ../../src/main.h; sourceTree = "<group>"; };
		2BDF491F166D5B680054E77F /* map.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = map.cpp; path = ../../src/map.cpp; sourceTree = "<group>"; };
		2BDF4920166D5B680054E77F /* map.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = map.h; path = ../../src/map.h; sourceTree = "<group>"; };
		2BDF4921166D5B680054E77F /* maplayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = maplayer.cpp; path = ../../src/maplayer.cpp; sourceTree = "<group>"; };
		2BDF4922166D5B680054E77F /* maplayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = maplayer.h; path = ../../src/maplayer.h; sourceTree = "<group>"; };
		2BDF4923166D5B680054E77F /* mgl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = mgl.cpp; path = ../../src/mgl.cpp; sourceTree = "<group>"; };
		2BDF4924166D5B680054E77F /* mgl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mgl.h; path = ../../src/mgl.h; sourceTree = "<group>"; };
		2BDF4925166D5B680054E77F /* mobileopenglgraphics.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = mobileopenglgraphics.cpp; path = ../../src/mobileopenglgraphics.cpp; sourceTree = "<group>"; };
		2BDF4926166D5B680054E77F /* mobileopenglgraphics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mobileopenglgraphics.h; path = ../../src/mobileopenglgraphics.h; sourceTree = "<group>"; };
		2BDF4927166D5B680054E77F /* mouseinput.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = mouseinput.cpp; path = ../../src/mouseinput.cpp; sourceTree = "<group>"; };
		2BDF4928166D5B680054E77F /* mouseinput.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mouseinput.h; path = ../../src/mouseinput.h; sourceTree = "<group>"; };
		2BDF4929166D5B680054E77F /* mumblemanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = mumblemanager.cpp; path = ../../src/mumblemanager.cpp; sourceTree = "<group>"; };
		2BDF492A166D5B680054E77F /* mumblemanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mumblemanager.h; path = ../../src/mumblemanager.h; sourceTree = "<group>"; };
		2BDF492C166D5B680054E77F /* adminhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = adminhandler.h; sourceTree = "<group>"; };
		2BDF492D166D5B680054E77F /* beinghandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = beinghandler.h; sourceTree = "<group>"; };
		2BDF492E166D5B680054E77F /* buysellhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = buysellhandler.h; sourceTree = "<group>"; };
		2BDF492F166D5B680054E77F /* charhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = charhandler.cpp; sourceTree = "<group>"; };
		2BDF4930166D5B680054E77F /* charhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = charhandler.h; sourceTree = "<group>"; };
		2BDF4931166D5B680054E77F /* chathandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chathandler.h; sourceTree = "<group>"; };
		2BDF4932166D5B680054E77F /* download.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = download.cpp; sourceTree = "<group>"; };
		2BDF4933166D5B680054E77F /* download.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = download.h; sourceTree = "<group>"; };
		2BDF4935166D5B680054E77F /* adminhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = adminhandler.cpp; sourceTree = "<group>"; };
		2BDF4936166D5B680054E77F /* adminhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = adminhandler.h; sourceTree = "<group>"; };
		2BDF4937166D5B680054E77F /* beinghandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = beinghandler.cpp; sourceTree = "<group>"; };
		2BDF4938166D5B680054E77F /* beinghandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = beinghandler.h; sourceTree = "<group>"; };
		2BDF4939166D5B680054E77F /* buysellhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = buysellhandler.cpp; sourceTree = "<group>"; };
		2BDF493A166D5B680054E77F /* buysellhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = buysellhandler.h; sourceTree = "<group>"; };
		2BDF493B166D5B680054E77F /* charserverhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = charserverhandler.cpp; sourceTree = "<group>"; };
		2BDF493C166D5B680054E77F /* charserverhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = charserverhandler.h; sourceTree = "<group>"; };
		2BDF493D166D5B680054E77F /* chathandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chathandler.cpp; sourceTree = "<group>"; };
		2BDF493E166D5B680054E77F /* chathandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chathandler.h; sourceTree = "<group>"; };
		2BDF493F166D5B680054E77F /* eaprotocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = eaprotocol.h; sourceTree = "<group>"; };
		2BDF4940166D5B680054E77F /* gamehandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = gamehandler.cpp; sourceTree = "<group>"; };
		2BDF4941166D5B680054E77F /* gamehandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gamehandler.h; sourceTree = "<group>"; };
		2BDF4943166D5B680054E77F /* guildtab.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = guildtab.cpp; sourceTree = "<group>"; };
		2BDF4944166D5B680054E77F /* guildtab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = guildtab.h; sourceTree = "<group>"; };
		2BDF4945166D5B680054E77F /* partytab.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = partytab.cpp; sourceTree = "<group>"; };
		2BDF4946166D5B680054E77F /* partytab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = partytab.h; sourceTree = "<group>"; };
		2BDF4947166D5B680054E77F /* guildhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = guildhandler.cpp; sourceTree = "<group>"; };
		2BDF4948166D5B680054E77F /* guildhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = guildhandler.h; sourceTree = "<group>"; };
		2BDF4949166D5B680054E77F /* inventoryhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = inventoryhandler.cpp; sourceTree = "<group>"; };
		2BDF494A166D5B680054E77F /* inventoryhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = inventoryhandler.h; sourceTree = "<group>"; };
		2BDF494B166D5B680054E77F /* itemhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = itemhandler.cpp; sourceTree = "<group>"; };
		2BDF494C166D5B680054E77F /* itemhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = itemhandler.h; sourceTree = "<group>"; };
		2BDF494D166D5B680054E77F /* loginhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = loginhandler.cpp; sourceTree = "<group>"; };
		2BDF494E166D5B680054E77F /* loginhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = loginhandler.h; sourceTree = "<group>"; };
		2BDF494F166D5B680054E77F /* network.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = network.cpp; sourceTree = "<group>"; };
		2BDF4950166D5B680054E77F /* network.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = network.h; sourceTree = "<group>"; };
		2BDF4951166D5B680054E77F /* npchandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = npchandler.cpp; sourceTree = "<group>"; };
		2BDF4952166D5B680054E77F /* npchandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = npchandler.h; sourceTree = "<group>"; };
		2BDF4953166D5B680054E77F /* partyhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = partyhandler.cpp; sourceTree = "<group>"; };
		2BDF4954166D5B680054E77F /* partyhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = partyhandler.h; sourceTree = "<group>"; };
		2BDF4955166D5B680054E77F /* playerhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = playerhandler.cpp; sourceTree = "<group>"; };
		2BDF4956166D5B680054E77F /* playerhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = playerhandler.h; sourceTree = "<group>"; };
		2BDF4957166D5B680054E77F /* specialhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = specialhandler.cpp; sourceTree = "<group>"; };
		2BDF4958166D5B680054E77F /* specialhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = specialhandler.h; sourceTree = "<group>"; };
		2BDF4959166D5B680054E77F /* token.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = token.h; sourceTree = "<group>"; };
		2BDF495A166D5B680054E77F /* tradehandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tradehandler.cpp; sourceTree = "<group>"; };
		2BDF495B166D5B680054E77F /* tradehandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tradehandler.h; sourceTree = "<group>"; };
		2BDF495D166D5B680054E77F /* adminhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = adminhandler.cpp; sourceTree = "<group>"; };
		2BDF495E166D5B680054E77F /* adminhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = adminhandler.h; sourceTree = "<group>"; };
		2BDF495F166D5B680054E77F /* beinghandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = beinghandler.cpp; sourceTree = "<group>"; };
		2BDF4960166D5B680054E77F /* beinghandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = beinghandler.h; sourceTree = "<group>"; };
		2BDF4961166D5B680054E77F /* buysellhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = buysellhandler.cpp; sourceTree = "<group>"; };
		2BDF4962166D5B680054E77F /* buysellhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = buysellhandler.h; sourceTree = "<group>"; };
		2BDF4963166D5B680054E77F /* charserverhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = charserverhandler.cpp; sourceTree = "<group>"; };
		2BDF4964166D5B680054E77F /* charserverhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = charserverhandler.h; sourceTree = "<group>"; };
		2BDF4965166D5B680054E77F /* chathandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chathandler.cpp; sourceTree = "<group>"; };
		2BDF4966166D5B680054E77F /* chathandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chathandler.h; sourceTree = "<group>"; };
		2BDF4967166D5B680054E77F /* gamehandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = gamehandler.cpp; sourceTree = "<group>"; };
		2BDF4968166D5B680054E77F /* gamehandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gamehandler.h; sourceTree = "<group>"; };
		2BDF4969166D5B680054E77F /* generalhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = generalhandler.cpp; sourceTree = "<group>"; };
		2BDF496A166D5B680054E77F /* generalhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = generalhandler.h; sourceTree = "<group>"; };
		2BDF496C166D5B680054E77F /* guildtab.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = guildtab.cpp; sourceTree = "<group>"; };
		2BDF496D166D5B680054E77F /* guildtab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = guildtab.h; sourceTree = "<group>"; };
		2BDF496E166D5B680054E77F /* partytab.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = partytab.cpp; sourceTree = "<group>"; };
		2BDF496F166D5B680054E77F /* partytab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = partytab.h; sourceTree = "<group>"; };
		2BDF4970166D5B680054E77F /* guildhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = guildhandler.cpp; sourceTree = "<group>"; };
		2BDF4971166D5B680054E77F /* guildhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = guildhandler.h; sourceTree = "<group>"; };
		2BDF4972166D5B680054E77F /* inventoryhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = inventoryhandler.cpp; sourceTree = "<group>"; };
		2BDF4973166D5B680054E77F /* inventoryhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = inventoryhandler.h; sourceTree = "<group>"; };
		2BDF4974166D5B680054E77F /* itemhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = itemhandler.cpp; sourceTree = "<group>"; };
		2BDF4975166D5B680054E77F /* itemhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = itemhandler.h; sourceTree = "<group>"; };
		2BDF4976166D5B680054E77F /* loginhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = loginhandler.cpp; sourceTree = "<group>"; };
		2BDF4977166D5B680054E77F /* loginhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = loginhandler.h; sourceTree = "<group>"; };
		2BDF4978166D5B680054E77F /* messagehandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = messagehandler.cpp; sourceTree = "<group>"; };
		2BDF4979166D5B680054E77F /* messagehandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = messagehandler.h; sourceTree = "<group>"; };
		2BDF497A166D5B680054E77F /* messagein.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = messagein.cpp; sourceTree = "<group>"; };
		2BDF497B166D5B680054E77F /* messagein.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = messagein.h; sourceTree = "<group>"; };
		2BDF497C166D5B680054E77F /* messageout.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = messageout.cpp; sourceTree = "<group>"; };
		2BDF497D166D5B680054E77F /* messageout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = messageout.h; sourceTree = "<group>"; };
		2BDF497E166D5B680054E77F /* network.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = network.cpp; sourceTree = "<group>"; };
		2BDF497F166D5B680054E77F /* network.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = network.h; sourceTree = "<group>"; };
		2BDF4980166D5B680054E77F /* npchandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = npchandler.cpp; sourceTree = "<group>"; };
		2BDF4981166D5B680054E77F /* npchandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = npchandler.h; sourceTree = "<group>"; };
		2BDF4982166D5B680054E77F /* partyhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = partyhandler.cpp; sourceTree = "<group>"; };
		2BDF4983166D5B680054E77F /* partyhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = partyhandler.h; sourceTree = "<group>"; };
		2BDF4984166D5B680054E77F /* playerhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = playerhandler.cpp; sourceTree = "<group>"; };
		2BDF4985166D5B680054E77F /* playerhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = playerhandler.h; sourceTree = "<group>"; };
		2BDF4986166D5B680054E77F /* protocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = protocol.h; sourceTree = "<group>"; };
		2BDF4987166D5B680054E77F /* specialhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = specialhandler.cpp; sourceTree = "<group>"; };
		2BDF4988166D5B680054E77F /* specialhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = specialhandler.h; sourceTree = "<group>"; };
		2BDF4989166D5B680054E77F /* tradehandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tradehandler.cpp; sourceTree = "<group>"; };
		2BDF498A166D5B680054E77F /* tradehandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tradehandler.h; sourceTree = "<group>"; };
		2BDF498B166D5B680054E77F /* gamehandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gamehandler.h; sourceTree = "<group>"; };
		2BDF498C166D5B680054E77F /* generalhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = generalhandler.h; sourceTree = "<group>"; };
		2BDF498D166D5B680054E77F /* guildhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = guildhandler.h; sourceTree = "<group>"; };
		2BDF498E166D5B680054E77F /* inventoryhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = inventoryhandler.h; sourceTree = "<group>"; };
		2BDF498F166D5B680054E77F /* logindata.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = logindata.h; sourceTree = "<group>"; };
		2BDF4990166D5B680054E77F /* loginhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = loginhandler.h; sourceTree = "<group>"; };
		2BDF4991166D5B680054E77F /* messagehandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = messagehandler.h; sourceTree = "<group>"; };
		2BDF4992166D5B680054E77F /* messagein.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = messagein.cpp; sourceTree = "<group>"; };
		2BDF4993166D5B680054E77F /* messagein.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = messagein.h; sourceTree = "<group>"; };
		2BDF4994166D5B680054E77F /* messageout.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = messageout.cpp; sourceTree = "<group>"; };
		2BDF4995166D5B680054E77F /* messageout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = messageout.h; sourceTree = "<group>"; };
		2BDF4996166D5B680054E77F /* net.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = net.cpp; sourceTree = "<group>"; };
		2BDF4997166D5B680054E77F /* net.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = net.h; sourceTree = "<group>"; };
		2BDF4998166D5B680054E77F /* npchandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = npchandler.h; sourceTree = "<group>"; };
		2BDF4999166D5B680054E77F /* packetcounters.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = packetcounters.cpp; sourceTree = "<group>"; };
		2BDF499A166D5B680054E77F /* packetcounters.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = packetcounters.h; sourceTree = "<group>"; };
		2BDF499B166D5B680054E77F /* partyhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = partyhandler.h; sourceTree = "<group>"; };
		2BDF499C166D5B680054E77F /* playerhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = playerhandler.h; sourceTree = "<group>"; };
		2BDF499D166D5B680054E77F /* serverinfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = serverinfo.h; sourceTree = "<group>"; };
		2BDF499E166D5B680054E77F /* specialhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = specialhandler.h; sourceTree = "<group>"; };
		2BDF49A0166D5B680054E77F /* adminhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = adminhandler.cpp; sourceTree = "<group>"; };
		2BDF49A1166D5B680054E77F /* adminhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = adminhandler.h; sourceTree = "<group>"; };
		2BDF49A2166D5B680054E77F /* beinghandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = beinghandler.cpp; sourceTree = "<group>"; };
		2BDF49A3166D5B680054E77F /* beinghandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = beinghandler.h; sourceTree = "<group>"; };
		2BDF49A4166D5B680054E77F /* buysellhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = buysellhandler.cpp; sourceTree = "<group>"; };
		2BDF49A5166D5B680054E77F /* buysellhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = buysellhandler.h; sourceTree = "<group>"; };
		2BDF49A6166D5B680054E77F /* charserverhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = charserverhandler.cpp; sourceTree = "<group>"; };
		2BDF49A7166D5B680054E77F /* charserverhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = charserverhandler.h; sourceTree = "<group>"; };
		2BDF49A8166D5B680054E77F /* chathandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chathandler.cpp; sourceTree = "<group>"; };
		2BDF49A9166D5B680054E77F /* chathandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chathandler.h; sourceTree = "<group>"; };
		2BDF49AA166D5B680054E77F /* gamehandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = gamehandler.cpp; sourceTree = "<group>"; };
		2BDF49AB166D5B680054E77F /* gamehandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gamehandler.h; sourceTree = "<group>"; };
		2BDF49AC166D5B680054E77F /* generalhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = generalhandler.cpp; sourceTree = "<group>"; };
		2BDF49AD166D5B680054E77F /* generalhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = generalhandler.h; sourceTree = "<group>"; };
		2BDF49AF166D5B680054E77F /* guildtab.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = guildtab.cpp; sourceTree = "<group>"; };
		2BDF49B0166D5B680054E77F /* guildtab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = guildtab.h; sourceTree = "<group>"; };
		2BDF49B1166D5B680054E77F /* partytab.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = partytab.cpp; sourceTree = "<group>"; };
		2BDF49B2166D5B680054E77F /* partytab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = partytab.h; sourceTree = "<group>"; };
		2BDF49B3166D5B680054E77F /* guildhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = guildhandler.cpp; sourceTree = "<group>"; };
		2BDF49B4166D5B680054E77F /* guildhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = guildhandler.h; sourceTree = "<group>"; };
		2BDF49B5166D5B680054E77F /* inventoryhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = inventoryhandler.cpp; sourceTree = "<group>"; };
		2BDF49B6166D5B680054E77F /* inventoryhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = inventoryhandler.h; sourceTree = "<group>"; };
		2BDF49B7166D5B680054E77F /* itemhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = itemhandler.cpp; sourceTree = "<group>"; };
		2BDF49B8166D5B680054E77F /* itemhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = itemhandler.h; sourceTree = "<group>"; };
		2BDF49B9166D5B680054E77F /* loginhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = loginhandler.cpp; sourceTree = "<group>"; };
		2BDF49BA166D5B680054E77F /* loginhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = loginhandler.h; sourceTree = "<group>"; };
		2BDF49BB166D5B680054E77F /* messagehandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = messagehandler.cpp; sourceTree = "<group>"; };
		2BDF49BC166D5B680054E77F /* messagehandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = messagehandler.h; sourceTree = "<group>"; };
		2BDF49BD166D5B680054E77F /* messagein.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = messagein.cpp; sourceTree = "<group>"; };
		2BDF49BE166D5B680054E77F /* messagein.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = messagein.h; sourceTree = "<group>"; };
		2BDF49BF166D5B680054E77F /* messageout.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = messageout.cpp; sourceTree = "<group>"; };
		2BDF49C0166D5B680054E77F /* messageout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = messageout.h; sourceTree = "<group>"; };
		2BDF49C1166D5B680054E77F /* network.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = network.cpp; sourceTree = "<group>"; };
		2BDF49C2166D5B680054E77F /* network.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = network.h; sourceTree = "<group>"; };
		2BDF49C3166D5B680054E77F /* npchandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = npchandler.cpp; sourceTree = "<group>"; };
		2BDF49C4166D5B680054E77F /* npchandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = npchandler.h; sourceTree = "<group>"; };
		2BDF49C5166D5B680054E77F /* partyhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = partyhandler.cpp; sourceTree = "<group>"; };
		2BDF49C6166D5B680054E77F /* partyhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = partyhandler.h; sourceTree = "<group>"; };
		2BDF49C7166D5B680054E77F /* playerhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = playerhandler.cpp; sourceTree = "<group>"; };
		2BDF49C8166D5B680054E77F /* playerhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = playerhandler.h; sourceTree = "<group>"; };
		2BDF49C9166D5B680054E77F /* protocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = protocol.h; sourceTree = "<group>"; };
		2BDF49CA166D5B680054E77F /* questhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = questhandler.cpp; sourceTree = "<group>"; };
		2BDF49CB166D5B680054E77F /* questhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = questhandler.h; sourceTree = "<group>"; };
		2BDF49CC166D5B680054E77F /* specialhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = specialhandler.cpp; sourceTree = "<group>"; };
		2BDF49CD166D5B680054E77F /* specialhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = specialhandler.h; sourceTree = "<group>"; };
		2BDF49CE166D5B680054E77F /* tradehandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tradehandler.cpp; sourceTree = "<group>"; };
		2BDF49CF166D5B680054E77F /* tradehandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tradehandler.h; sourceTree = "<group>"; };
		2BDF49D0166D5B680054E77F /* tradehandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tradehandler.h; sourceTree = "<group>"; };
		2BDF49D1166D5B680054E77F /* worldinfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = worldinfo.h; sourceTree = "<group>"; };
		2BDF49D2166D5B680054E77F /* normalopenglgraphics.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = normalopenglgraphics.cpp; path = ../../src/normalopenglgraphics.cpp; sourceTree = "<group>"; };
		2BDF49D3166D5B680054E77F /* normalopenglgraphics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = normalopenglgraphics.h; path = ../../src/normalopenglgraphics.h; sourceTree = "<group>"; };
		2BDF49D4166D5B680054E77F /* particle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = particle.cpp; path = ../../src/particle.cpp; sourceTree = "<group>"; };
		2BDF49D5166D5B680054E77F /* particle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = particle.h; path = ../../src/particle.h; sourceTree = "<group>"; };
		2BDF49D6166D5B680054E77F /* particlecontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = particlecontainer.cpp; path = ../../src/particlecontainer.cpp; sourceTree = "<group>"; };
		2BDF49D7166D5B680054E77F /* particlecontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = particlecontainer.h; path = ../../src/particlecontainer.h; sourceTree = "<group>"; };
		2BDF49D8166D5B680054E77F /* particleemitter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = particleemitter.cpp; path = ../../src/particleemitter.cpp; sourceTree = "<group>"; };
		2BDF49D9166D5B680054E77F /* particleemitter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = particleemitter.h; path = ../../src/particleemitter.h; sourceTree = "<group>"; };
		2BDF49DA166D5B680054E77F /* particleemitterprop.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = particleemitterprop.h; path = ../../src/particleemitterprop.h; sourceTree = "<group>"; };
		2BDF49DB166D5B680054E77F /* party.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = party.cpp; path = ../../src/party.cpp; sourceTree = "<group>"; };
		2BDF49DC166D5B680054E77F /* party.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = party.h; path = ../../src/party.h; sourceTree = "<group>"; };
		2BDF49DD166D5B680054E77F /* playerinfo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = playerinfo.cpp; path = ../../src/playerinfo.cpp; sourceTree = "<group>"; };
		2BDF49DE166D5B680054E77F /* playerinfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = playerinfo.h; path = ../../src/playerinfo.h; sourceTree = "<group>"; };
		2BDF49DF166D5B680054E77F /* playerrelations.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = playerrelations.cpp; path = ../../src/playerrelations.cpp; sourceTree = "<group>"; };
		2BDF49E0166D5B680054E77F /* playerrelations.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = playerrelations.h; path = ../../src/playerrelations.h; sourceTree = "<group>"; };
		2BDF49E1166D5B680054E77F /* position.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = position.cpp; path = ../../src/position.cpp; sourceTree = "<group>"; };
		2BDF49E2166D5B680054E77F /* position.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = position.h; path = ../../src/position.h; sourceTree = "<group>"; };
		2BDF49E3166D5B680054E77F /* properties.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = properties.h; path = ../../src/properties.h; sourceTree = "<group>"; };
		2BDF49E5166D5B680054E77F /* action.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = action.cpp; sourceTree = "<group>"; };
		2BDF49E6166D5B680054E77F /* action.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = action.h; sourceTree = "<group>"; };
		2BDF49E7166D5B680054E77F /* ambientlayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ambientlayer.cpp; sourceTree = "<group>"; };
		2BDF49E8166D5B680054E77F /* ambientlayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ambientlayer.h; sourceTree = "<group>"; };
		2BDF49E9166D5B680054E77F /* animation.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = animation.cpp; sourceTree = "<group>"; };
		2BDF49EA166D5B680054E77F /* animation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = animation.h; sourceTree = "<group>"; };
		2BDF49EB166D5B680054E77F /* atlasmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = atlasmanager.cpp; sourceTree = "<group>"; };
		2BDF49EC166D5B680054E77F /* atlasmanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = atlasmanager.h; sourceTree = "<group>"; };
		2BDF49ED166D5B680054E77F /* beinginfo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = beinginfo.cpp; sourceTree = "<group>"; };
		2BDF49EE166D5B680054E77F /* beinginfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = beinginfo.h; sourceTree = "<group>"; };
		2BDF49EF166D5B680054E77F /* chardb.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chardb.cpp; sourceTree = "<group>"; };
		2BDF49F0166D5B680054E77F /* chardb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chardb.h; sourceTree = "<group>"; };
		2BDF49F1166D5B680054E77F /* colordb.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = colordb.cpp; sourceTree = "<group>"; };
		2BDF49F2166D5B680054E77F /* colordb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = colordb.h; sourceTree = "<group>"; };
		2BDF49F3166D5B680054E77F /* cursor.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = cursor.cpp; sourceTree = "<group>"; };
		2BDF49F4166D5B680054E77F /* cursor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cursor.h; sourceTree = "<group>"; };
		2BDF49F5166D5B680054E77F /* dye.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dye.cpp; sourceTree = "<group>"; };
		2BDF49F6166D5B680054E77F /* dye.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dye.h; sourceTree = "<group>"; };
		2BDF49F7166D5B680054E77F /* emotedb.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = emotedb.cpp; sourceTree = "<group>"; };
		2BDF49F8166D5B680054E77F /* emotedb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = emotedb.h; sourceTree = "<group>"; };
		2BDF49F9166D5B680054E77F /* fboinfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fboinfo.h; sourceTree = "<group>"; };
		2BDF49FA166D5B680054E77F /* image.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = image.cpp; sourceTree = "<group>"; };
		2BDF49FB166D5B680054E77F /* image.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = image.h; sourceTree = "<group>"; };
		2BDF49FC166D5B680054E77F /* imagehelper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = imagehelper.cpp; sourceTree = "<group>"; };
		2BDF49FD166D5B680054E77F /* imagehelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = imagehelper.h; sourceTree = "<group>"; };
		2BDF49FE166D5B680054E77F /* imageset.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = imageset.cpp; sourceTree = "<group>"; };
		2BDF49FF166D5B680054E77F /* imageset.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = imageset.h; sourceTree = "<group>"; };
		2BDF4A00166D5B680054E77F /* imagewriter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = imagewriter.cpp; sourceTree = "<group>"; };
		2BDF4A01166D5B680054E77F /* imagewriter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = imagewriter.h; sourceTree = "<group>"; };
		2BDF4A02166D5B680054E77F /* itemdb.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = itemdb.cpp; sourceTree = "<group>"; };
		2BDF4A03166D5B680054E77F /* itemdb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = itemdb.h; sourceTree = "<group>"; };
		2BDF4A04166D5B680054E77F /* iteminfo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = iteminfo.cpp; sourceTree = "<group>"; };
		2BDF4A05166D5B680054E77F /* iteminfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = iteminfo.h; sourceTree = "<group>"; };
		2BDF4A06166D5B680054E77F /* mapdb.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mapdb.cpp; sourceTree = "<group>"; };
		2BDF4A07166D5B680054E77F /* mapdb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mapdb.h; sourceTree = "<group>"; };
		2BDF4A08166D5B680054E77F /* mapreader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mapreader.cpp; sourceTree = "<group>"; };
		2BDF4A09166D5B680054E77F /* mapreader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mapreader.h; sourceTree = "<group>"; };
		2BDF4A0A166D5B680054E77F /* monsterdb.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = monsterdb.cpp; sourceTree = "<group>"; };
		2BDF4A0B166D5B680054E77F /* monsterdb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = monsterdb.h; sourceTree = "<group>"; };
		2BDF4A0C166D5B680054E77F /* npcdb.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = npcdb.cpp; sourceTree = "<group>"; };
		2BDF4A0D166D5B680054E77F /* npcdb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = npcdb.h; sourceTree = "<group>"; };
		2BDF4A0E166D5B680054E77F /* openglimagehelper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = openglimagehelper.cpp; sourceTree = "<group>"; };
		2BDF4A0F166D5B680054E77F /* openglimagehelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = openglimagehelper.h; sourceTree = "<group>"; };
		2BDF4A10166D5B680054E77F /* resource.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = resource.cpp; sourceTree = "<group>"; };
		2BDF4A11166D5B680054E77F /* resource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = resource.h; sourceTree = "<group>"; };
		2BDF4A12166D5B680054E77F /* resourcemanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = resourcemanager.cpp; sourceTree = "<group>"; };
		2BDF4A13166D5B680054E77F /* resourcemanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = resourcemanager.h; sourceTree = "<group>"; };
		2BDF4A14166D5B680054E77F /* sdlimagehelper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sdlimagehelper.cpp; sourceTree = "<group>"; };
		2BDF4A15166D5B680054E77F /* sdlimagehelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sdlimagehelper.h; sourceTree = "<group>"; };
		2BDF4A16166D5B680054E77F /* sdlmusic.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sdlmusic.cpp; sourceTree = "<group>"; };
		2BDF4A17166D5B680054E77F /* sdlmusic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sdlmusic.h; sourceTree = "<group>"; };
		2BDF4A18166D5B680054E77F /* soundeffect.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = soundeffect.cpp; sourceTree = "<group>"; };
		2BDF4A19166D5B680054E77F /* soundeffect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = soundeffect.h; sourceTree = "<group>"; };
		2BDF4A1A166D5B680054E77F /* specialdb.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = specialdb.cpp; sourceTree = "<group>"; };
		2BDF4A1B166D5B680054E77F /* specialdb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = specialdb.h; sourceTree = "<group>"; };
		2BDF4A1C166D5B680054E77F /* spritedef.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = spritedef.cpp; sourceTree = "<group>"; };
		2BDF4A1D166D5B680054E77F /* spritedef.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = spritedef.h; sourceTree = "<group>"; };
		2BDF4A1E166D5B680054E77F /* subimage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = subimage.cpp; sourceTree = "<group>"; };
		2BDF4A1F166D5B680054E77F /* subimage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = subimage.h; sourceTree = "<group>"; };
		2BDF4A20166D5B680054E77F /* wallpaper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = wallpaper.cpp; sourceTree = "<group>"; };
		2BDF4A21166D5B680054E77F /* wallpaper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wallpaper.h; sourceTree = "<group>"; };
		2BDF4A22166D5B680054E77F /* rotationalparticle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = rotationalparticle.cpp; path = ../../src/rotationalparticle.cpp; sourceTree = "<group>"; };
		2BDF4A23166D5B680054E77F /* rotationalparticle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = rotationalparticle.h; path = ../../src/rotationalparticle.h; sourceTree = "<group>"; };
		2BDF4A24166D5B680054E77F /* safeopenglgraphics.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = safeopenglgraphics.cpp; path = ../../src/safeopenglgraphics.cpp; sourceTree = "<group>"; };
		2BDF4A25166D5B680054E77F /* safeopenglgraphics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = safeopenglgraphics.h; path = ../../src/safeopenglgraphics.h; sourceTree = "<group>"; };
		2BDF4A26166D5B680054E77F /* SDLMain.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDLMain.h; path = ../../src/SDLMain.h; sourceTree = "<group>"; };
		2BDF4A27166D5B680054E77F /* SDLMain.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDLMain.m; path = ../../src/SDLMain.m; sourceTree = "<group>"; };
		2BDF4A28166D5B680054E77F /* shopitem.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = shopitem.cpp; path = ../../src/shopitem.cpp; sourceTree = "<group>"; };
		2BDF4A29166D5B680054E77F /* shopitem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = shopitem.h; path = ../../src/shopitem.h; sourceTree = "<group>"; };
		2BDF4A2A166D5B680054E77F /* simpleanimation.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = simpleanimation.cpp; path = ../../src/simpleanimation.cpp; sourceTree = "<group>"; };
		2BDF4A2B166D5B680054E77F /* simpleanimation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = simpleanimation.h; path = ../../src/simpleanimation.h; sourceTree = "<group>"; };
		2BDF4A2C166D5B680054E77F /* soundmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = soundmanager.cpp; path = ../../src/soundmanager.cpp; sourceTree = "<group>"; };
		2BDF4A2D166D5B680054E77F /* soundmanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = soundmanager.h; path = ../../src/soundmanager.h; sourceTree = "<group>"; };
		2BDF4A2E166D5B680054E77F /* spellmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = spellmanager.cpp; path = ../../src/spellmanager.cpp; sourceTree = "<group>"; };
		2BDF4A2F166D5B680054E77F /* spellmanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = spellmanager.h; path = ../../src/spellmanager.h; sourceTree = "<group>"; };
		2BDF4A30166D5B680054E77F /* spellshortcut.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = spellshortcut.cpp; path = ../../src/spellshortcut.cpp; sourceTree = "<group>"; };
		2BDF4A31166D5B680054E77F /* spellshortcut.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = spellshortcut.h; path = ../../src/spellshortcut.h; sourceTree = "<group>"; };
		2BDF4A32166D5B680054E77F /* sprite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sprite.h; path = ../../src/sprite.h; sourceTree = "<group>"; };
		2BDF4A33166D5B680054E77F /* statuseffect.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = statuseffect.cpp; path = ../../src/statuseffect.cpp; sourceTree = "<group>"; };
		2BDF4A34166D5B680054E77F /* statuseffect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = statuseffect.h; path = ../../src/statuseffect.h; sourceTree = "<group>"; };
		2BDF4A36166D5B680054E77F /* testlauncher.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = testlauncher.cpp; sourceTree = "<group>"; };
		2BDF4A37166D5B680054E77F /* testlauncher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = testlauncher.h; sourceTree = "<group>"; };
		2BDF4A38166D5B680054E77F /* testmain.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = testmain.cpp; sourceTree = "<group>"; };
		2BDF4A39166D5B680054E77F /* testmain.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = testmain.h; sourceTree = "<group>"; };
		2BDF4A3A166D5B680054E77F /* text.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = text.cpp; path = ../../src/text.cpp; sourceTree = "<group>"; };
		2BDF4A3B166D5B680054E77F /* text.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = text.h; path = ../../src/text.h; sourceTree = "<group>"; };
		2BDF4A3C166D5B680054E77F /* textcommand.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = textcommand.cpp; path = ../../src/textcommand.cpp; sourceTree = "<group>"; };
		2BDF4A3D166D5B680054E77F /* textcommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = textcommand.h; path = ../../src/textcommand.h; sourceTree = "<group>"; };
		2BDF4A3E166D5B680054E77F /* textmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = textmanager.cpp; path = ../../src/textmanager.cpp; sourceTree = "<group>"; };
		2BDF4A3F166D5B680054E77F /* textmanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = textmanager.h; path = ../../src/textmanager.h; sourceTree = "<group>"; };
		2BDF4A40166D5B680054E77F /* textparticle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = textparticle.cpp; path = ../../src/textparticle.cpp; sourceTree = "<group>"; };
		2BDF4A41166D5B680054E77F /* textparticle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = textparticle.h; path = ../../src/textparticle.h; sourceTree = "<group>"; };
		2BDF4A42166D5B680054E77F /* textrenderer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = textrenderer.h; path = ../../src/textrenderer.h; sourceTree = "<group>"; };
		2BDF4A43166D5B680054E77F /* tileset.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tileset.h; path = ../../src/tileset.h; sourceTree = "<group>"; };
		2BDF4A44166D5B680054E77F /* touchactions.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = touchactions.cpp; path = ../../src/touchactions.cpp; sourceTree = "<group>"; };
		2BDF4A45166D5B680054E77F /* touchactions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = touchactions.h; path = ../../src/touchactions.h; sourceTree = "<group>"; };
		2BDF4A46166D5B680054E77F /* touchmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = touchmanager.cpp; path = ../../src/touchmanager.cpp; sourceTree = "<group>"; };
		2BDF4A47166D5B680054E77F /* touchmanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = touchmanager.h; path = ../../src/touchmanager.h; sourceTree = "<group>"; };
		2BDF4A48166D5B680054E77F /* units.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = units.cpp; path = ../../src/units.cpp; sourceTree = "<group>"; };
		2BDF4A49166D5B680054E77F /* units.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = units.h; path = ../../src/units.h; sourceTree = "<group>"; };
		2BDF4A4B166D5B680054E77F /* base64.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = base64.cpp; sourceTree = "<group>"; };
		2BDF4A4C166D5B680054E77F /* base64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = base64.h; sourceTree = "<group>"; };
		2BDF4A4D166D5B680054E77F /* checkutils.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = checkutils.cpp; sourceTree = "<group>"; };
		2BDF4A4E166D5B680054E77F /* checkutils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = checkutils.h; sourceTree = "<group>"; };
		2BDF4A4F166D5B680054E77F /* copynpaste.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = copynpaste.cpp; sourceTree = "<group>"; };
		2BDF4A50166D5B680054E77F /* copynpaste.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = copynpaste.h; sourceTree = "<group>"; };
		2BDF4A51166D5B680054E77F /* dtor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dtor.h; sourceTree = "<group>"; };
		2BDF4A52166D5B680054E77F /* gettext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gettext.h; sourceTree = "<group>"; };
		2BDF4A53166D5B680054E77F /* langs.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = langs.cpp; sourceTree = "<group>"; };
		2BDF4A54166D5B680054E77F /* langs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = langs.h; sourceTree = "<group>"; };
		2BDF4A55166D5B680054E77F /* mathutils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mathutils.h; sourceTree = "<group>"; };
		2BDF4A56166D5B680054E77F /* mkdir.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mkdir.cpp; sourceTree = "<group>"; };
		2BDF4A57166D5B680054E77F /* mkdir.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mkdir.h; sourceTree = "<group>"; };
		2BDF4A58166D5B680054E77F /* mutex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mutex.h; sourceTree = "<group>"; };
		2BDF4A59166D5B680054E77F /* paths.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = paths.cpp; sourceTree = "<group>"; };
		2BDF4A5A166D5B680054E77F /* paths.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = paths.h; sourceTree = "<group>"; };
		2BDF4A5B166D5B680054E77F /* perfomance.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = perfomance.cpp; sourceTree = "<group>"; };
		2BDF4A5C166D5B680054E77F /* perfomance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = perfomance.h; sourceTree = "<group>"; };
		2BDF4A5D166D5B680054E77F /* physfsrwops.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = physfsrwops.cpp; sourceTree = "<group>"; };
		2BDF4A5E166D5B680054E77F /* physfsrwops.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = physfsrwops.h; sourceTree = "<group>"; };
		2BDF4A5F166D5B680054E77F /* process.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = process.cpp; sourceTree = "<group>"; };
		2BDF4A60166D5B680054E77F /* process.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = process.h; sourceTree = "<group>"; };
		2BDF4A61166D5B680054E77F /* sha256.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sha256.cpp; sourceTree = "<group>"; };
		2BDF4A62166D5B680054E77F /* sha256.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sha256.h; sourceTree = "<group>"; };
		2BDF4A63166D5B680054E77F /* specialfolder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = specialfolder.cpp; sourceTree = "<group>"; };
		2BDF4A64166D5B680054E77F /* specialfolder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = specialfolder.h; sourceTree = "<group>"; };
		2BDF4A65166D5B680054E77F /* stringutils.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = stringutils.cpp; sourceTree = "<group>"; };
		2BDF4A66166D5B680054E77F /* stringutils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stringutils.h; sourceTree = "<group>"; };
		2BDF4A67166D5B680054E77F /* stringutils_unittest.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = stringutils_unittest.cc; sourceTree = "<group>"; };
		2BDF4A68166D5B680054E77F /* stringvector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stringvector.h; sourceTree = "<group>"; };
		2BDF4A6A166D5B680054E77F /* podict.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = podict.cpp; sourceTree = "<group>"; };
		2BDF4A6B166D5B680054E77F /* podict.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = podict.h; sourceTree = "<group>"; };
		2BDF4A6C166D5B680054E77F /* poparser.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = poparser.cpp; sourceTree = "<group>"; };
		2BDF4A6D166D5B680054E77F /* poparser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = poparser.h; sourceTree = "<group>"; };
		2BDF4A6E166D5B680054E77F /* translationmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = translationmanager.cpp; sourceTree = "<group>"; };
		2BDF4A6F166D5B680054E77F /* translationmanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = translationmanager.h; sourceTree = "<group>"; };
		2BDF4A70166D5B680054E77F /* xml.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = xml.cpp; sourceTree = "<group>"; };
		2BDF4A71166D5B680054E77F /* xml.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xml.h; sourceTree = "<group>"; };
		2BDF4A72166D5B680054E77F /* variabledata.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = variabledata.h; path = ../../src/variabledata.h; sourceTree = "<group>"; };
		2BDF4A73166D5B680054E77F /* vector.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = vector.cpp; path = ../../src/vector.cpp; sourceTree = "<group>"; };
		2BDF4A74166D5B680054E77F /* vector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = vector.h; path = ../../src/vector.h; sourceTree = "<group>"; };
		2BDF4A75166D5B680054E77F /* winver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = winver.h; path = ../../src/winver.h; sourceTree = "<group>"; };
		2BDF4D4A166D5D9E0054E77F /* SDL_image.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL_image.framework; path = /Library/Frameworks/SDL_image.framework; sourceTree = "<absolute>"; };
		2BDF4D4B166D5D9E0054E77F /* SDL_mixer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL_mixer.framework; path = /Library/Frameworks/SDL_mixer.framework; sourceTree = "<absolute>"; };
		2BDF4D4C166D5D9E0054E77F /* SDL_net.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL_net.framework; path = /Library/Frameworks/SDL_net.framework; sourceTree = "<absolute>"; };
		2BDF4D4D166D5D9E0054E77F /* SDL_ttf.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL_ttf.framework; path = /Library/Frameworks/SDL_ttf.framework; sourceTree = "<absolute>"; };
		2BDF4D4E166D5D9E0054E77F /* SDL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL.framework; path = /Library/Frameworks/SDL.framework; sourceTree = "<absolute>"; };
		2BDF4D54166D5DCD0054E77F /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = System/Library/Frameworks/OpenGL.framework; sourceTree = SDKROOT; };
		2BDF4D56166D5E040054E77F /* libcurl.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libcurl.dylib; path = usr/lib/libcurl.dylib; sourceTree = SDKROOT; };
		2BDF4D6E166D6ADC0054E77F /* Mana.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = Mana.icns; sourceTree = "<group>"; };
		2BDF4D75166D781C0054E77F /* data */ = {isa = PBXFileReference; lastKnownFileType = folder; name = data; path = ../../data; sourceTree = "<group>"; };
		2BDF4D8F166D8E0C0054E77F /* libfreetype.6.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libfreetype.6.dylib; path = libs/libfreetype.6.dylib; sourceTree = "<group>"; };
		2BDF4D90166D8E0C0054E77F /* libiconv.2.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libiconv.2.dylib; path = libs/libiconv.2.dylib; sourceTree = "<group>"; };
		2BDF4D91166D8E0C0054E77F /* libintl.8.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libintl.8.dylib; path = libs/libintl.8.dylib; sourceTree = "<group>"; };
		2BDF4D93166D8E0D0054E77F /* libpng15.15.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libpng15.15.dylib; path = libs/libpng15.15.dylib; sourceTree = "<group>"; };
		2BDF4D94166D8E0D0054E77F /* libSDL_gfx.14.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libSDL_gfx.14.dylib; path = libs/libSDL_gfx.14.dylib; sourceTree = "<group>"; };
		2BDF4D95166D8E0D0054E77F /* libxml2.2.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libxml2.2.dylib; path = libs/libxml2.2.dylib; sourceTree = "<group>"; };
		2BDF4D96166D8E0D0054E77F /* libz.1.2.7.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.1.2.7.dylib; path = libs/libz.1.2.7.dylib; sourceTree = "<group>"; };
		2BDF4DA8166D99320054E77F /* libphysfs.2.0.2.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libphysfs.2.0.2.dylib; path = libs/libphysfs.2.0.2.dylib; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		2BDF45BC166D5AEC0054E77F /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				2BDF4DA9166D99330054E77F /* libphysfs.2.0.2.dylib in Frameworks */,
				2BDF4D97166D8E0D0054E77F /* libfreetype.6.dylib in Frameworks */,
				2BDF4D98166D8E0D0054E77F /* libiconv.2.dylib in Frameworks */,
				2BDF4D99166D8E0D0054E77F /* libintl.8.dylib in Frameworks */,
				2BDF4D9B166D8E0D0054E77F /* libpng15.15.dylib in Frameworks */,
				2BDF4D9C166D8E0D0054E77F /* libSDL_gfx.14.dylib in Frameworks */,
				2BDF4D9D166D8E0D0054E77F /* libxml2.2.dylib in Frameworks */,
				2BDF4D9E166D8E0D0054E77F /* libz.1.2.7.dylib in Frameworks */,
				2BDF4D57166D5E040054E77F /* libcurl.dylib in Frameworks */,
				2BDF4D55166D5DCD0054E77F /* OpenGL.framework in Frameworks */,
				2BDF45C4166D5AEC0054E77F /* Cocoa.framework in Frameworks */,
				2BDF4D4F166D5D9E0054E77F /* SDL_image.framework in Frameworks */,
				2BDF4D50166D5D9E0054E77F /* SDL_mixer.framework in Frameworks */,
				2BDF4D51166D5D9E0054E77F /* SDL_net.framework in Frameworks */,
				2BDF4D52166D5D9E0054E77F /* SDL_ttf.framework in Frameworks */,
				2BDF4D53166D5D9E0054E77F /* SDL.framework in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		2BDF45DC166D5AEC0054E77F /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				2BDF45E2166D5AEC0054E77F /* SenTestingKit.framework in Frameworks */,
				2BDF45E3166D5AEC0054E77F /* Cocoa.framework in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		2BDF45B4166D5AEC0054E77F = {
			isa = PBXGroup;
			children = (
				2BDF4D6E166D6ADC0054E77F /* Mana.icns */,
				2BDF45C9166D5AEC0054E77F /* ManaPlus */,
				2BDF45E6166D5AEC0054E77F /* ManaPlusTests */,
				2BDF45C2166D5AEC0054E77F /* Frameworks */,
				2BDF45C0166D5AEC0054E77F /* Products */,
			);
			sourceTree = "<group>";
		};
		2BDF45C0166D5AEC0054E77F /* Products */ = {
			isa = PBXGroup;
			children = (
				2BDF45BF166D5AEC0054E77F /* ManaPlus.app */,
				2BDF45E0166D5AEC0054E77F /* ManaPlusTests.octest */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		2BDF45C2166D5AEC0054E77F /* Frameworks */ = {
			isa = PBXGroup;
			children = (
				2BDF4DA8166D99320054E77F /* libphysfs.2.0.2.dylib */,
				2BDF4D8F166D8E0C0054E77F /* libfreetype.6.dylib */,
				2BDF4D90166D8E0C0054E77F /* libiconv.2.dylib */,
				2BDF4D91166D8E0C0054E77F /* libintl.8.dylib */,
				2BDF4D93166D8E0D0054E77F /* libpng15.15.dylib */,
				2BDF4D94166D8E0D0054E77F /* libSDL_gfx.14.dylib */,
				2BDF4D95166D8E0D0054E77F /* libxml2.2.dylib */,
				2BDF4D96166D8E0D0054E77F /* libz.1.2.7.dylib */,
				2BDF4D56166D5E040054E77F /* libcurl.dylib */,
				2BDF4D54166D5DCD0054E77F /* OpenGL.framework */,
				2BDF4D4A166D5D9E0054E77F /* SDL_image.framework */,
				2BDF4D4B166D5D9E0054E77F /* SDL_mixer.framework */,
				2BDF4D4C166D5D9E0054E77F /* SDL_net.framework */,
				2BDF4D4D166D5D9E0054E77F /* SDL_ttf.framework */,
				2BDF4D4E166D5D9E0054E77F /* SDL.framework */,
				2BDF45C3166D5AEC0054E77F /* Cocoa.framework */,
				2BDF45E1166D5AEC0054E77F /* SenTestingKit.framework */,
				2BDF45C5166D5AEC0054E77F /* Other Frameworks */,
			);
			name = Frameworks;
			sourceTree = "<group>";
		};
		2BDF45C5166D5AEC0054E77F /* Other Frameworks */ = {
			isa = PBXGroup;
			children = (
				2BDF45C6166D5AEC0054E77F /* AppKit.framework */,
				2BDF45C7166D5AEC0054E77F /* CoreData.framework */,
				2BDF45C8166D5AEC0054E77F /* Foundation.framework */,
			);
			name = "Other Frameworks";
			sourceTree = "<group>";
		};
		2BDF45C9166D5AEC0054E77F /* ManaPlus */ = {
			isa = PBXGroup;
			children = (
				2BDF4755166D5B680054E77F /* actionmanager.cpp */,
				2BDF4756166D5B680054E77F /* actionmanager.h */,
				2BDF4757166D5B680054E77F /* actor.cpp */,
				2BDF4758166D5B680054E77F /* actor.h */,
				2BDF4759166D5B680054E77F /* actorsprite.cpp */,
				2BDF475A166D5B680054E77F /* actorsprite.h */,
				2BDF475B166D5B680054E77F /* actorspritelistener.h */,
				2BDF475C166D5B680054E77F /* actorspritemanager.cpp */,
				2BDF475D166D5B680054E77F /* actorspritemanager.h */,
				2BDF475E166D5B680054E77F /* animatedsprite.cpp */,
				2BDF475F166D5B680054E77F /* animatedsprite.h */,
				2BDF4760166D5B680054E77F /* animationdelayload.cpp */,
				2BDF4761166D5B680054E77F /* animationdelayload.h */,
				2BDF4762166D5B680054E77F /* animationparticle.cpp */,
				2BDF4763166D5B680054E77F /* animationparticle.h */,
				2BDF4764166D5B680054E77F /* auctionmanager.cpp */,
				2BDF4765166D5B680054E77F /* auctionmanager.h */,
				2BDF4766166D5B680054E77F /* avatar.cpp */,
				2BDF4767166D5B680054E77F /* avatar.h */,
				2BDF4768166D5B680054E77F /* being.cpp */,
				2BDF4769166D5B680054E77F /* being.h */,
				2BDF476A166D5B680054E77F /* channel.cpp */,
				2BDF476B166D5B680054E77F /* channel.h */,
				2BDF476C166D5B680054E77F /* channelmanager.cpp */,
				2BDF476D166D5B680054E77F /* channelmanager.h */,
				2BDF476E166D5B680054E77F /* chatlogger.cpp */,
				2BDF476F166D5B680054E77F /* chatlogger.h */,
				2BDF4770166D5B680054E77F /* client.cpp */,
				2BDF4771166D5B680054E77F /* client.h */,
				2BDF4772166D5B680054E77F /* commandhandler.cpp */,
				2BDF4773166D5B680054E77F /* commandhandler.h */,
				2BDF4774166D5B680054E77F /* commands.cpp */,
				2BDF4775166D5B680054E77F /* commands.h */,
				2BDF4776166D5B680054E77F /* compoundsprite.cpp */,
				2BDF4777166D5B680054E77F /* compoundsprite.h */,
				2BDF4778166D5B680054E77F /* configlistener.h */,
				2BDF4779166D5B680054E77F /* configuration.cpp */,
				2BDF477A166D5B680054E77F /* configuration.h */,
				2BDF477B166D5B680054E77F /* debug */,
				2BDF4780166D5B680054E77F /* debug.h */,
				2BDF4781166D5B680054E77F /* defaults.cpp */,
				2BDF4782166D5B680054E77F /* defaults.h */,
				2BDF4783166D5B680054E77F /* depricatedevent.cpp */,
				2BDF4784166D5B680054E77F /* depricatedevent.h */,
				2BDF4785166D5B680054E77F /* dropshortcut.cpp */,
				2BDF4786166D5B680054E77F /* dropshortcut.h */,
				2BDF4787166D5B680054E77F /* effectmanager.cpp */,
				2BDF4788166D5B680054E77F /* effectmanager.h */,
				2BDF4789166D5B680054E77F /* emoteshortcut.cpp */,
				2BDF478A166D5B680054E77F /* emoteshortcut.h */,
				2BDF478B166D5B680054E77F /* equipment.h */,
				2BDF478E166D5B680054E77F /* flooritem.cpp */,
				2BDF478F166D5B680054E77F /* flooritem.h */,
				2BDF4790166D5B680054E77F /* game.cpp */,
				2BDF4791166D5B680054E77F /* game.h */,
				2BDF4792166D5B680054E77F /* graphics.cpp */,
				2BDF4793166D5B680054E77F /* graphics.h */,
				2BDF4794166D5B680054E77F /* graphicsmanager.cpp */,
				2BDF4795166D5B680054E77F /* graphicsmanager.h */,
				2BDF4796166D5B680054E77F /* graphicsvertexes.cpp */,
				2BDF4797166D5B680054E77F /* graphicsvertexes.h */,
				2BDF4798166D5B680054E77F /* gui */,
				2BDF48A6166D5B680054E77F /* guichan */,
				2BDF48FA166D5B680054E77F /* guild.cpp */,
				2BDF48FB166D5B680054E77F /* guild.h */,
				2BDF48FC166D5B680054E77F /* guildmanager.cpp */,
				2BDF48FD166D5B680054E77F /* guildmanager.h */,
				2BDF48FE166D5B680054E77F /* imageparticle.cpp */,
				2BDF48FF166D5B680054E77F /* imageparticle.h */,
				2BDF4900166D5B680054E77F /* imagesprite.cpp */,
				2BDF4901166D5B680054E77F /* imagesprite.h */,
				2BDF4902166D5B680054E77F /* inputevent.cpp */,
				2BDF4903166D5B680054E77F /* inputevent.h */,
				2BDF4904166D5B680054E77F /* inputmanager.cpp */,
				2BDF4905166D5B680054E77F /* inputmanager.h */,
				2BDF4906166D5B680054E77F /* inventory.cpp */,
				2BDF4907166D5B680054E77F /* inventory.h */,
				2BDF4908166D5B680054E77F /* item.cpp */,
				2BDF4909166D5B680054E77F /* item.h */,
				2BDF490A166D5B680054E77F /* itemshortcut.cpp */,
				2BDF490B166D5B680054E77F /* itemshortcut.h */,
				2BDF490C166D5B680054E77F /* joystick.cpp */,
				2BDF490D166D5B680054E77F /* joystick.h */,
				2BDF490E166D5B680054E77F /* keyboardconfig.cpp */,
				2BDF490F166D5B680054E77F /* keyboardconfig.h */,
				2BDF4910166D5B680054E77F /* keyboarddata.h */,
				2BDF4911166D5B680054E77F /* keydata.h */,
				2BDF4912166D5B680054E77F /* keyevent.cpp */,
				2BDF4913166D5B680054E77F /* keyevent.h */,
				2BDF4914166D5B680054E77F /* keyinput.cpp */,
				2BDF4915166D5B680054E77F /* keyinput.h */,
				2BDF4916166D5B680054E77F /* listener.cpp */,
				2BDF4917166D5B680054E77F /* listener.h */,
				2BDF4918166D5B680054E77F /* localconsts.h */,
				2BDF4919166D5B680054E77F /* localplayer.cpp */,
				2BDF491A166D5B680054E77F /* localplayer.h */,
				2BDF491B166D5B680054E77F /* logger.cpp */,
				2BDF491C166D5B680054E77F /* logger.h */,
				2BDF491D166D5B680054E77F /* main.cpp */,
				2BDF491E166D5B680054E77F /* main.h */,
				2BDF491F166D5B680054E77F /* map.cpp */,
				2BDF4920166D5B680054E77F /* map.h */,
				2BDF4921166D5B680054E77F /* maplayer.cpp */,
				2BDF4922166D5B680054E77F /* maplayer.h */,
				2BDF4923166D5B680054E77F /* mgl.cpp */,
				2BDF4924166D5B680054E77F /* mgl.h */,
				2BDF4925166D5B680054E77F /* mobileopenglgraphics.cpp */,
				2BDF4926166D5B680054E77F /* mobileopenglgraphics.h */,
				2BDF4927166D5B680054E77F /* mouseinput.cpp */,
				2BDF4928166D5B680054E77F /* mouseinput.h */,
				2BDF4929166D5B680054E77F /* mumblemanager.cpp */,
				2BDF492A166D5B680054E77F /* mumblemanager.h */,
				2BDF492B166D5B680054E77F /* net */,
				2BDF49D2166D5B680054E77F /* normalopenglgraphics.cpp */,
				2BDF49D3166D5B680054E77F /* normalopenglgraphics.h */,
				2BDF49D4166D5B680054E77F /* particle.cpp */,
				2BDF49D5166D5B680054E77F /* particle.h */,
				2BDF49D6166D5B680054E77F /* particlecontainer.cpp */,
				2BDF49D7166D5B680054E77F /* particlecontainer.h */,
				2BDF49D8166D5B680054E77F /* particleemitter.cpp */,
				2BDF49D9166D5B680054E77F /* particleemitter.h */,
				2BDF49DA166D5B680054E77F /* particleemitterprop.h */,
				2BDF49DB166D5B680054E77F /* party.cpp */,
				2BDF49DC166D5B680054E77F /* party.h */,
				2BDF49DD166D5B680054E77F /* playerinfo.cpp */,
				2BDF49DE166D5B680054E77F /* playerinfo.h */,
				2BDF49DF166D5B680054E77F /* playerrelations.cpp */,
				2BDF49E0166D5B680054E77F /* playerrelations.h */,
				2BDF49E1166D5B680054E77F /* position.cpp */,
				2BDF49E2166D5B680054E77F /* position.h */,
				2BDF49E3166D5B680054E77F /* properties.h */,
				2BDF49E4166D5B680054E77F /* resources */,
				2BDF4A22166D5B680054E77F /* rotationalparticle.cpp */,
				2BDF4A23166D5B680054E77F /* rotationalparticle.h */,
				2BDF4A24166D5B680054E77F /* safeopenglgraphics.cpp */,
				2BDF4A25166D5B680054E77F /* safeopenglgraphics.h */,
				2BDF4A26166D5B680054E77F /* SDLMain.h */,
				2BDF4A27166D5B680054E77F /* SDLMain.m */,
				2BDF4A28166D5B680054E77F /* shopitem.cpp */,
				2BDF4A29166D5B680054E77F /* shopitem.h */,
				2BDF4A2A166D5B680054E77F /* simpleanimation.cpp */,
				2BDF4A2B166D5B680054E77F /* simpleanimation.h */,
				2BDF4A2C166D5B680054E77F /* soundmanager.cpp */,
				2BDF4A2D166D5B680054E77F /* soundmanager.h */,
				2BDF4A2E166D5B680054E77F /* spellmanager.cpp */,
				2BDF4A2F166D5B680054E77F /* spellmanager.h */,
				2BDF4A30166D5B680054E77F /* spellshortcut.cpp */,
				2BDF4D75166D781C0054E77F /* data */,
				2BDF4A31166D5B680054E77F /* spellshortcut.h */,
				2BDF4A32166D5B680054E77F /* sprite.h */,
				2BDF4A33166D5B680054E77F /* statuseffect.cpp */,
				2BDF4A34166D5B680054E77F /* statuseffect.h */,
				2BDF4A35166D5B680054E77F /* test */,
				2BDF4A3A166D5B680054E77F /* text.cpp */,
				2BDF4A3B166D5B680054E77F /* text.h */,
				2BDF4A3C166D5B680054E77F /* textcommand.cpp */,
				2BDF4A3D166D5B680054E77F /* textcommand.h */,
				2BDF4A3E166D5B680054E77F /* textmanager.cpp */,
				2BDF4A3F166D5B680054E77F /* textmanager.h */,
				2BDF4A40166D5B680054E77F /* textparticle.cpp */,
				2BDF4A41166D5B680054E77F /* textparticle.h */,
				2BDF4A42166D5B680054E77F /* textrenderer.h */,
				2BDF4A43166D5B680054E77F /* tileset.h */,
				2BDF4A44166D5B680054E77F /* touchactions.cpp */,
				2BDF4A45166D5B680054E77F /* touchactions.h */,
				2BDF4A46166D5B680054E77F /* touchmanager.cpp */,
				2BDF4A47166D5B680054E77F /* touchmanager.h */,
				2BDF4A48166D5B680054E77F /* units.cpp */,
				2BDF4A49166D5B680054E77F /* units.h */,
				2BDF4A4A166D5B680054E77F /* utils */,
				2BDF4A72166D5B680054E77F /* variabledata.h */,
				2BDF4A73166D5B680054E77F /* vector.cpp */,
				2BDF4A74166D5B680054E77F /* vector.h */,
				2BDF4A75166D5B680054E77F /* winver.h */,
				2BDF45D5166D5AEC0054E77F /* AppDelegate.h */,
				2BDF45D6166D5AEC0054E77F /* AppDelegate.m */,
				2BDF45D8166D5AEC0054E77F /* MainMenu.xib */,
				2BDF45CA166D5AEC0054E77F /* Supporting Files */,
			);
			path = ManaPlus;
			sourceTree = "<group>";
		};
		2BDF45CA166D5AEC0054E77F /* Supporting Files */ = {
			isa = PBXGroup;
			children = (
				2BDF45CB166D5AEC0054E77F /* ManaPlus-Info.plist */,
				2BDF45CC166D5AEC0054E77F /* InfoPlist.strings */,
				2BDF45D1166D5AEC0054E77F /* ManaPlus-Prefix.pch */,
				2BDF45D2166D5AEC0054E77F /* Credits.rtf */,
			);
			name = "Supporting Files";
			sourceTree = "<group>";
		};
		2BDF45E6166D5AEC0054E77F /* ManaPlusTests */ = {
			isa = PBXGroup;
			children = (
				2BDF45EC166D5AEC0054E77F /* ManaPlusTests.h */,
				2BDF45ED166D5AEC0054E77F /* ManaPlusTests.m */,
				2BDF45E7166D5AEC0054E77F /* Supporting Files */,
			);
			path = ManaPlusTests;
			sourceTree = "<group>";
		};
		2BDF45E7166D5AEC0054E77F /* Supporting Files */ = {
			isa = PBXGroup;
			children = (
				2BDF45E8166D5AEC0054E77F /* ManaPlusTests-Info.plist */,
				2BDF45E9166D5AEC0054E77F /* InfoPlist.strings */,
			);
			name = "Supporting Files";
			sourceTree = "<group>";
		};
		2BDF477B166D5B680054E77F /* debug */ = {
			isa = PBXGroup;
			children = (
				2BDF477C166D5B680054E77F /* debug_new.cpp */,
				2BDF477D166D5B680054E77F /* debug_new.h */,
				2BDF477E166D5B680054E77F /* fast_mutex.h */,
				2BDF477F166D5B680054E77F /* static_assert.h */,
			);
			name = debug;
			path = ../../src/debug;
			sourceTree = "<group>";
		};
		2BDF4798166D5B680054E77F /* gui */ = {
			isa = PBXGroup;
			children = (
				2BDF4799166D5B680054E77F /* beingpopup.cpp */,
				2BDF479A166D5B680054E77F /* beingpopup.h */,
				2BDF479B166D5B680054E77F /* botcheckerwindow.cpp */,
				2BDF479C166D5B680054E77F /* botcheckerwindow.h */,
				2BDF479D166D5B680054E77F /* buydialog.cpp */,
				2BDF479E166D5B680054E77F /* buydialog.h */,
				2BDF479F166D5B680054E77F /* buyselldialog.cpp */,
				2BDF47A0166D5B680054E77F /* buyselldialog.h */,
				2BDF47A1166D5B680054E77F /* changeemaildialog.cpp */,
				2BDF47A2166D5B680054E77F /* changeemaildialog.h */,
				2BDF47A3166D5B680054E77F /* changepassworddialog.cpp */,
				2BDF47A4166D5B680054E77F /* changepassworddialog.h */,
				2BDF47A5166D5B680054E77F /* charcreatedialog.cpp */,
				2BDF47A6166D5B680054E77F /* charcreatedialog.h */,
				2BDF47A7166D5B680054E77F /* charselectdialog.cpp */,
				2BDF47A8166D5B680054E77F /* charselectdialog.h */,
				2BDF47A9166D5B680054E77F /* chatwindow.cpp */,
				2BDF47AA166D5B680054E77F /* chatwindow.h */,
				2BDF47AB166D5B680054E77F /* confirmdialog.cpp */,
				2BDF47AC166D5B680054E77F /* confirmdialog.h */,
				2BDF47AD166D5B680054E77F /* connectiondialog.cpp */,
				2BDF47AE166D5B680054E77F /* connectiondialog.h */,
				2BDF47AF166D5B680054E77F /* debugwindow.cpp */,
				2BDF47B0166D5B680054E77F /* debugwindow.h */,
				2BDF47B1166D5B680054E77F /* didyouknowwindow.cpp */,
				2BDF47B2166D5B680054E77F /* didyouknowwindow.h */,
				2BDF47B3166D5B680054E77F /* editdialog.cpp */,
				2BDF47B4166D5B680054E77F /* editdialog.h */,
				2BDF47B5166D5B680054E77F /* editserverdialog.cpp */,
				2BDF47B6166D5B680054E77F /* editserverdialog.h */,
				2BDF47B7166D5B680054E77F /* equipmentwindow.cpp */,
				2BDF47B8166D5B680054E77F /* equipmentwindow.h */,
				2BDF47B9166D5B680054E77F /* focushandler.cpp */,
				2BDF47BA166D5B680054E77F /* focushandler.h */,
				2BDF47BB166D5B680054E77F /* gui.cpp */,
				2BDF47BC166D5B680054E77F /* gui.h */,
				2BDF47BD166D5B680054E77F /* helpwindow.cpp */,
				2BDF47BE166D5B680054E77F /* helpwindow.h */,
				2BDF47BF166D5B680054E77F /* inventorywindow.cpp */,
				2BDF47C0166D5B680054E77F /* inventorywindow.h */,
				2BDF47C1166D5B680054E77F /* itemamountwindow.cpp */,
				2BDF47C2166D5B680054E77F /* itemamountwindow.h */,
				2BDF47C3166D5B680054E77F /* itempopup.cpp */,
				2BDF47C4166D5B680054E77F /* itempopup.h */,
				2BDF47C5166D5B680054E77F /* killstats.cpp */,
				2BDF47C6166D5B680054E77F /* killstats.h */,
				2BDF47C7166D5B680054E77F /* logindialog.cpp */,
				2BDF47C8166D5B680054E77F /* logindialog.h */,
				2BDF47C9166D5B680054E77F /* minimap.cpp */,
				2BDF47CA166D5B680054E77F /* minimap.h */,
				2BDF47CB166D5B680054E77F /* ministatuswindow.cpp */,
				2BDF47CC166D5B680054E77F /* ministatuswindow.h */,
				2BDF47CD166D5B680054E77F /* npcdialog.cpp */,
				2BDF47CE166D5B680054E77F /* npcdialog.h */,
				2BDF47CF166D5B680054E77F /* npcpostdialog.cpp */,
				2BDF47D0166D5B680054E77F /* npcpostdialog.h */,
				2BDF47D1166D5B680054E77F /* okdialog.cpp */,
				2BDF47D2166D5B680054E77F /* okdialog.h */,
				2BDF47D3166D5B680054E77F /* outfitwindow.cpp */,
				2BDF47D4166D5B680054E77F /* outfitwindow.h */,
				2BDF47D5166D5B680054E77F /* palette.cpp */,
				2BDF47D6166D5B680054E77F /* palette.h */,
				2BDF47D7166D5B680054E77F /* popupmenu.cpp */,
				2BDF47D8166D5B680054E77F /* popupmenu.h */,
				2BDF47D9166D5B680054E77F /* questswindow.cpp */,
				2BDF47DA166D5B680054E77F /* questswindow.h */,
				2BDF47DB166D5B680054E77F /* quitdialog.cpp */,
				2BDF47DC166D5B680054E77F /* quitdialog.h */,
				2BDF47DD166D5B680054E77F /* registerdialog.cpp */,
				2BDF47DE166D5B680054E77F /* registerdialog.h */,
				2BDF47DF166D5B680054E77F /* sdlfont.cpp */,
				2BDF47E0166D5B680054E77F /* sdlfont.h */,
				2BDF47E1166D5B680054E77F /* sdlinput.cpp */,
				2BDF47E2166D5B680054E77F /* sdlinput.h */,
				2BDF47E3166D5B680054E77F /* selldialog.cpp */,
				2BDF47E4166D5B680054E77F /* selldialog.h */,
				2BDF47E5166D5B680054E77F /* serverdialog.cpp */,
				2BDF47E6166D5B680054E77F /* serverdialog.h */,
				2BDF47E7166D5B680054E77F /* setup.cpp */,
				2BDF47E8166D5B680054E77F /* setup.h */,
				2BDF47E9166D5B680054E77F /* setup_audio.cpp */,
				2BDF47EA166D5B680054E77F /* setup_audio.h */,
				2BDF47EB166D5B680054E77F /* setup_chat.cpp */,
				2BDF47EC166D5B680054E77F /* setup_chat.h */,
				2BDF47ED166D5B680054E77F /* setup_colors.cpp */,
				2BDF47EE166D5B680054E77F /* setup_colors.h */,
				2BDF47EF166D5B680054E77F /* setup_input.cpp */,
				2BDF47F0166D5B680054E77F /* setup_input.h */,
				2BDF47F1166D5B680054E77F /* setup_joystick.cpp */,
				2BDF47F2166D5B680054E77F /* setup_joystick.h */,
				2BDF47F3166D5B680054E77F /* setup_other.cpp */,
				2BDF47F4166D5B680054E77F /* setup_other.h */,
				2BDF47F5166D5B680054E77F /* setup_perfomance.cpp */,
				2BDF47F6166D5B680054E77F /* setup_perfomance.h */,
				2BDF47F7166D5B680054E77F /* setup_players.cpp */,
				2BDF47F8166D5B680054E77F /* setup_players.h */,
				2BDF47F9166D5B680054E77F /* setup_relations.cpp */,
				2BDF47FA166D5B680054E77F /* setup_relations.h */,
				2BDF47FB166D5B680054E77F /* setup_theme.cpp */,
				2BDF47FC166D5B680054E77F /* setup_theme.h */,
				2BDF47FD166D5B680054E77F /* setup_video.cpp */,
				2BDF47FE166D5B680054E77F /* setup_video.h */,
				2BDF47FF166D5B680054E77F /* setup_visual.cpp */,
				2BDF4800166D5B680054E77F /* setup_visual.h */,
				2BDF4801166D5B680054E77F /* setupactiondata.h */,
				2BDF4802166D5B680054E77F /* shopwindow.cpp */,
				2BDF4803166D5B680054E77F /* shopwindow.h */,
				2BDF4804166D5B680054E77F /* shortcutwindow.cpp */,
				2BDF4805166D5B680054E77F /* shortcutwindow.h */,
				2BDF4806166D5B680054E77F /* skilldialog.cpp */,
				2BDF4807166D5B680054E77F /* skilldialog.h */,
				2BDF4808166D5B680054E77F /* socialwindow.cpp */,
				2BDF4809166D5B680054E77F /* socialwindow.h */,
				2BDF480A166D5B680054E77F /* specialswindow.cpp */,
				2BDF480B166D5B680054E77F /* specialswindow.h */,
				2BDF480C166D5B680054E77F /* speechbubble.cpp */,
				2BDF480D166D5B680054E77F /* speechbubble.h */,
				2BDF480E166D5B680054E77F /* spellpopup.cpp */,
				2BDF480F166D5B680054E77F /* spellpopup.h */,
				2BDF4810166D5B680054E77F /* statuspopup.cpp */,
				2BDF4811166D5B680054E77F /* statuspopup.h */,
				2BDF4812166D5B680054E77F /* statuswindow.cpp */,
				2BDF4813166D5B680054E77F /* statuswindow.h */,
				2BDF4814166D5B680054E77F /* textcommandeditor.cpp */,
				2BDF4815166D5B680054E77F /* textcommandeditor.h */,
				2BDF4816166D5B680054E77F /* textdialog.cpp */,
				2BDF4817166D5B680054E77F /* textdialog.h */,
				2BDF4818166D5B680054E77F /* textpopup.cpp */,
				2BDF4819166D5B680054E77F /* textpopup.h */,
				2BDF481A166D5B680054E77F /* theme.cpp */,
				2BDF481B166D5B680054E77F /* theme.h */,
				2BDF481C166D5B680054E77F /* tradewindow.cpp */,
				2BDF481D166D5B680054E77F /* tradewindow.h */,
				2BDF481E166D5B680054E77F /* unregisterdialog.cpp */,
				2BDF481F166D5B680054E77F /* unregisterdialog.h */,
				2BDF4820166D5B680054E77F /* updaterwindow.cpp */,
				2BDF4821166D5B680054E77F /* updaterwindow.h */,
				2BDF4822166D5B680054E77F /* userpalette.cpp */,
				2BDF4823166D5B680054E77F /* userpalette.h */,
				2BDF4824166D5B680054E77F /* viewport.cpp */,
				2BDF4825166D5B680054E77F /* viewport.h */,
				2BDF4826166D5B680054E77F /* whoisonline.cpp */,
				2BDF4827166D5B680054E77F /* whoisonline.h */,
				2BDF4828166D5B680054E77F /* widgets */,
				2BDF48A2166D5B680054E77F /* windowmenu.cpp */,
				2BDF48A3166D5B680054E77F /* windowmenu.h */,
				2BDF48A4166D5B680054E77F /* worldselectdialog.cpp */,
				2BDF48A5166D5B680054E77F /* worldselectdialog.h */,
			);
			name = gui;
			path = ../../src/gui;
			sourceTree = "<group>";
		};
		2BDF4828166D5B680054E77F /* widgets */ = {
			isa = PBXGroup;
			children = (
				2BDF4829166D5B680054E77F /* avatarlistbox.cpp */,
				2BDF482A166D5B680054E77F /* avatarlistbox.h */,
				2BDF482B166D5B680054E77F /* battletab.cpp */,
				2BDF482C166D5B680054E77F /* battletab.h */,
				2BDF482D166D5B680054E77F /* browserbox.cpp */,
				2BDF482E166D5B680054E77F /* browserbox.h */,
				2BDF482F166D5B680054E77F /* browserbox_unittest.cc */,
				2BDF4830166D5B680054E77F /* button.cpp */,
				2BDF4831166D5B680054E77F /* button.h */,
				2BDF4832166D5B680054E77F /* channeltab.cpp */,
				2BDF4833166D5B680054E77F /* channeltab.h */,
				2BDF4834166D5B680054E77F /* chattab.cpp */,
				2BDF4835166D5B680054E77F /* chattab.h */,
				2BDF4836166D5B680054E77F /* checkbox.cpp */,
				2BDF4837166D5B680054E77F /* checkbox.h */,
				2BDF4838166D5B680054E77F /* container.cpp */,
				2BDF4839166D5B680054E77F /* container.h */,
				2BDF483A166D5B680054E77F /* desktop.cpp */,
				2BDF483B166D5B680054E77F /* desktop.h */,
				2BDF483C166D5B680054E77F /* dropdown.cpp */,
				2BDF483D166D5B680054E77F /* dropdown.h */,
				2BDF483E166D5B680054E77F /* dropshortcutcontainer.cpp */,
				2BDF483F166D5B680054E77F /* dropshortcutcontainer.h */,
				2BDF4840166D5B680054E77F /* emoteshortcutcontainer.cpp */,
				2BDF4841166D5B680054E77F /* emoteshortcutcontainer.h */,
				2BDF4842166D5B680054E77F /* extendedlistbox.cpp */,
				2BDF4843166D5B680054E77F /* extendedlistbox.h */,
				2BDF4844166D5B680054E77F /* extendedlistmodel.h */,
				2BDF4845166D5B680054E77F /* extendednamesmodel.cpp */,
				2BDF4846166D5B680054E77F /* extendednamesmodel.h */,
				2BDF4847166D5B680054E77F /* flowcontainer.cpp */,
				2BDF4848166D5B680054E77F /* flowcontainer.h */,
				2BDF4849166D5B680054E77F /* guildchattab.cpp */,
				2BDF484A166D5B680054E77F /* guildchattab.h */,
				2BDF484B166D5B680054E77F /* guitable.cpp */,
				2BDF484C166D5B680054E77F /* guitable.h */,
				2BDF484D166D5B680054E77F /* horizontcontainer.cpp */,
				2BDF484E166D5B680054E77F /* horizontcontainer.h */,
				2BDF484F166D5B680054E77F /* icon.cpp */,
				2BDF4850166D5B680054E77F /* icon.h */,
				2BDF4851166D5B680054E77F /* inttextfield.cpp */,
				2BDF4852166D5B680054E77F /* inttextfield.h */,
				2BDF4853166D5B680054E77F /* itemcontainer.cpp */,
				2BDF4854166D5B680054E77F /* itemcontainer.h */,
				2BDF4855166D5B680054E77F /* itemlinkhandler.cpp */,
				2BDF4856166D5B680054E77F /* itemlinkhandler.h */,
				2BDF4857166D5B680054E77F /* itemshortcutcontainer.cpp */,
				2BDF4858166D5B680054E77F /* itemshortcutcontainer.h */,
				2BDF4859166D5B680054E77F /* label.cpp */,
				2BDF485A166D5B680054E77F /* label.h */,
				2BDF485B166D5B680054E77F /* layout.cpp */,
				2BDF485C166D5B680054E77F /* layout.h */,
				2BDF485D166D5B680054E77F /* layouthelper.cpp */,
				2BDF485E166D5B680054E77F /* layouthelper.h */,
				2BDF485F166D5B680054E77F /* linkhandler.h */,
				2BDF4860166D5B680054E77F /* listbox.cpp */,
				2BDF4861166D5B680054E77F /* listbox.h */,
				2BDF4862166D5B680054E77F /* mouseevent.h */,
				2BDF4863166D5B680054E77F /* namesmodel.cpp */,
				2BDF4864166D5B680054E77F /* namesmodel.h */,
				2BDF4865166D5B680054E77F /* passwordfield.cpp */,
				2BDF4866166D5B680054E77F /* passwordfield.h */,
				2BDF4867166D5B680054E77F /* playerbox.cpp */,
				2BDF4868166D5B680054E77F /* playerbox.h */,
				2BDF4869166D5B680054E77F /* popup.cpp */,
				2BDF486A166D5B680054E77F /* popup.h */,
				2BDF486B166D5B680054E77F /* progressbar.cpp */,
				2BDF486C166D5B680054E77F /* progressbar.h */,
				2BDF486D166D5B680054E77F /* progressindicator.cpp */,
				2BDF486E166D5B680054E77F /* progressindicator.h */,
				2BDF486F166D5B680054E77F /* radiobutton.cpp */,
				2BDF4870166D5B680054E77F /* radiobutton.h */,
				2BDF4871166D5B680054E77F /* radiogroup.cpp */,
				2BDF4872166D5B680054E77F /* radiogroup.h */,
				2BDF4873166D5B680054E77F /* scrollarea.cpp */,
				2BDF4874166D5B680054E77F /* scrollarea.h */,
				2BDF4875166D5B680054E77F /* setupitem.cpp */,
				2BDF4876166D5B680054E77F /* setupitem.h */,
				2BDF4877166D5B680054E77F /* setuptab.cpp */,
				2BDF4878166D5B680054E77F /* setuptab.h */,
				2BDF4879166D5B680054E77F /* setuptabscroll.cpp */,
				2BDF487A166D5B680054E77F /* setuptabscroll.h */,
				2BDF487B166D5B680054E77F /* shopitems.cpp */,
				2BDF487C166D5B680054E77F /* shopitems.h */,
				2BDF487D166D5B680054E77F /* shoplistbox.cpp */,
				2BDF487E166D5B680054E77F /* shoplistbox.h */,
				2BDF487F166D5B680054E77F /* shortcutcontainer.cpp */,
				2BDF4880166D5B680054E77F /* shortcutcontainer.h */,
				2BDF4881166D5B680054E77F /* slider.cpp */,
				2BDF4882166D5B680054E77F /* slider.h */,
				2BDF4883166D5B680054E77F /* sliderlist.cpp */,
				2BDF4884166D5B680054E77F /* sliderlist.h */,
				2BDF4885166D5B680054E77F /* spellshortcutcontainer.cpp */,
				2BDF4886166D5B680054E77F /* spellshortcutcontainer.h */,
				2BDF4887166D5B680054E77F /* tab.cpp */,
				2BDF4888166D5B680054E77F /* tab.h */,
				2BDF4889166D5B680054E77F /* tabbedarea.cpp */,
				2BDF488A166D5B680054E77F /* tabbedarea.h */,
				2BDF488B166D5B680054E77F /* tablemodel.cpp */,
				2BDF488C166D5B680054E77F /* tablemodel.h */,
				2BDF488D166D5B680054E77F /* tabstrip.cpp */,
				2BDF488E166D5B680054E77F /* tabstrip.h */,
				2BDF488F166D5B680054E77F /* textbox.cpp */,
				2BDF4890166D5B680054E77F /* textbox.h */,
				2BDF4891166D5B680054E77F /* textfield.cpp */,
				2BDF4892166D5B680054E77F /* textfield.h */,
				2BDF4893166D5B680054E77F /* textpreview.cpp */,
				2BDF4894166D5B680054E77F /* textpreview.h */,
				2BDF4895166D5B680054E77F /* tradetab.cpp */,
				2BDF4896166D5B680054E77F /* tradetab.h */,
				2BDF4897166D5B680054E77F /* vertcontainer.cpp */,
				2BDF4898166D5B680054E77F /* vertcontainer.h */,
				2BDF4899166D5B680054E77F /* whispertab.cpp */,
				2BDF489A166D5B680054E77F /* whispertab.h */,
				2BDF489B166D5B680054E77F /* widget2.h */,
				2BDF489C166D5B680054E77F /* widgetgroup.cpp */,
				2BDF489D166D5B680054E77F /* widgetgroup.h */,
				2BDF489E166D5B680054E77F /* window.cpp */,
				2BDF489F166D5B680054E77F /* window.h */,
				2BDF48A0166D5B680054E77F /* windowcontainer.cpp */,
				2BDF48A1166D5B680054E77F /* windowcontainer.h */,
			);
			path = widgets;
			sourceTree = "<group>";
		};
		2BDF48A6166D5B680054E77F /* guichan */ = {
			isa = PBXGroup;
			children = (
				2BDF48A7166D5B680054E77F /* actionevent.cpp */,
				2BDF48A8166D5B680054E77F /* basiccontainer.cpp */,
				2BDF48A9166D5B680054E77F /* cliprectangle.cpp */,
				2BDF48AA166D5B680054E77F /* color.cpp */,
				2BDF48AB166D5B680054E77F /* event.cpp */,
				2BDF48AC166D5B680054E77F /* exception.cpp */,
				2BDF48AD166D5B680054E77F /* focushandler.cpp */,
				2BDF48AE166D5B680054E77F /* font.cpp */,
				2BDF48AF166D5B680054E77F /* graphics.cpp */,
				2BDF48B0166D5B680054E77F /* gui.cpp */,
				2BDF48B1166D5B680054E77F /* image.cpp */,
				2BDF48B2166D5B680054E77F /* include */,
				2BDF48E2166D5B680054E77F /* inputevent.cpp */,
				2BDF48E3166D5B680054E77F /* key.cpp */,
				2BDF48E4166D5B680054E77F /* keyevent.cpp */,
				2BDF48E5166D5B680054E77F /* keyinput.cpp */,
				2BDF48E6166D5B680054E77F /* mouseevent.cpp */,
				2BDF48E7166D5B680054E77F /* mouseinput.cpp */,
				2BDF48E8166D5B680054E77F /* rectangle.cpp */,
				2BDF48E9166D5B680054E77F /* sdl */,
				2BDF48EB166D5B680054E77F /* selectionevent.cpp */,
				2BDF48EC166D5B680054E77F /* widget.cpp */,
				2BDF48ED166D5B680054E77F /* widgets */,
			);
			name = guichan;
			path = ../../src/guichan;
			sourceTree = "<group>";
		};
		2BDF48B2166D5B680054E77F /* include */ = {
			isa = PBXGroup;
			children = (
				2BDF48B3166D5B680054E77F /* guichan */,
			);
			path = include;
			sourceTree = "<group>";
		};
		2BDF48B3166D5B680054E77F /* guichan */ = {
			isa = PBXGroup;
			children = (
				2BDF48B4166D5B680054E77F /* actionevent.hpp */,
				2BDF48B5166D5B680054E77F /* actionlistener.hpp */,
				2BDF48B6166D5B680054E77F /* basiccontainer.hpp */,
				2BDF48B7166D5B680054E77F /* cliprectangle.hpp */,
				2BDF48B8166D5B680054E77F /* color.hpp */,
				2BDF48B9166D5B680054E77F /* deathlistener.hpp */,
				2BDF48BA166D5B680054E77F /* event.hpp */,
				2BDF48BB166D5B680054E77F /* exception.hpp */,
				2BDF48BC166D5B680054E77F /* focushandler.hpp */,
				2BDF48BD166D5B680054E77F /* focuslistener.hpp */,
				2BDF48BE166D5B680054E77F /* font.hpp */,
				2BDF48BF166D5B680054E77F /* graphics.hpp */,
				2BDF48C0166D5B680054E77F /* gui.hpp */,
				2BDF48C1166D5B680054E77F /* image.hpp */,
				2BDF48C2166D5B680054E77F /* input.hpp */,
				2BDF48C3166D5B680054E77F /* inputevent.hpp */,
				2BDF48C4166D5B680054E77F /* key.hpp */,
				2BDF48C5166D5B680054E77F /* keyevent.hpp */,
				2BDF48C6166D5B680054E77F /* keyinput.hpp */,
				2BDF48C7166D5B680054E77F /* keylistener.hpp */,
				2BDF48C8166D5B680054E77F /* listmodel.hpp */,
				2BDF48C9166D5B680054E77F /* mouseevent.hpp */,
				2BDF48CA166D5B680054E77F /* mouseinput.hpp */,
				2BDF48CB166D5B680054E77F /* mouselistener.hpp */,
				2BDF48CC166D5B680054E77F /* platform.hpp */,
				2BDF48CD166D5B680054E77F /* rectangle.hpp */,
				2BDF48CE166D5B680054E77F /* sdl */,
				2BDF48D1166D5B680054E77F /* selectionevent.hpp */,
				2BDF48D2166D5B680054E77F /* selectionlistener.hpp */,
				2BDF48D3166D5B680054E77F /* widget.hpp */,
				2BDF48D4166D5B680054E77F /* widgetlistener.hpp */,
				2BDF48D5166D5B680054E77F /* widgets */,
			);
			path = guichan;
			sourceTree = "<group>";
		};
		2BDF48CE166D5B680054E77F /* sdl */ = {
			isa = PBXGroup;
			children = (
				2BDF48CF166D5B680054E77F /* sdlgraphics.hpp */,
				2BDF48D0166D5B680054E77F /* sdlpixel.hpp */,
			);
			path = sdl;
			sourceTree = "<group>";
		};
		2BDF48D5166D5B680054E77F /* widgets */ = {
			isa = PBXGroup;
			children = (
				2BDF48D6166D5B680054E77F /* button.hpp */,
				2BDF48D7166D5B680054E77F /* checkbox.hpp */,
				2BDF48D8166D5B680054E77F /* container.hpp */,
				2BDF48D9166D5B680054E77F /* dropdown.hpp */,
				2BDF48DA166D5B680054E77F /* label.hpp */,
				2BDF48DB166D5B680054E77F /* listbox.hpp */,
				2BDF48DC166D5B680054E77F /* radiobutton.hpp */,
				2BDF48DD166D5B680054E77F /* scrollarea.hpp */,
				2BDF48DE166D5B680054E77F /* slider.hpp */,
				2BDF48DF166D5B680054E77F /* textbox.hpp */,
				2BDF48E0166D5B680054E77F /* textfield.hpp */,
				2BDF48E1166D5B680054E77F /* window.hpp */,
			);
			path = widgets;
			sourceTree = "<group>";
		};
		2BDF48E9166D5B680054E77F /* sdl */ = {
			isa = PBXGroup;
			children = (
				2BDF48EA166D5B680054E77F /* sdlgraphics.cpp */,
			);
			path = sdl;
			sourceTree = "<group>";
		};
		2BDF48ED166D5B680054E77F /* widgets */ = {
			isa = PBXGroup;
			children = (
				2BDF48EE166D5B680054E77F /* button.cpp */,
				2BDF48EF166D5B680054E77F /* checkbox.cpp */,
				2BDF48F0166D5B680054E77F /* container.cpp */,
				2BDF48F1166D5B680054E77F /* dropdown.cpp */,
				2BDF48F2166D5B680054E77F /* label.cpp */,
				2BDF48F3166D5B680054E77F /* listbox.cpp */,
				2BDF48F4166D5B680054E77F /* radiobutton.cpp */,
				2BDF48F5166D5B680054E77F /* scrollarea.cpp */,
				2BDF48F6166D5B680054E77F /* slider.cpp */,
				2BDF48F7166D5B680054E77F /* textbox.cpp */,
				2BDF48F8166D5B680054E77F /* textfield.cpp */,
				2BDF48F9166D5B680054E77F /* window.cpp */,
			);
			path = widgets;
			sourceTree = "<group>";
		};
		2BDF492B166D5B680054E77F /* net */ = {
			isa = PBXGroup;
			children = (
				2BDF492C166D5B680054E77F /* adminhandler.h */,
				2BDF492D166D5B680054E77F /* beinghandler.h */,
				2BDF492E166D5B680054E77F /* buysellhandler.h */,
				2BDF492F166D5B680054E77F /* charhandler.cpp */,
				2BDF4930166D5B680054E77F /* charhandler.h */,
				2BDF4931166D5B680054E77F /* chathandler.h */,
				2BDF4932166D5B680054E77F /* download.cpp */,
				2BDF4933166D5B680054E77F /* download.h */,
				2BDF4934166D5B680054E77F /* ea */,
				2BDF495C166D5B680054E77F /* eathena */,
				2BDF498B166D5B680054E77F /* gamehandler.h */,
				2BDF498C166D5B680054E77F /* generalhandler.h */,
				2BDF498D166D5B680054E77F /* guildhandler.h */,
				2BDF498E166D5B680054E77F /* inventoryhandler.h */,
				2BDF498F166D5B680054E77F /* logindata.h */,
				2BDF4990166D5B680054E77F /* loginhandler.h */,
				2BDF4991166D5B680054E77F /* messagehandler.h */,
				2BDF4992166D5B680054E77F /* messagein.cpp */,
				2BDF4993166D5B680054E77F /* messagein.h */,
				2BDF4994166D5B680054E77F /* messageout.cpp */,
				2BDF4995166D5B680054E77F /* messageout.h */,
				2BDF4996166D5B680054E77F /* net.cpp */,
				2BDF4997166D5B680054E77F /* net.h */,
				2BDF4998166D5B680054E77F /* npchandler.h */,
				2BDF4999166D5B680054E77F /* packetcounters.cpp */,
				2BDF499A166D5B680054E77F /* packetcounters.h */,
				2BDF499B166D5B680054E77F /* partyhandler.h */,
				2BDF499C166D5B680054E77F /* playerhandler.h */,
				2BDF499D166D5B680054E77F /* serverinfo.h */,
				2BDF499E166D5B680054E77F /* specialhandler.h */,
				2BDF499F166D5B680054E77F /* tmwa */,
				2BDF49D0166D5B680054E77F /* tradehandler.h */,
				2BDF49D1166D5B680054E77F /* worldinfo.h */,
			);
			name = net;
			path = ../../src/net;
			sourceTree = "<group>";
		};
		2BDF4934166D5B680054E77F /* ea */ = {
			isa = PBXGroup;
			children = (
				2BDF4935166D5B680054E77F /* adminhandler.cpp */,
				2BDF4936166D5B680054E77F /* adminhandler.h */,
				2BDF4937166D5B680054E77F /* beinghandler.cpp */,
				2BDF4938166D5B680054E77F /* beinghandler.h */,
				2BDF4939166D5B680054E77F /* buysellhandler.cpp */,
				2BDF493A166D5B680054E77F /* buysellhandler.h */,
				2BDF493B166D5B680054E77F /* charserverhandler.cpp */,
				2BDF493C166D5B680054E77F /* charserverhandler.h */,
				2BDF493D166D5B680054E77F /* chathandler.cpp */,
				2BDF493E166D5B680054E77F /* chathandler.h */,
				2BDF493F166D5B680054E77F /* eaprotocol.h */,
				2BDF4940166D5B680054E77F /* gamehandler.cpp */,
				2BDF4941166D5B680054E77F /* gamehandler.h */,
				2BDF4942166D5B680054E77F /* gui */,
				2BDF4947166D5B680054E77F /* guildhandler.cpp */,
				2BDF4948166D5B680054E77F /* guildhandler.h */,
				2BDF4949166D5B680054E77F /* inventoryhandler.cpp */,
				2BDF494A166D5B680054E77F /* inventoryhandler.h */,
				2BDF494B166D5B680054E77F /* itemhandler.cpp */,
				2BDF494C166D5B680054E77F /* itemhandler.h */,
				2BDF494D166D5B680054E77F /* loginhandler.cpp */,
				2BDF494E166D5B680054E77F /* loginhandler.h */,
				2BDF494F166D5B680054E77F /* network.cpp */,
				2BDF4950166D5B680054E77F /* network.h */,
				2BDF4951166D5B680054E77F /* npchandler.cpp */,
				2BDF4952166D5B680054E77F /* npchandler.h */,
				2BDF4953166D5B680054E77F /* partyhandler.cpp */,
				2BDF4954166D5B680054E77F /* partyhandler.h */,
				2BDF4955166D5B680054E77F /* playerhandler.cpp */,
				2BDF4956166D5B680054E77F /* playerhandler.h */,
				2BDF4957166D5B680054E77F /* specialhandler.cpp */,
				2BDF4958166D5B680054E77F /* specialhandler.h */,
				2BDF4959166D5B680054E77F /* token.h */,
				2BDF495A166D5B680054E77F /* tradehandler.cpp */,
				2BDF495B166D5B680054E77F /* tradehandler.h */,
			);
			path = ea;
			sourceTree = "<group>";
		};
		2BDF4942166D5B680054E77F /* gui */ = {
			isa = PBXGroup;
			children = (
				2BDF4943166D5B680054E77F /* guildtab.cpp */,
				2BDF4944166D5B680054E77F /* guildtab.h */,
				2BDF4945166D5B680054E77F /* partytab.cpp */,
				2BDF4946166D5B680054E77F /* partytab.h */,
			);
			path = gui;
			sourceTree = "<group>";
		};
		2BDF495C166D5B680054E77F /* eathena */ = {
			isa = PBXGroup;
			children = (
				2BDF495D166D5B680054E77F /* adminhandler.cpp */,
				2BDF495E166D5B680054E77F /* adminhandler.h */,
				2BDF495F166D5B680054E77F /* beinghandler.cpp */,
				2BDF4960166D5B680054E77F /* beinghandler.h */,
				2BDF4961166D5B680054E77F /* buysellhandler.cpp */,
				2BDF4962166D5B680054E77F /* buysellhandler.h */,
				2BDF4963166D5B680054E77F /* charserverhandler.cpp */,
				2BDF4964166D5B680054E77F /* charserverhandler.h */,
				2BDF4965166D5B680054E77F /* chathandler.cpp */,
				2BDF4966166D5B680054E77F /* chathandler.h */,
				2BDF4967166D5B680054E77F /* gamehandler.cpp */,
				2BDF4968166D5B680054E77F /* gamehandler.h */,
				2BDF4969166D5B680054E77F /* generalhandler.cpp */,
				2BDF496A166D5B680054E77F /* generalhandler.h */,
				2BDF496B166D5B680054E77F /* gui */,
				2BDF4970166D5B680054E77F /* guildhandler.cpp */,
				2BDF4971166D5B680054E77F /* guildhandler.h */,
				2BDF4972166D5B680054E77F /* inventoryhandler.cpp */,
				2BDF4973166D5B680054E77F /* inventoryhandler.h */,
				2BDF4974166D5B680054E77F /* itemhandler.cpp */,
				2BDF4975166D5B680054E77F /* itemhandler.h */,
				2BDF4976166D5B680054E77F /* loginhandler.cpp */,
				2BDF4977166D5B680054E77F /* loginhandler.h */,
				2BDF4978166D5B680054E77F /* messagehandler.cpp */,
				2BDF4979166D5B680054E77F /* messagehandler.h */,
				2BDF497A166D5B680054E77F /* messagein.cpp */,
				2BDF497B166D5B680054E77F /* messagein.h */,
				2BDF497C166D5B680054E77F /* messageout.cpp */,
				2BDF497D166D5B680054E77F /* messageout.h */,
				2BDF497E166D5B680054E77F /* network.cpp */,
				2BDF497F166D5B680054E77F /* network.h */,
				2BDF4980166D5B680054E77F /* npchandler.cpp */,
				2BDF4981166D5B680054E77F /* npchandler.h */,
				2BDF4982166D5B680054E77F /* partyhandler.cpp */,
				2BDF4983166D5B680054E77F /* partyhandler.h */,
				2BDF4984166D5B680054E77F /* playerhandler.cpp */,
				2BDF4985166D5B680054E77F /* playerhandler.h */,
				2BDF4986166D5B680054E77F /* protocol.h */,
				2BDF4987166D5B680054E77F /* specialhandler.cpp */,
				2BDF4988166D5B680054E77F /* specialhandler.h */,
				2BDF4989166D5B680054E77F /* tradehandler.cpp */,
				2BDF498A166D5B680054E77F /* tradehandler.h */,
			);
			path = eathena;
			sourceTree = "<group>";
		};
		2BDF496B166D5B680054E77F /* gui */ = {
			isa = PBXGroup;
			children = (
				2BDF496C166D5B680054E77F /* guildtab.cpp */,
				2BDF496D166D5B680054E77F /* guildtab.h */,
				2BDF496E166D5B680054E77F /* partytab.cpp */,
				2BDF496F166D5B680054E77F /* partytab.h */,
			);
			path = gui;
			sourceTree = "<group>";
		};
		2BDF499F166D5B680054E77F /* tmwa */ = {
			isa = PBXGroup;
			children = (
				2BDF49A0166D5B680054E77F /* adminhandler.cpp */,
				2BDF49A1166D5B680054E77F /* adminhandler.h */,
				2BDF49A2166D5B680054E77F /* beinghandler.cpp */,
				2BDF49A3166D5B680054E77F /* beinghandler.h */,
				2BDF49A4166D5B680054E77F /* buysellhandler.cpp */,
				2BDF49A5166D5B680054E77F /* buysellhandler.h */,
				2BDF49A6166D5B680054E77F /* charserverhandler.cpp */,
				2BDF49A7166D5B680054E77F /* charserverhandler.h */,
				2BDF49A8166D5B680054E77F /* chathandler.cpp */,
				2BDF49A9166D5B680054E77F /* chathandler.h */,
				2BDF49AA166D5B680054E77F /* gamehandler.cpp */,
				2BDF49AB166D5B680054E77F /* gamehandler.h */,
				2BDF49AC166D5B680054E77F /* generalhandler.cpp */,
				2BDF49AD166D5B680054E77F /* generalhandler.h */,
				2BDF49AE166D5B680054E77F /* gui */,
				2BDF49B3166D5B680054E77F /* guildhandler.cpp */,
				2BDF49B4166D5B680054E77F /* guildhandler.h */,
				2BDF49B5166D5B680054E77F /* inventoryhandler.cpp */,
				2BDF49B6166D5B680054E77F /* inventoryhandler.h */,
				2BDF49B7166D5B680054E77F /* itemhandler.cpp */,
				2BDF49B8166D5B680054E77F /* itemhandler.h */,
				2BDF49B9166D5B680054E77F /* loginhandler.cpp */,
				2BDF49BA166D5B680054E77F /* loginhandler.h */,
				2BDF49BB166D5B680054E77F /* messagehandler.cpp */,
				2BDF49BC166D5B680054E77F /* messagehandler.h */,
				2BDF49BD166D5B680054E77F /* messagein.cpp */,
				2BDF49BE166D5B680054E77F /* messagein.h */,
				2BDF49BF166D5B680054E77F /* messageout.cpp */,
				2BDF49C0166D5B680054E77F /* messageout.h */,
				2BDF49C1166D5B680054E77F /* network.cpp */,
				2BDF49C2166D5B680054E77F /* network.h */,
				2BDF49C3166D5B680054E77F /* npchandler.cpp */,
				2BDF49C4166D5B680054E77F /* npchandler.h */,
				2BDF49C5166D5B680054E77F /* partyhandler.cpp */,
				2BDF49C6166D5B680054E77F /* partyhandler.h */,
				2BDF49C7166D5B680054E77F /* playerhandler.cpp */,
				2BDF49C8166D5B680054E77F /* playerhandler.h */,
				2BDF49C9166D5B680054E77F /* protocol.h */,
				2BDF49CA166D5B680054E77F /* questhandler.cpp */,
				2BDF49CB166D5B680054E77F /* questhandler.h */,
				2BDF49CC166D5B680054E77F /* specialhandler.cpp */,
				2BDF49CD166D5B680054E77F /* specialhandler.h */,
				2BDF49CE166D5B680054E77F /* tradehandler.cpp */,
				2BDF49CF166D5B680054E77F /* tradehandler.h */,
			);
			path = tmwa;
			sourceTree = "<group>";
		};
		2BDF49AE166D5B680054E77F /* gui */ = {
			isa = PBXGroup;
			children = (
				2BDF49AF166D5B680054E77F /* guildtab.cpp */,
				2BDF49B0166D5B680054E77F /* guildtab.h */,
				2BDF49B1166D5B680054E77F /* partytab.cpp */,
				2BDF49B2166D5B680054E77F /* partytab.h */,
			);
			path = gui;
			sourceTree = "<group>";
		};
		2BDF49E4166D5B680054E77F /* resources */ = {
			isa = PBXGroup;
			children = (
				2BDF49E5166D5B680054E77F /* action.cpp */,
				2BDF49E6166D5B680054E77F /* action.h */,
				2BDF49E7166D5B680054E77F /* ambientlayer.cpp */,
				2BDF49E8166D5B680054E77F /* ambientlayer.h */,
				2BDF49E9166D5B680054E77F /* animation.cpp */,
				2BDF49EA166D5B680054E77F /* animation.h */,
				2BDF49EB166D5B680054E77F /* atlasmanager.cpp */,
				2BDF49EC166D5B680054E77F /* atlasmanager.h */,
				2BDF49ED166D5B680054E77F /* beinginfo.cpp */,
				2BDF49EE166D5B680054E77F /* beinginfo.h */,
				2BDF49EF166D5B680054E77F /* chardb.cpp */,
				2BDF49F0166D5B680054E77F /* chardb.h */,
				2BDF49F1166D5B680054E77F /* colordb.cpp */,
				2BDF49F2166D5B680054E77F /* colordb.h */,
				2BDF49F3166D5B680054E77F /* cursor.cpp */,
				2BDF49F4166D5B680054E77F /* cursor.h */,
				2BDF49F5166D5B680054E77F /* dye.cpp */,
				2BDF49F6166D5B680054E77F /* dye.h */,
				2BDF49F7166D5B680054E77F /* emotedb.cpp */,
				2BDF49F8166D5B680054E77F /* emotedb.h */,
				2BDF49F9166D5B680054E77F /* fboinfo.h */,
				2BDF49FA166D5B680054E77F /* image.cpp */,
				2BDF49FB166D5B680054E77F /* image.h */,
				2BDF49FC166D5B680054E77F /* imagehelper.cpp */,
				2BDF49FD166D5B680054E77F /* imagehelper.h */,
				2BDF49FE166D5B680054E77F /* imageset.cpp */,
				2BDF49FF166D5B680054E77F /* imageset.h */,
				2BDF4A00166D5B680054E77F /* imagewriter.cpp */,
				2BDF4A01166D5B680054E77F /* imagewriter.h */,
				2BDF4A02166D5B680054E77F /* itemdb.cpp */,
				2BDF4A03166D5B680054E77F /* itemdb.h */,
				2BDF4A04166D5B680054E77F /* iteminfo.cpp */,
				2BDF4A05166D5B680054E77F /* iteminfo.h */,
				2BDF4A06166D5B680054E77F /* mapdb.cpp */,
				2BDF4A07166D5B680054E77F /* mapdb.h */,
				2BDF4A08166D5B680054E77F /* mapreader.cpp */,
				2BDF4A09166D5B680054E77F /* mapreader.h */,
				2BDF4A0A166D5B680054E77F /* monsterdb.cpp */,
				2BDF4A0B166D5B680054E77F /* monsterdb.h */,
				2BDF4A0C166D5B680054E77F /* npcdb.cpp */,
				2BDF4A0D166D5B680054E77F /* npcdb.h */,
				2BDF4A0E166D5B680054E77F /* openglimagehelper.cpp */,
				2BDF4A0F166D5B680054E77F /* openglimagehelper.h */,
				2BDF4A10166D5B680054E77F /* resource.cpp */,
				2BDF4A11166D5B680054E77F /* resource.h */,
				2BDF4A12166D5B680054E77F /* resourcemanager.cpp */,
				2BDF4A13166D5B680054E77F /* resourcemanager.h */,
				2BDF4A14166D5B680054E77F /* sdlimagehelper.cpp */,
				2BDF4A15166D5B680054E77F /* sdlimagehelper.h */,
				2BDF4A16166D5B680054E77F /* sdlmusic.cpp */,
				2BDF4A17166D5B680054E77F /* sdlmusic.h */,
				2BDF4A18166D5B680054E77F /* soundeffect.cpp */,
				2BDF4A19166D5B680054E77F /* soundeffect.h */,
				2BDF4A1A166D5B680054E77F /* specialdb.cpp */,
				2BDF4A1B166D5B680054E77F /* specialdb.h */,
				2BDF4A1C166D5B680054E77F /* spritedef.cpp */,
				2BDF4A1D166D5B680054E77F /* spritedef.h */,
				2BDF4A1E166D5B680054E77F /* subimage.cpp */,
				2BDF4A1F166D5B680054E77F /* subimage.h */,
				2BDF4A20166D5B680054E77F /* wallpaper.cpp */,
				2BDF4A21166D5B680054E77F /* wallpaper.h */,
			);
			name = resources;
			path = ../../src/resources;
			sourceTree = "<group>";
		};
		2BDF4A35166D5B680054E77F /* test */ = {
			isa = PBXGroup;
			children = (
				2BDF4A36166D5B680054E77F /* testlauncher.cpp */,
				2BDF4A37166D5B680054E77F /* testlauncher.h */,
				2BDF4A38166D5B680054E77F /* testmain.cpp */,
				2BDF4A39166D5B680054E77F /* testmain.h */,
			);
			name = test;
			path = ../../src/test;
			sourceTree = "<group>";
		};
		2BDF4A4A166D5B680054E77F /* utils */ = {
			isa = PBXGroup;
			children = (
				2BDF4A4B166D5B680054E77F /* base64.cpp */,
				2BDF4A4C166D5B680054E77F /* base64.h */,
				2BDF4A4D166D5B680054E77F /* checkutils.cpp */,
				2BDF4A4E166D5B680054E77F /* checkutils.h */,
				2BDF4A4F166D5B680054E77F /* copynpaste.cpp */,
				2BDF4A50166D5B680054E77F /* copynpaste.h */,
				2BDF4A51166D5B680054E77F /* dtor.h */,
				2BDF4A52166D5B680054E77F /* gettext.h */,
				2BDF4A53166D5B680054E77F /* langs.cpp */,
				2BDF4A54166D5B680054E77F /* langs.h */,
				2BDF4A55166D5B680054E77F /* mathutils.h */,
				2BDF4A56166D5B680054E77F /* mkdir.cpp */,
				2BDF4A57166D5B680054E77F /* mkdir.h */,
				2BDF4A58166D5B680054E77F /* mutex.h */,
				2BDF4A59166D5B680054E77F /* paths.cpp */,
				2BDF4A5A166D5B680054E77F /* paths.h */,
				2BDF4A5B166D5B680054E77F /* perfomance.cpp */,
				2BDF4A5C166D5B680054E77F /* perfomance.h */,
				2BDF4A5D166D5B680054E77F /* physfsrwops.cpp */,
				2BDF4A5E166D5B680054E77F /* physfsrwops.h */,
				2BDF4A5F166D5B680054E77F /* process.cpp */,
				2BDF4A60166D5B680054E77F /* process.h */,
				2BDF4A61166D5B680054E77F /* sha256.cpp */,
				2BDF4A62166D5B680054E77F /* sha256.h */,
				2BDF4A63166D5B680054E77F /* specialfolder.cpp */,
				2BDF4A64166D5B680054E77F /* specialfolder.h */,
				2BDF4A65166D5B680054E77F /* stringutils.cpp */,
				2BDF4A66166D5B680054E77F /* stringutils.h */,
				2BDF4A67166D5B680054E77F /* stringutils_unittest.cc */,
				2BDF4A68166D5B680054E77F /* stringvector.h */,
				2BDF4A69166D5B680054E77F /* translation */,
				2BDF4A70166D5B680054E77F /* xml.cpp */,
				2BDF4A71166D5B680054E77F /* xml.h */,
			);
			name = utils;
			path = ../../src/utils;
			sourceTree = "<group>";
		};
		2BDF4A69166D5B680054E77F /* translation */ = {
			isa = PBXGroup;
			children = (
				2BDF4A6A166D5B680054E77F /* podict.cpp */,
				2BDF4A6B166D5B680054E77F /* podict.h */,
				2BDF4A6C166D5B680054E77F /* poparser.cpp */,
				2BDF4A6D166D5B680054E77F /* poparser.h */,
				2BDF4A6E166D5B680054E77F /* translationmanager.cpp */,
				2BDF4A6F166D5B680054E77F /* translationmanager.h */,
			);
			path = translation;
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
		2BDF45BE166D5AEC0054E77F /* ManaPlus */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 2BDF45F1166D5AEC0054E77F /* Build configuration list for PBXNativeTarget "ManaPlus" */;
			buildPhases = (
				2BDF45BB166D5AEC0054E77F /* Sources */,
				2BDF45BC166D5AEC0054E77F /* Frameworks */,
				2BDF45BD166D5AEC0054E77F /* Resources */,
				2BDF4D77166D7EA00054E77F /* CopyFiles */,
				2BDF4D86166D88400054E77F /* CopyFiles */,
				2BDF4DA7166D96290054E77F /* ShellScript */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = ManaPlus;
			productName = ManaPlus;
			productReference = 2BDF45BF166D5AEC0054E77F /* ManaPlus.app */;
			productType = "com.apple.product-type.application";
		};
		2BDF45DF166D5AEC0054E77F /* ManaPlusTests */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 2BDF45F4166D5AEC0054E77F /* Build configuration list for PBXNativeTarget "ManaPlusTests" */;
			buildPhases = (
				2BDF45DB166D5AEC0054E77F /* Sources */,
				2BDF45DC166D5AEC0054E77F /* Frameworks */,
				2BDF45DD166D5AEC0054E77F /* Resources */,
				2BDF45DE166D5AEC0054E77F /* ShellScript */,
			);
			buildRules = (
			);
			dependencies = (
				2BDF45E5166D5AEC0054E77F /* PBXTargetDependency */,
			);
			name = ManaPlusTests;
			productName = ManaPlusTests;
			productReference = 2BDF45E0166D5AEC0054E77F /* ManaPlusTests.octest */;
			productType = "com.apple.product-type.bundle";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		2BDF45B6166D5AEC0054E77F /* Project object */ = {
			isa = PBXProject;
			attributes = {
				LastUpgradeCheck = 0450;
				ORGANIZATIONNAME = evolonline;
			};
			buildConfigurationList = 2BDF45B9166D5AEC0054E77F /* Build configuration list for PBXProject "ManaPlus" */;
			compatibilityVersion = "Xcode 3.2";
			developmentRegion = English;
			hasScannedForEncodings = 0;
			knownRegions = (
				en,
			);
			mainGroup = 2BDF45B4166D5AEC0054E77F;
			productRefGroup = 2BDF45C0166D5AEC0054E77F /* Products */;
			projectDirPath = "";
			projectRoot = "";
			targets = (
				2BDF45BE166D5AEC0054E77F /* ManaPlus */,
				2BDF45DF166D5AEC0054E77F /* ManaPlusTests */,
			);
		};
/* End PBXProject section */

/* Begin PBXResourcesBuildPhase section */
		2BDF45BD166D5AEC0054E77F /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				2BDF45CE166D5AEC0054E77F /* InfoPlist.strings in Resources */,
				2BDF45D4166D5AEC0054E77F /* Credits.rtf in Resources */,
				2BDF45DA166D5AEC0054E77F /* MainMenu.xib in Resources */,
				2BDF4D6F166D6ADC0054E77F /* Mana.icns in Resources */,
				2BDF4D76166D783A0054E77F /* data in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		2BDF45DD166D5AEC0054E77F /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				2BDF45EB166D5AEC0054E77F /* InfoPlist.strings in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXResourcesBuildPhase section */

/* Begin PBXShellScriptBuildPhase section */
		2BDF45DE166D5AEC0054E77F /* ShellScript */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "# Run the unit tests in this test bundle.\n\"${SYSTEM_DEVELOPER_DIR}/Tools/RunUnitTests\"\n";
		};
		2BDF4DA7166D96290054E77F /* ShellScript */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "install_name_tool -change /opt/local/lib/libSDL_gfx.14.dylib @rpath/../SharedSupport/libSDL_gfx.14.dylib \"$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/MacOS/$PRODUCT_NAME\"\ninstall_name_tool -change /opt/local/lib/libpng15.15.dylib @rpath/../SharedSupport/libpng15.15.dylib \"$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/MacOS/$PRODUCT_NAME\"\ninstall_name_tool -change /opt/local/lib/libphysfs.1.dylib @rpath/../SharedSupport/libphysfs.2.0.2.dylib \"$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/MacOS/$PRODUCT_NAME\"\ninstall_name_tool -change /opt/local/lib/libintl.8.dylib @rpath/../SharedSupport/libintl.8.dylib \"$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/MacOS/$PRODUCT_NAME\"\ninstall_name_tool -change /opt/local/lib/libiconv.2.dylib @rpath/../SharedSupport/libiconv.2.dylib \"$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/MacOS/$PRODUCT_NAME\"\ninstall_name_tool -change /opt/local/lib/libfreetype.6.dylib @rpath/../SharedSupport/libfreetype.6.dylib \"$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/MacOS/$PRODUCT_NAME\"\ninstall_name_tool -change /opt/local/lib/libxml2.2.dylib @rpath/../SharedSupport/libxml2.2.dylib \"$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/MacOS/$PRODUCT_NAME\"\ninstall_name_tool -change /opt/local/lib/libz.1.dylib @rpath/../SharedSupport/libz.1.dylib \"$TARGET_BUILD_DIR/$PRODUCT_NAME.app/Contents/MacOS/$PRODUCT_NAME\"";
		};
/* End PBXShellScriptBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
		2BDF45BB166D5AEC0054E77F /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				2BDF45D7166D5AEC0054E77F /* AppDelegate.m in Sources */,
				2BDF4A76166D5B690054E77F /* actionmanager.cpp in Sources */,
				2BDF4A78166D5B690054E77F /* actor.cpp in Sources */,
				2BDF4A7A166D5B690054E77F /* actorsprite.cpp in Sources */,
				2BDF4A7C166D5B690054E77F /* actorspritemanager.cpp in Sources */,
				2BDF4A7E166D5B690054E77F /* animatedsprite.cpp in Sources */,
				2BDF4A80166D5B690054E77F /* animationdelayload.cpp in Sources */,
				2BDF4A82166D5B690054E77F /* animationparticle.cpp in Sources */,
				2BDF4A84166D5B690054E77F /* auctionmanager.cpp in Sources */,
				2BDF4A86166D5B690054E77F /* avatar.cpp in Sources */,
				2BDF4A88166D5B690054E77F /* being.cpp in Sources */,
				2BDF4A8A166D5B690054E77F /* channel.cpp in Sources */,
				2BDF4A8C166D5B690054E77F /* channelmanager.cpp in Sources */,
				2BDF4A8E166D5B690054E77F /* chatlogger.cpp in Sources */,
				2BDF4A90166D5B690054E77F /* client.cpp in Sources */,
				2BDF4A92166D5B690054E77F /* commandhandler.cpp in Sources */,
				2BDF4A94166D5B690054E77F /* commands.cpp in Sources */,
				2BDF4A96166D5B690054E77F /* compoundsprite.cpp in Sources */,
				2BDF4A98166D5B690054E77F /* configuration.cpp in Sources */,
				2BDF4A9A166D5B690054E77F /* debug_new.cpp in Sources */,
				2BDF4A9C166D5B690054E77F /* defaults.cpp in Sources */,
				2BDF4A9E166D5B690054E77F /* depricatedevent.cpp in Sources */,
				2BDF4AA0166D5B690054E77F /* dropshortcut.cpp in Sources */,
				2BDF4AA2166D5B690054E77F /* effectmanager.cpp in Sources */,
				2BDF4AA4166D5B690054E77F /* emoteshortcut.cpp in Sources */,
				2BDF4AAA166D5B690054E77F /* flooritem.cpp in Sources */,
				2BDF4AAC166D5B690054E77F /* game.cpp in Sources */,
				2BDF4AAE166D5B690054E77F /* graphics.cpp in Sources */,
				2BDF4AB0166D5B690054E77F /* graphicsmanager.cpp in Sources */,
				2BDF4AB2166D5B690054E77F /* graphicsvertexes.cpp in Sources */,
				2BDF4AB4166D5B690054E77F /* beingpopup.cpp in Sources */,
				2BDF4AB6166D5B690054E77F /* botcheckerwindow.cpp in Sources */,
				2BDF4AB8166D5B690054E77F /* buydialog.cpp in Sources */,
				2BDF4ABA166D5B690054E77F /* buyselldialog.cpp in Sources */,
				2BDF4ABC166D5B690054E77F /* changeemaildialog.cpp in Sources */,
				2BDF4ABE166D5B690054E77F /* changepassworddialog.cpp in Sources */,
				2BDF4AC0166D5B690054E77F /* charcreatedialog.cpp in Sources */,
				2BDF4AC2166D5B690054E77F /* charselectdialog.cpp in Sources */,
				2BDF4AC4166D5B690054E77F /* chatwindow.cpp in Sources */,
				2BDF4AC6166D5B690054E77F /* confirmdialog.cpp in Sources */,
				2BDF4AC8166D5B690054E77F /* connectiondialog.cpp in Sources */,
				2BDF4ACA166D5B690054E77F /* debugwindow.cpp in Sources */,
				2BDF4ACC166D5B690054E77F /* didyouknowwindow.cpp in Sources */,
				2BDF4ACE166D5B690054E77F /* editdialog.cpp in Sources */,
				2BDF4AD0166D5B690054E77F /* editserverdialog.cpp in Sources */,
				2BDF4AD2166D5B690054E77F /* equipmentwindow.cpp in Sources */,
				2BDF4AD4166D5B690054E77F /* focushandler.cpp in Sources */,
				2BDF4AD6166D5B690054E77F /* gui.cpp in Sources */,
				2BDF4AD8166D5B690054E77F /* helpwindow.cpp in Sources */,
				2BDF4ADA166D5B690054E77F /* inventorywindow.cpp in Sources */,
				2BDF4ADC166D5B690054E77F /* itemamountwindow.cpp in Sources */,
				2BDF4ADE166D5B690054E77F /* itempopup.cpp in Sources */,
				2BDF4AE0166D5B690054E77F /* killstats.cpp in Sources */,
				2BDF4AE2166D5B690054E77F /* logindialog.cpp in Sources */,
				2BDF4AE4166D5B690054E77F /* minimap.cpp in Sources */,
				2BDF4AE6166D5B690054E77F /* ministatuswindow.cpp in Sources */,
				2BDF4AE8166D5B690054E77F /* npcdialog.cpp in Sources */,
				2BDF4AEA166D5B690054E77F /* npcpostdialog.cpp in Sources */,
				2BDF4AEC166D5B690054E77F /* okdialog.cpp in Sources */,
				2BDF4AEE166D5B690054E77F /* outfitwindow.cpp in Sources */,
				2BDF4AF0166D5B690054E77F /* palette.cpp in Sources */,
				2BDF4AF2166D5B690054E77F /* popupmenu.cpp in Sources */,
				2BDF4AF4166D5B690054E77F /* questswindow.cpp in Sources */,
				2BDF4AF6166D5B690054E77F /* quitdialog.cpp in Sources */,
				2BDF4AF8166D5B690054E77F /* registerdialog.cpp in Sources */,
				2BDF4AFA166D5B690054E77F /* sdlfont.cpp in Sources */,
				2BDF4AFC166D5B690054E77F /* sdlinput.cpp in Sources */,
				2BDF4AFE166D5B690054E77F /* selldialog.cpp in Sources */,
				2BDF4B00166D5B690054E77F /* serverdialog.cpp in Sources */,
				2BDF4B02166D5B690054E77F /* setup.cpp in Sources */,
				2BDF4B04166D5B690054E77F /* setup_audio.cpp in Sources */,
				2BDF4B06166D5B690054E77F /* setup_chat.cpp in Sources */,
				2BDF4B08166D5B690054E77F /* setup_colors.cpp in Sources */,
				2BDF4B0A166D5B690054E77F /* setup_input.cpp in Sources */,
				2BDF4B0C166D5B690054E77F /* setup_joystick.cpp in Sources */,
				2BDF4B0E166D5B690054E77F /* setup_other.cpp in Sources */,
				2BDF4B10166D5B690054E77F /* setup_perfomance.cpp in Sources */,
				2BDF4B12166D5B690054E77F /* setup_players.cpp in Sources */,
				2BDF4B14166D5B690054E77F /* setup_relations.cpp in Sources */,
				2BDF4B16166D5B690054E77F /* setup_theme.cpp in Sources */,
				2BDF4B18166D5B690054E77F /* setup_video.cpp in Sources */,
				2BDF4B1A166D5B690054E77F /* setup_visual.cpp in Sources */,
				2BDF4B1C166D5B690054E77F /* shopwindow.cpp in Sources */,
				2BDF4B1E166D5B690054E77F /* shortcutwindow.cpp in Sources */,
				2BDF4B20166D5B690054E77F /* skilldialog.cpp in Sources */,
				2BDF4B22166D5B690054E77F /* socialwindow.cpp in Sources */,
				2BDF4B26166D5B690054E77F /* speechbubble.cpp in Sources */,
				2BDF4B28166D5B690054E77F /* spellpopup.cpp in Sources */,
				2BDF4B2A166D5B690054E77F /* statuspopup.cpp in Sources */,
				2BDF4B2C166D5B690054E77F /* statuswindow.cpp in Sources */,
				2BDF4B2E166D5B690054E77F /* textcommandeditor.cpp in Sources */,
				2BDF4B30166D5B690054E77F /* textdialog.cpp in Sources */,
				2BDF4B32166D5B690054E77F /* textpopup.cpp in Sources */,
				2BDF4B34166D5B690054E77F /* theme.cpp in Sources */,
				2BDF4B36166D5B690054E77F /* tradewindow.cpp in Sources */,
				2BDF4B38166D5B690054E77F /* unregisterdialog.cpp in Sources */,
				2BDF4B3A166D5B690054E77F /* updaterwindow.cpp in Sources */,
				2BDF4B3C166D5B690054E77F /* userpalette.cpp in Sources */,
				2BDF4B3E166D5B690054E77F /* viewport.cpp in Sources */,
				2BDF4B40166D5B690054E77F /* whoisonline.cpp in Sources */,
				2BDF4B42166D5B690054E77F /* avatarlistbox.cpp in Sources */,
				2BDF4B44166D5B690054E77F /* battletab.cpp in Sources */,
				2BDF4B46166D5B690054E77F /* browserbox.cpp in Sources */,
				2BDF4B4A166D5B690054E77F /* button.cpp in Sources */,
				2BDF4B4C166D5B690054E77F /* channeltab.cpp in Sources */,
				2BDF4B4E166D5B690054E77F /* chattab.cpp in Sources */,
				2BDF4B50166D5B690054E77F /* checkbox.cpp in Sources */,
				2BDF4B52166D5B690054E77F /* container.cpp in Sources */,
				2BDF4B54166D5B690054E77F /* desktop.cpp in Sources */,
				2BDF4B56166D5B690054E77F /* dropdown.cpp in Sources */,
				2BDF4B58166D5B690054E77F /* dropshortcutcontainer.cpp in Sources */,
				2BDF4B5A166D5B690054E77F /* emoteshortcutcontainer.cpp in Sources */,
				2BDF4B5C166D5B690054E77F /* extendedlistbox.cpp in Sources */,
				2BDF4B5E166D5B690054E77F /* extendednamesmodel.cpp in Sources */,
				2BDF4B60166D5B690054E77F /* flowcontainer.cpp in Sources */,
				2BDF4B62166D5B690054E77F /* guildchattab.cpp in Sources */,
				2BDF4B64166D5B690054E77F /* guitable.cpp in Sources */,
				2BDF4B66166D5B690054E77F /* horizontcontainer.cpp in Sources */,
				2BDF4B68166D5B690054E77F /* icon.cpp in Sources */,
				2BDF4B6A166D5B690054E77F /* inttextfield.cpp in Sources */,
				2BDF4B6C166D5B690054E77F /* itemcontainer.cpp in Sources */,
				2BDF4B6E166D5B690054E77F /* itemlinkhandler.cpp in Sources */,
				2BDF4B70166D5B690054E77F /* itemshortcutcontainer.cpp in Sources */,
				2BDF4B72166D5B690054E77F /* label.cpp in Sources */,
				2BDF4B74166D5B690054E77F /* layout.cpp in Sources */,
				2BDF4B76166D5B690054E77F /* layouthelper.cpp in Sources */,
				2BDF4B78166D5B690054E77F /* listbox.cpp in Sources */,
				2BDF4B7A166D5B690054E77F /* namesmodel.cpp in Sources */,
				2BDF4B7C166D5B690054E77F /* passwordfield.cpp in Sources */,
				2BDF4B7E166D5B690054E77F /* playerbox.cpp in Sources */,
				2BDF4B80166D5B690054E77F /* popup.cpp in Sources */,
				2BDF4B82166D5B690054E77F /* progressbar.cpp in Sources */,
				2BDF4B84166D5B690054E77F /* progressindicator.cpp in Sources */,
				2BDF4B86166D5B690054E77F /* radiobutton.cpp in Sources */,
				2BDF4B88166D5B690054E77F /* radiogroup.cpp in Sources */,
				2BDF4B8A166D5B690054E77F /* scrollarea.cpp in Sources */,
				2BDF4B8C166D5B690054E77F /* setupitem.cpp in Sources */,
				2BDF4B8E166D5B690054E77F /* setuptab.cpp in Sources */,
				2BDF4B90166D5B690054E77F /* setuptabscroll.cpp in Sources */,
				2BDF4B92166D5B690054E77F /* shopitems.cpp in Sources */,
				2BDF4B94166D5B690054E77F /* shoplistbox.cpp in Sources */,
				2BDF4B96166D5B690054E77F /* shortcutcontainer.cpp in Sources */,
				2BDF4B98166D5B690054E77F /* slider.cpp in Sources */,
				2BDF4B9A166D5B690054E77F /* sliderlist.cpp in Sources */,
				2BDF4B9C166D5B690054E77F /* spellshortcutcontainer.cpp in Sources */,
				2BDF4B9E166D5B690054E77F /* tab.cpp in Sources */,
				2BDF4BA0166D5B690054E77F /* tabbedarea.cpp in Sources */,
				2BDF4BA2166D5B690054E77F /* tablemodel.cpp in Sources */,
				2BDF4BA4166D5B690054E77F /* tabstrip.cpp in Sources */,
				2BDF4BA6166D5B690054E77F /* textbox.cpp in Sources */,
				2BDF4BA8166D5B690054E77F /* textfield.cpp in Sources */,
				2BDF4BAA166D5B690054E77F /* textpreview.cpp in Sources */,
				2BDF4BAC166D5B690054E77F /* tradetab.cpp in Sources */,
				2BDF4BAE166D5B690054E77F /* vertcontainer.cpp in Sources */,
				2BDF4BB0166D5B690054E77F /* whispertab.cpp in Sources */,
				2BDF4BB2166D5B690054E77F /* widgetgroup.cpp in Sources */,
				2BDF4BB4166D5B690054E77F /* window.cpp in Sources */,
				2BDF4BB6166D5B690054E77F /* windowcontainer.cpp in Sources */,
				2BDF4BB8166D5B690054E77F /* windowmenu.cpp in Sources */,
				2BDF4BBA166D5B690054E77F /* worldselectdialog.cpp in Sources */,
				2BDF4BBC166D5B690054E77F /* actionevent.cpp in Sources */,
				2BDF4BBE166D5B690054E77F /* basiccontainer.cpp in Sources */,
				2BDF4BC0166D5B690054E77F /* cliprectangle.cpp in Sources */,
				2BDF4BC2166D5B690054E77F /* color.cpp in Sources */,
				2BDF4BC4166D5B690054E77F /* event.cpp in Sources */,
				2BDF4BC6166D5B690054E77F /* exception.cpp in Sources */,
				2BDF4BC8166D5B690054E77F /* focushandler.cpp in Sources */,
				2BDF4BCA166D5B690054E77F /* font.cpp in Sources */,
				2BDF4BCC166D5B690054E77F /* graphics.cpp in Sources */,
				2BDF4BCE166D5B690054E77F /* gui.cpp in Sources */,
				2BDF4BD0166D5B690054E77F /* image.cpp in Sources */,
				2BDF4BD2166D5B690054E77F /* inputevent.cpp in Sources */,
				2BDF4BD4166D5B690054E77F /* key.cpp in Sources */,
				2BDF4BD6166D5B690054E77F /* keyevent.cpp in Sources */,
				2BDF4BD8166D5B690054E77F /* keyinput.cpp in Sources */,
				2BDF4BDA166D5B690054E77F /* mouseevent.cpp in Sources */,
				2BDF4BDC166D5B690054E77F /* mouseinput.cpp in Sources */,
				2BDF4BDE166D5B690054E77F /* rectangle.cpp in Sources */,
				2BDF4BE0166D5B690054E77F /* sdlgraphics.cpp in Sources */,
				2BDF4BE2166D5B690054E77F /* selectionevent.cpp in Sources */,
				2BDF4BE4166D5B690054E77F /* widget.cpp in Sources */,
				2BDF4BE6166D5B690054E77F /* button.cpp in Sources */,
				2BDF4BE8166D5B690054E77F /* checkbox.cpp in Sources */,
				2BDF4BEA166D5B690054E77F /* container.cpp in Sources */,
				2BDF4BEC166D5B690054E77F /* dropdown.cpp in Sources */,
				2BDF4BEE166D5B690054E77F /* label.cpp in Sources */,
				2BDF4BF0166D5B690054E77F /* listbox.cpp in Sources */,
				2BDF4BF2166D5B690054E77F /* radiobutton.cpp in Sources */,
				2BDF4BF4166D5B690054E77F /* scrollarea.cpp in Sources */,
				2BDF4BF6166D5B690054E77F /* slider.cpp in Sources */,
				2BDF4BF8166D5B690054E77F /* textbox.cpp in Sources */,
				2BDF4BFA166D5B690054E77F /* textfield.cpp in Sources */,
				2BDF4BFC166D5B690054E77F /* window.cpp in Sources */,
				2BDF4BFE166D5B690054E77F /* guild.cpp in Sources */,
				2BDF4C00166D5B690054E77F /* guildmanager.cpp in Sources */,
				2BDF4C02166D5B690054E77F /* imageparticle.cpp in Sources */,
				2BDF4C04166D5B690054E77F /* imagesprite.cpp in Sources */,
				2BDF4C06166D5B690054E77F /* inputevent.cpp in Sources */,
				2BDF4C08166D5B690054E77F /* inputmanager.cpp in Sources */,
				2BDF4C0A166D5B690054E77F /* inventory.cpp in Sources */,
				2BDF4C0C166D5B690054E77F /* item.cpp in Sources */,
				2BDF4C0E166D5B690054E77F /* itemshortcut.cpp in Sources */,
				2BDF4C10166D5B690054E77F /* joystick.cpp in Sources */,
				2BDF4C12166D5B690054E77F /* keyboardconfig.cpp in Sources */,
				2BDF4C14166D5B690054E77F /* keyevent.cpp in Sources */,
				2BDF4C16166D5B690054E77F /* keyinput.cpp in Sources */,
				2BDF4C18166D5B690054E77F /* listener.cpp in Sources */,
				2BDF4C1A166D5B690054E77F /* localplayer.cpp in Sources */,
				2BDF4C1C166D5B690054E77F /* logger.cpp in Sources */,
				2BDF4C1E166D5B690054E77F /* main.cpp in Sources */,
				2BDF4C20166D5B690054E77F /* map.cpp in Sources */,
				2BDF4C22166D5B690054E77F /* maplayer.cpp in Sources */,
				2BDF4C24166D5B690054E77F /* mgl.cpp in Sources */,
				2BDF4C26166D5B690054E77F /* mobileopenglgraphics.cpp in Sources */,
				2BDF4C28166D5B690054E77F /* mouseinput.cpp in Sources */,
				2BDF4C2A166D5B690054E77F /* mumblemanager.cpp in Sources */,
				2BDF4C2C166D5B690054E77F /* charhandler.cpp in Sources */,
				2BDF4C2E166D5B690054E77F /* download.cpp in Sources */,
				2BDF4C30166D5B690054E77F /* adminhandler.cpp in Sources */,
				2BDF4C32166D5B690054E77F /* beinghandler.cpp in Sources */,
				2BDF4C34166D5B690054E77F /* buysellhandler.cpp in Sources */,
				2BDF4C36166D5B690054E77F /* charserverhandler.cpp in Sources */,
				2BDF4C38166D5B690054E77F /* chathandler.cpp in Sources */,
				2BDF4C3A166D5B690054E77F /* gamehandler.cpp in Sources */,
				2BDF4C3C166D5B690054E77F /* guildtab.cpp in Sources */,
				2BDF4C3E166D5B690054E77F /* partytab.cpp in Sources */,
				2BDF4C40166D5B690054E77F /* guildhandler.cpp in Sources */,
				2BDF4C42166D5B690054E77F /* inventoryhandler.cpp in Sources */,
				2BDF4C44166D5B690054E77F /* itemhandler.cpp in Sources */,
				2BDF4C46166D5B690054E77F /* loginhandler.cpp in Sources */,
				2BDF4C48166D5B690054E77F /* network.cpp in Sources */,
				2BDF4C4A166D5B690054E77F /* npchandler.cpp in Sources */,
				2BDF4C4C166D5B690054E77F /* partyhandler.cpp in Sources */,
				2BDF4C4E166D5B690054E77F /* playerhandler.cpp in Sources */,
				2BDF4C50166D5B690054E77F /* specialhandler.cpp in Sources */,
				2BDF4C52166D5B690054E77F /* tradehandler.cpp in Sources */,
				2BDF4C54166D5B690054E77F /* adminhandler.cpp in Sources */,
				2BDF4C56166D5B690054E77F /* beinghandler.cpp in Sources */,
				2BDF4C58166D5B690054E77F /* buysellhandler.cpp in Sources */,
				2BDF4C5A166D5B690054E77F /* charserverhandler.cpp in Sources */,
				2BDF4C5C166D5B690054E77F /* chathandler.cpp in Sources */,
				2BDF4C5E166D5B690054E77F /* gamehandler.cpp in Sources */,
				2BDF4C60166D5B690054E77F /* generalhandler.cpp in Sources */,
				2BDF4C62166D5B690054E77F /* guildtab.cpp in Sources */,
				2BDF4C64166D5B690054E77F /* partytab.cpp in Sources */,
				2BDF4C66166D5B690054E77F /* guildhandler.cpp in Sources */,
				2BDF4C68166D5B690054E77F /* inventoryhandler.cpp in Sources */,
				2BDF4C6A166D5B690054E77F /* itemhandler.cpp in Sources */,
				2BDF4C6C166D5B690054E77F /* loginhandler.cpp in Sources */,
				2BDF4C6E166D5B690054E77F /* messagehandler.cpp in Sources */,
				2BDF4C70166D5B690054E77F /* messagein.cpp in Sources */,
				2BDF4C72166D5B690054E77F /* messageout.cpp in Sources */,
				2BDF4C74166D5B690054E77F /* network.cpp in Sources */,
				2BDF4C76166D5B690054E77F /* npchandler.cpp in Sources */,
				2BDF4C78166D5B690054E77F /* partyhandler.cpp in Sources */,
				2BDF4C7A166D5B690054E77F /* playerhandler.cpp in Sources */,
				2BDF4C7C166D5B690054E77F /* specialhandler.cpp in Sources */,
				2BDF4C7E166D5B690054E77F /* tradehandler.cpp in Sources */,
				2BDF4C80166D5B690054E77F /* messagein.cpp in Sources */,
				2BDF4C82166D5B690054E77F /* messageout.cpp in Sources */,
				2BDF4C84166D5B690054E77F /* net.cpp in Sources */,
				2BDF4C86166D5B690054E77F /* packetcounters.cpp in Sources */,
				2BDF4C88166D5B690054E77F /* adminhandler.cpp in Sources */,
				2BDF4C8A166D5B690054E77F /* beinghandler.cpp in Sources */,
				2BDF4C8C166D5B690054E77F /* buysellhandler.cpp in Sources */,
				2BDF4C8E166D5B690054E77F /* charserverhandler.cpp in Sources */,
				2BDF4C90166D5B690054E77F /* chathandler.cpp in Sources */,
				2BDF4C92166D5B690054E77F /* gamehandler.cpp in Sources */,
				2BDF4C94166D5B690054E77F /* generalhandler.cpp in Sources */,
				2BDF4C96166D5B690054E77F /* guildtab.cpp in Sources */,
				2BDF4C98166D5B690054E77F /* partytab.cpp in Sources */,
				2BDF4C9A166D5B690054E77F /* guildhandler.cpp in Sources */,
				2BDF4C9C166D5B690054E77F /* inventoryhandler.cpp in Sources */,
				2BDF4C9E166D5B690054E77F /* itemhandler.cpp in Sources */,
				2BDF4CA0166D5B690054E77F /* loginhandler.cpp in Sources */,
				2BDF4CA2166D5B690054E77F /* messagehandler.cpp in Sources */,
				2BDF4CA4166D5B690054E77F /* messagein.cpp in Sources */,
				2BDF4CA6166D5B690054E77F /* messageout.cpp in Sources */,
				2BDF4CA8166D5B690054E77F /* network.cpp in Sources */,
				2BDF4CAA166D5B690054E77F /* npchandler.cpp in Sources */,
				2BDF4CAC166D5B690054E77F /* partyhandler.cpp in Sources */,
				2BDF4CAE166D5B690054E77F /* playerhandler.cpp in Sources */,
				2BDF4CB0166D5B690054E77F /* questhandler.cpp in Sources */,
				2BDF4CB2166D5B690054E77F /* specialhandler.cpp in Sources */,
				2BDF4CB4166D5B690054E77F /* tradehandler.cpp in Sources */,
				2BDF4CB6166D5B690054E77F /* normalopenglgraphics.cpp in Sources */,
				2BDF4CB8166D5B690054E77F /* particle.cpp in Sources */,
				2BDF4CBA166D5B690054E77F /* particlecontainer.cpp in Sources */,
				2BDF4CBC166D5B690054E77F /* particleemitter.cpp in Sources */,
				2BDF4CBE166D5B690054E77F /* party.cpp in Sources */,
				2BDF4CC0166D5B690054E77F /* playerinfo.cpp in Sources */,
				2BDF4CC2166D5B690054E77F /* playerrelations.cpp in Sources */,
				2BDF4CC4166D5B690054E77F /* position.cpp in Sources */,
				2BDF4CC6166D5B690054E77F /* action.cpp in Sources */,
				2BDF4CC8166D5B690054E77F /* ambientlayer.cpp in Sources */,
				2BDF4CCA166D5B690054E77F /* animation.cpp in Sources */,
				2BDF4CCC166D5B690054E77F /* atlasmanager.cpp in Sources */,
				2BDF4CCE166D5B690054E77F /* beinginfo.cpp in Sources */,
				2BDF4CD0166D5B690054E77F /* chardb.cpp in Sources */,
				2BDF4CD2166D5B690054E77F /* colordb.cpp in Sources */,
				2BDF4CD4166D5B690054E77F /* cursor.cpp in Sources */,
				2BDF4CD6166D5B690054E77F /* dye.cpp in Sources */,
				2BDF4CD8166D5B690054E77F /* emotedb.cpp in Sources */,
				2BDF4CDA166D5B690054E77F /* image.cpp in Sources */,
				2BDF4CDC166D5B690054E77F /* imagehelper.cpp in Sources */,
				2BDF4CDE166D5B690054E77F /* imageset.cpp in Sources */,
				2BDF4CE0166D5B690054E77F /* imagewriter.cpp in Sources */,
				2BDF4CE2166D5B690054E77F /* itemdb.cpp in Sources */,
				2BDF4CE4166D5B690054E77F /* iteminfo.cpp in Sources */,
				2BDF4CE6166D5B690054E77F /* mapdb.cpp in Sources */,
				2BDF4CE8166D5B690054E77F /* mapreader.cpp in Sources */,
				2BDF4CEA166D5B690054E77F /* monsterdb.cpp in Sources */,
				2BDF4CEC166D5B690054E77F /* npcdb.cpp in Sources */,
				2BDF4CEE166D5B690054E77F /* openglimagehelper.cpp in Sources */,
				2BDF4CF0166D5B690054E77F /* resource.cpp in Sources */,
				2BDF4CF2166D5B690054E77F /* resourcemanager.cpp in Sources */,
				2BDF4CF4166D5B690054E77F /* sdlimagehelper.cpp in Sources */,
				2BDF4CF6166D5B690054E77F /* sdlmusic.cpp in Sources */,
				2BDF4CF8166D5B690054E77F /* soundeffect.cpp in Sources */,
				2BDF4CFA166D5B690054E77F /* specialdb.cpp in Sources */,
				2BDF4CFC166D5B690054E77F /* spritedef.cpp in Sources */,
				2BDF4CFE166D5B690054E77F /* subimage.cpp in Sources */,
				2BDF4D00166D5B690054E77F /* wallpaper.cpp in Sources */,
				2BDF4D02166D5B690054E77F /* rotationalparticle.cpp in Sources */,
				2BDF4D04166D5B690054E77F /* safeopenglgraphics.cpp in Sources */,
				2BDF4D06166D5B690054E77F /* SDLMain.m in Sources */,
				2BDF4D08166D5B690054E77F /* shopitem.cpp in Sources */,
				2BDF4D0A166D5B690054E77F /* simpleanimation.cpp in Sources */,
				2BDF4D0C166D5B690054E77F /* soundmanager.cpp in Sources */,
				2BDF4D0E166D5B690054E77F /* spellmanager.cpp in Sources */,
				2BDF4D10166D5B690054E77F /* spellshortcut.cpp in Sources */,
				2BDF4D12166D5B690054E77F /* statuseffect.cpp in Sources */,
				2BDF4D14166D5B690054E77F /* testlauncher.cpp in Sources */,
				2BDF4D16166D5B690054E77F /* testmain.cpp in Sources */,
				2BDF4D18166D5B690054E77F /* text.cpp in Sources */,
				2BDF4D1A166D5B690054E77F /* textcommand.cpp in Sources */,
				2BDF4D1C166D5B690054E77F /* textmanager.cpp in Sources */,
				2BDF4D1E166D5B690054E77F /* textparticle.cpp in Sources */,
				2BDF4D20166D5B690054E77F /* touchactions.cpp in Sources */,
				2BDF4D22166D5B690054E77F /* touchmanager.cpp in Sources */,
				2BDF4D24166D5B690054E77F /* units.cpp in Sources */,
				2BDF4D26166D5B690054E77F /* base64.cpp in Sources */,
				2BDF4D28166D5B690054E77F /* checkutils.cpp in Sources */,
				2BDF4D2A166D5B690054E77F /* copynpaste.cpp in Sources */,
				2BDF4D2C166D5B690054E77F /* langs.cpp in Sources */,
				2BDF4D2E166D5B690054E77F /* mkdir.cpp in Sources */,
				2BDF4D30166D5B690054E77F /* paths.cpp in Sources */,
				2BDF4D32166D5B690054E77F /* perfomance.cpp in Sources */,
				2BDF4D34166D5B690054E77F /* physfsrwops.cpp in Sources */,
				2BDF4D36166D5B690054E77F /* process.cpp in Sources */,
				2BDF4D3A166D5B690054E77F /* specialfolder.cpp in Sources */,
				2BDF4D3C166D5B690054E77F /* stringutils.cpp in Sources */,
				2BDF4D40166D5B690054E77F /* podict.cpp in Sources */,
				2BDF4D42166D5B690054E77F /* poparser.cpp in Sources */,
				2BDF4D44166D5B690054E77F /* translationmanager.cpp in Sources */,
				2BDF4D46166D5B690054E77F /* xml.cpp in Sources */,
				2BDF4D48166D5B690054E77F /* vector.cpp in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		2BDF45DB166D5AEC0054E77F /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				2BDF45EE166D5AEC0054E77F /* ManaPlusTests.m in Sources */,
				2BDF4A77166D5B690054E77F /* actionmanager.cpp in Sources */,
				2BDF4A79166D5B690054E77F /* actor.cpp in Sources */,
				2BDF4A7B166D5B690054E77F /* actorsprite.cpp in Sources */,
				2BDF4A7D166D5B690054E77F /* actorspritemanager.cpp in Sources */,
				2BDF4A7F166D5B690054E77F /* animatedsprite.cpp in Sources */,
				2BDF4A81166D5B690054E77F /* animationdelayload.cpp in Sources */,
				2BDF4A83166D5B690054E77F /* animationparticle.cpp in Sources */,
				2BDF4A85166D5B690054E77F /* auctionmanager.cpp in Sources */,
				2BDF4A87166D5B690054E77F /* avatar.cpp in Sources */,
				2BDF4A89166D5B690054E77F /* being.cpp in Sources */,
				2BDF4A8B166D5B690054E77F /* channel.cpp in Sources */,
				2BDF4A8D166D5B690054E77F /* channelmanager.cpp in Sources */,
				2BDF4A8F166D5B690054E77F /* chatlogger.cpp in Sources */,
				2BDF4A91166D5B690054E77F /* client.cpp in Sources */,
				2BDF4A93166D5B690054E77F /* commandhandler.cpp in Sources */,
				2BDF4A95166D5B690054E77F /* commands.cpp in Sources */,
				2BDF4A97166D5B690054E77F /* compoundsprite.cpp in Sources */,
				2BDF4A99166D5B690054E77F /* configuration.cpp in Sources */,
				2BDF4A9B166D5B690054E77F /* debug_new.cpp in Sources */,
				2BDF4A9D166D5B690054E77F /* defaults.cpp in Sources */,
				2BDF4A9F166D5B690054E77F /* depricatedevent.cpp in Sources */,
				2BDF4AA1166D5B690054E77F /* dropshortcut.cpp in Sources */,
				2BDF4AA3166D5B690054E77F /* effectmanager.cpp in Sources */,
				2BDF4AA5166D5B690054E77F /* emoteshortcut.cpp in Sources */,
				2BDF4AAB166D5B690054E77F /* flooritem.cpp in Sources */,
				2BDF4AAD166D5B690054E77F /* game.cpp in Sources */,
				2BDF4AAF166D5B690054E77F /* graphics.cpp in Sources */,
				2BDF4AB1166D5B690054E77F /* graphicsmanager.cpp in Sources */,
				2BDF4AB3166D5B690054E77F /* graphicsvertexes.cpp in Sources */,
				2BDF4AB5166D5B690054E77F /* beingpopup.cpp in Sources */,
				2BDF4AB7166D5B690054E77F /* botcheckerwindow.cpp in Sources */,
				2BDF4AB9166D5B690054E77F /* buydialog.cpp in Sources */,
				2BDF4ABB166D5B690054E77F /* buyselldialog.cpp in Sources */,
				2BDF4ABD166D5B690054E77F /* changeemaildialog.cpp in Sources */,
				2BDF4ABF166D5B690054E77F /* changepassworddialog.cpp in Sources */,
				2BDF4AC1166D5B690054E77F /* charcreatedialog.cpp in Sources */,
				2BDF4AC3166D5B690054E77F /* charselectdialog.cpp in Sources */,
				2BDF4AC5166D5B690054E77F /* chatwindow.cpp in Sources */,
				2BDF4AC7166D5B690054E77F /* confirmdialog.cpp in Sources */,
				2BDF4AC9166D5B690054E77F /* connectiondialog.cpp in Sources */,
				2BDF4ACB166D5B690054E77F /* debugwindow.cpp in Sources */,
				2BDF4ACD166D5B690054E77F /* didyouknowwindow.cpp in Sources */,
				2BDF4ACF166D5B690054E77F /* editdialog.cpp in Sources */,
				2BDF4AD1166D5B690054E77F /* editserverdialog.cpp in Sources */,
				2BDF4AD3166D5B690054E77F /* equipmentwindow.cpp in Sources */,
				2BDF4AD5166D5B690054E77F /* focushandler.cpp in Sources */,
				2BDF4AD7166D5B690054E77F /* gui.cpp in Sources */,
				2BDF4AD9166D5B690054E77F /* helpwindow.cpp in Sources */,
				2BDF4ADB166D5B690054E77F /* inventorywindow.cpp in Sources */,
				2BDF4ADD166D5B690054E77F /* itemamountwindow.cpp in Sources */,
				2BDF4ADF166D5B690054E77F /* itempopup.cpp in Sources */,
				2BDF4AE1166D5B690054E77F /* killstats.cpp in Sources */,
				2BDF4AE3166D5B690054E77F /* logindialog.cpp in Sources */,
				2BDF4AE5166D5B690054E77F /* minimap.cpp in Sources */,
				2BDF4AE7166D5B690054E77F /* ministatuswindow.cpp in Sources */,
				2BDF4AE9166D5B690054E77F /* npcdialog.cpp in Sources */,
				2BDF4AEB166D5B690054E77F /* npcpostdialog.cpp in Sources */,
				2BDF4AED166D5B690054E77F /* okdialog.cpp in Sources */,
				2BDF4AEF166D5B690054E77F /* outfitwindow.cpp in Sources */,
				2BDF4AF1166D5B690054E77F /* palette.cpp in Sources */,
				2BDF4AF3166D5B690054E77F /* popupmenu.cpp in Sources */,
				2BDF4AF5166D5B690054E77F /* questswindow.cpp in Sources */,
				2BDF4AF7166D5B690054E77F /* quitdialog.cpp in Sources */,
				2BDF4AF9166D5B690054E77F /* registerdialog.cpp in Sources */,
				2BDF4AFB166D5B690054E77F /* sdlfont.cpp in Sources */,
				2BDF4AFD166D5B690054E77F /* sdlinput.cpp in Sources */,
				2BDF4AFF166D5B690054E77F /* selldialog.cpp in Sources */,
				2BDF4B01166D5B690054E77F /* serverdialog.cpp in Sources */,
				2BDF4B03166D5B690054E77F /* setup.cpp in Sources */,
				2BDF4B05166D5B690054E77F /* setup_audio.cpp in Sources */,
				2BDF4B07166D5B690054E77F /* setup_chat.cpp in Sources */,
				2BDF4B09166D5B690054E77F /* setup_colors.cpp in Sources */,
				2BDF4B0B166D5B690054E77F /* setup_input.cpp in Sources */,
				2BDF4B0D166D5B690054E77F /* setup_joystick.cpp in Sources */,
				2BDF4B0F166D5B690054E77F /* setup_other.cpp in Sources */,
				2BDF4B11166D5B690054E77F /* setup_perfomance.cpp in Sources */,
				2BDF4B13166D5B690054E77F /* setup_players.cpp in Sources */,
				2BDF4B15166D5B690054E77F /* setup_relations.cpp in Sources */,
				2BDF4B17166D5B690054E77F /* setup_theme.cpp in Sources */,
				2BDF4B19166D5B690054E77F /* setup_video.cpp in Sources */,
				2BDF4B1B166D5B690054E77F /* setup_visual.cpp in Sources */,
				2BDF4B1D166D5B690054E77F /* shopwindow.cpp in Sources */,
				2BDF4B1F166D5B690054E77F /* shortcutwindow.cpp in Sources */,
				2BDF4B21166D5B690054E77F /* skilldialog.cpp in Sources */,
				2BDF4B23166D5B690054E77F /* socialwindow.cpp in Sources */,
				2BDF4B27166D5B690054E77F /* speechbubble.cpp in Sources */,
				2BDF4B29166D5B690054E77F /* spellpopup.cpp in Sources */,
				2BDF4B2B166D5B690054E77F /* statuspopup.cpp in Sources */,
				2BDF4B2D166D5B690054E77F /* statuswindow.cpp in Sources */,
				2BDF4B2F166D5B690054E77F /* textcommandeditor.cpp in Sources */,
				2BDF4B31166D5B690054E77F /* textdialog.cpp in Sources */,
				2BDF4B33166D5B690054E77F /* textpopup.cpp in Sources */,
				2BDF4B35166D5B690054E77F /* theme.cpp in Sources */,
				2BDF4B37166D5B690054E77F /* tradewindow.cpp in Sources */,
				2BDF4B39166D5B690054E77F /* unregisterdialog.cpp in Sources */,
				2BDF4B3B166D5B690054E77F /* updaterwindow.cpp in Sources */,
				2BDF4B3D166D5B690054E77F /* userpalette.cpp in Sources */,
				2BDF4B3F166D5B690054E77F /* viewport.cpp in Sources */,
				2BDF4B41166D5B690054E77F /* whoisonline.cpp in Sources */,
				2BDF4B43166D5B690054E77F /* avatarlistbox.cpp in Sources */,
				2BDF4B45166D5B690054E77F /* battletab.cpp in Sources */,
				2BDF4B47166D5B690054E77F /* browserbox.cpp in Sources */,
				2BDF4B4B166D5B690054E77F /* button.cpp in Sources */,
				2BDF4B4D166D5B690054E77F /* channeltab.cpp in Sources */,
				2BDF4B4F166D5B690054E77F /* chattab.cpp in Sources */,
				2BDF4B51166D5B690054E77F /* checkbox.cpp in Sources */,
				2BDF4B53166D5B690054E77F /* container.cpp in Sources */,
				2BDF4B55166D5B690054E77F /* desktop.cpp in Sources */,
				2BDF4B57166D5B690054E77F /* dropdown.cpp in Sources */,
				2BDF4B59166D5B690054E77F /* dropshortcutcontainer.cpp in Sources */,
				2BDF4B5B166D5B690054E77F /* emoteshortcutcontainer.cpp in Sources */,
				2BDF4B5D166D5B690054E77F /* extendedlistbox.cpp in Sources */,
				2BDF4B5F166D5B690054E77F /* extendednamesmodel.cpp in Sources */,
				2BDF4B61166D5B690054E77F /* flowcontainer.cpp in Sources */,
				2BDF4B63166D5B690054E77F /* guildchattab.cpp in Sources */,
				2BDF4B65166D5B690054E77F /* guitable.cpp in Sources */,
				2BDF4B67166D5B690054E77F /* horizontcontainer.cpp in Sources */,
				2BDF4B69166D5B690054E77F /* icon.cpp in Sources */,
				2BDF4B6B166D5B690054E77F /* inttextfield.cpp in Sources */,
				2BDF4B6D166D5B690054E77F /* itemcontainer.cpp in Sources */,
				2BDF4B6F166D5B690054E77F /* itemlinkhandler.cpp in Sources */,
				2BDF4B71166D5B690054E77F /* itemshortcutcontainer.cpp in Sources */,
				2BDF4B73166D5B690054E77F /* label.cpp in Sources */,
				2BDF4B75166D5B690054E77F /* layout.cpp in Sources */,
				2BDF4B77166D5B690054E77F /* layouthelper.cpp in Sources */,
				2BDF4B79166D5B690054E77F /* listbox.cpp in Sources */,
				2BDF4B7B166D5B690054E77F /* namesmodel.cpp in Sources */,
				2BDF4B7D166D5B690054E77F /* passwordfield.cpp in Sources */,
				2BDF4B7F166D5B690054E77F /* playerbox.cpp in Sources */,
				2BDF4B81166D5B690054E77F /* popup.cpp in Sources */,
				2BDF4B83166D5B690054E77F /* progressbar.cpp in Sources */,
				2BDF4B85166D5B690054E77F /* progressindicator.cpp in Sources */,
				2BDF4B87166D5B690054E77F /* radiobutton.cpp in Sources */,
				2BDF4B89166D5B690054E77F /* radiogroup.cpp in Sources */,
				2BDF4B8B166D5B690054E77F /* scrollarea.cpp in Sources */,
				2BDF4B8D166D5B690054E77F /* setupitem.cpp in Sources */,
				2BDF4B8F166D5B690054E77F /* setuptab.cpp in Sources */,
				2BDF4B91166D5B690054E77F /* setuptabscroll.cpp in Sources */,
				2BDF4B93166D5B690054E77F /* shopitems.cpp in Sources */,
				2BDF4B95166D5B690054E77F /* shoplistbox.cpp in Sources */,
				2BDF4B97166D5B690054E77F /* shortcutcontainer.cpp in Sources */,
				2BDF4B99166D5B690054E77F /* slider.cpp in Sources */,
				2BDF4B9B166D5B690054E77F /* sliderlist.cpp in Sources */,
				2BDF4B9D166D5B690054E77F /* spellshortcutcontainer.cpp in Sources */,
				2BDF4B9F166D5B690054E77F /* tab.cpp in Sources */,
				2BDF4BA1166D5B690054E77F /* tabbedarea.cpp in Sources */,
				2BDF4BA3166D5B690054E77F /* tablemodel.cpp in Sources */,
				2BDF4BA5166D5B690054E77F /* tabstrip.cpp in Sources */,
				2BDF4BA7166D5B690054E77F /* textbox.cpp in Sources */,
				2BDF4BA9166D5B690054E77F /* textfield.cpp in Sources */,
				2BDF4BAB166D5B690054E77F /* textpreview.cpp in Sources */,
				2BDF4BAD166D5B690054E77F /* tradetab.cpp in Sources */,
				2BDF4BAF166D5B690054E77F /* vertcontainer.cpp in Sources */,
				2BDF4BB1166D5B690054E77F /* whispertab.cpp in Sources */,
				2BDF4BB3166D5B690054E77F /* widgetgroup.cpp in Sources */,
				2BDF4BB5166D5B690054E77F /* window.cpp in Sources */,
				2BDF4BB7166D5B690054E77F /* windowcontainer.cpp in Sources */,
				2BDF4BB9166D5B690054E77F /* windowmenu.cpp in Sources */,
				2BDF4BBB166D5B690054E77F /* worldselectdialog.cpp in Sources */,
				2BDF4BBD166D5B690054E77F /* actionevent.cpp in Sources */,
				2BDF4BBF166D5B690054E77F /* basiccontainer.cpp in Sources */,
				2BDF4BC1166D5B690054E77F /* cliprectangle.cpp in Sources */,
				2BDF4BC3166D5B690054E77F /* color.cpp in Sources */,
				2BDF4BC5166D5B690054E77F /* event.cpp in Sources */,
				2BDF4BC7166D5B690054E77F /* exception.cpp in Sources */,
				2BDF4BC9166D5B690054E77F /* focushandler.cpp in Sources */,
				2BDF4BCB166D5B690054E77F /* font.cpp in Sources */,
				2BDF4BCD166D5B690054E77F /* graphics.cpp in Sources */,
				2BDF4BCF166D5B690054E77F /* gui.cpp in Sources */,
				2BDF4BD1166D5B690054E77F /* image.cpp in Sources */,
				2BDF4BD3166D5B690054E77F /* inputevent.cpp in Sources */,
				2BDF4BD5166D5B690054E77F /* key.cpp in Sources */,
				2BDF4BD7166D5B690054E77F /* keyevent.cpp in Sources */,
				2BDF4BD9166D5B690054E77F /* keyinput.cpp in Sources */,
				2BDF4BDB166D5B690054E77F /* mouseevent.cpp in Sources */,
				2BDF4BDD166D5B690054E77F /* mouseinput.cpp in Sources */,
				2BDF4BDF166D5B690054E77F /* rectangle.cpp in Sources */,
				2BDF4BE1166D5B690054E77F /* sdlgraphics.cpp in Sources */,
				2BDF4BE3166D5B690054E77F /* selectionevent.cpp in Sources */,
				2BDF4BE5166D5B690054E77F /* widget.cpp in Sources */,
				2BDF4BE7166D5B690054E77F /* button.cpp in Sources */,
				2BDF4BE9166D5B690054E77F /* checkbox.cpp in Sources */,
				2BDF4BEB166D5B690054E77F /* container.cpp in Sources */,
				2BDF4BED166D5B690054E77F /* dropdown.cpp in Sources */,
				2BDF4BEF166D5B690054E77F /* label.cpp in Sources */,
				2BDF4BF1166D5B690054E77F /* listbox.cpp in Sources */,
				2BDF4BF3166D5B690054E77F /* radiobutton.cpp in Sources */,
				2BDF4BF5166D5B690054E77F /* scrollarea.cpp in Sources */,
				2BDF4BF7166D5B690054E77F /* slider.cpp in Sources */,
				2BDF4BF9166D5B690054E77F /* textbox.cpp in Sources */,
				2BDF4BFB166D5B690054E77F /* textfield.cpp in Sources */,
				2BDF4BFD166D5B690054E77F /* window.cpp in Sources */,
				2BDF4BFF166D5B690054E77F /* guild.cpp in Sources */,
				2BDF4C01166D5B690054E77F /* guildmanager.cpp in Sources */,
				2BDF4C03166D5B690054E77F /* imageparticle.cpp in Sources */,
				2BDF4C05166D5B690054E77F /* imagesprite.cpp in Sources */,
				2BDF4C07166D5B690054E77F /* inputevent.cpp in Sources */,
				2BDF4C09166D5B690054E77F /* inputmanager.cpp in Sources */,
				2BDF4C0B166D5B690054E77F /* inventory.cpp in Sources */,
				2BDF4C0D166D5B690054E77F /* item.cpp in Sources */,
				2BDF4C0F166D5B690054E77F /* itemshortcut.cpp in Sources */,
				2BDF4C11166D5B690054E77F /* joystick.cpp in Sources */,
				2BDF4C13166D5B690054E77F /* keyboardconfig.cpp in Sources */,
				2BDF4C15166D5B690054E77F /* keyevent.cpp in Sources */,
				2BDF4C17166D5B690054E77F /* keyinput.cpp in Sources */,
				2BDF4C19166D5B690054E77F /* listener.cpp in Sources */,
				2BDF4C1B166D5B690054E77F /* localplayer.cpp in Sources */,
				2BDF4C1D166D5B690054E77F /* logger.cpp in Sources */,
				2BDF4C1F166D5B690054E77F /* main.cpp in Sources */,
				2BDF4C21166D5B690054E77F /* map.cpp in Sources */,
				2BDF4C23166D5B690054E77F /* maplayer.cpp in Sources */,
				2BDF4C25166D5B690054E77F /* mgl.cpp in Sources */,
				2BDF4C27166D5B690054E77F /* mobileopenglgraphics.cpp in Sources */,
				2BDF4C29166D5B690054E77F /* mouseinput.cpp in Sources */,
				2BDF4C2B166D5B690054E77F /* mumblemanager.cpp in Sources */,
				2BDF4C2D166D5B690054E77F /* charhandler.cpp in Sources */,
				2BDF4C2F166D5B690054E77F /* download.cpp in Sources */,
				2BDF4C31166D5B690054E77F /* adminhandler.cpp in Sources */,
				2BDF4C33166D5B690054E77F /* beinghandler.cpp in Sources */,
				2BDF4C35166D5B690054E77F /* buysellhandler.cpp in Sources */,
				2BDF4C37166D5B690054E77F /* charserverhandler.cpp in Sources */,
				2BDF4C39166D5B690054E77F /* chathandler.cpp in Sources */,
				2BDF4C3B166D5B690054E77F /* gamehandler.cpp in Sources */,
				2BDF4C3D166D5B690054E77F /* guildtab.cpp in Sources */,
				2BDF4C3F166D5B690054E77F /* partytab.cpp in Sources */,
				2BDF4C41166D5B690054E77F /* guildhandler.cpp in Sources */,
				2BDF4C43166D5B690054E77F /* inventoryhandler.cpp in Sources */,
				2BDF4C45166D5B690054E77F /* itemhandler.cpp in Sources */,
				2BDF4C47166D5B690054E77F /* loginhandler.cpp in Sources */,
				2BDF4C49166D5B690054E77F /* network.cpp in Sources */,
				2BDF4C4B166D5B690054E77F /* npchandler.cpp in Sources */,
				2BDF4C4D166D5B690054E77F /* partyhandler.cpp in Sources */,
				2BDF4C4F166D5B690054E77F /* playerhandler.cpp in Sources */,
				2BDF4C51166D5B690054E77F /* specialhandler.cpp in Sources */,
				2BDF4C53166D5B690054E77F /* tradehandler.cpp in Sources */,
				2BDF4C55166D5B690054E77F /* adminhandler.cpp in Sources */,
				2BDF4C57166D5B690054E77F /* beinghandler.cpp in Sources */,
				2BDF4C59166D5B690054E77F /* buysellhandler.cpp in Sources */,
				2BDF4C5B166D5B690054E77F /* charserverhandler.cpp in Sources */,
				2BDF4C5D166D5B690054E77F /* chathandler.cpp in Sources */,
				2BDF4C5F166D5B690054E77F /* gamehandler.cpp in Sources */,
				2BDF4C61166D5B690054E77F /* generalhandler.cpp in Sources */,
				2BDF4C63166D5B690054E77F /* guildtab.cpp in Sources */,
				2BDF4C65166D5B690054E77F /* partytab.cpp in Sources */,
				2BDF4C67166D5B690054E77F /* guildhandler.cpp in Sources */,
				2BDF4C69166D5B690054E77F /* inventoryhandler.cpp in Sources */,
				2BDF4C6B166D5B690054E77F /* itemhandler.cpp in Sources */,
				2BDF4C6D166D5B690054E77F /* loginhandler.cpp in Sources */,
				2BDF4C6F166D5B690054E77F /* messagehandler.cpp in Sources */,
				2BDF4C71166D5B690054E77F /* messagein.cpp in Sources */,
				2BDF4C73166D5B690054E77F /* messageout.cpp in Sources */,
				2BDF4C75166D5B690054E77F /* network.cpp in Sources */,
				2BDF4C77166D5B690054E77F /* npchandler.cpp in Sources */,
				2BDF4C79166D5B690054E77F /* partyhandler.cpp in Sources */,
				2BDF4C7B166D5B690054E77F /* playerhandler.cpp in Sources */,
				2BDF4C7D166D5B690054E77F /* specialhandler.cpp in Sources */,
				2BDF4C7F166D5B690054E77F /* tradehandler.cpp in Sources */,
				2BDF4C81166D5B690054E77F /* messagein.cpp in Sources */,
				2BDF4C83166D5B690054E77F /* messageout.cpp in Sources */,
				2BDF4C85166D5B690054E77F /* net.cpp in Sources */,
				2BDF4C87166D5B690054E77F /* packetcounters.cpp in Sources */,
				2BDF4C89166D5B690054E77F /* adminhandler.cpp in Sources */,
				2BDF4C8B166D5B690054E77F /* beinghandler.cpp in Sources */,
				2BDF4C8D166D5B690054E77F /* buysellhandler.cpp in Sources */,
				2BDF4C8F166D5B690054E77F /* charserverhandler.cpp in Sources */,
				2BDF4C91166D5B690054E77F /* chathandler.cpp in Sources */,
				2BDF4C93166D5B690054E77F /* gamehandler.cpp in Sources */,
				2BDF4C95166D5B690054E77F /* generalhandler.cpp in Sources */,
				2BDF4C97166D5B690054E77F /* guildtab.cpp in Sources */,
				2BDF4C99166D5B690054E77F /* partytab.cpp in Sources */,
				2BDF4C9B166D5B690054E77F /* guildhandler.cpp in Sources */,
				2BDF4C9D166D5B690054E77F /* inventoryhandler.cpp in Sources */,
				2BDF4C9F166D5B690054E77F /* itemhandler.cpp in Sources */,
				2BDF4CA1166D5B690054E77F /* loginhandler.cpp in Sources */,
				2BDF4CA3166D5B690054E77F /* messagehandler.cpp in Sources */,
				2BDF4CA5166D5B690054E77F /* messagein.cpp in Sources */,
				2BDF4CA7166D5B690054E77F /* messageout.cpp in Sources */,
				2BDF4CA9166D5B690054E77F /* network.cpp in Sources */,
				2BDF4CAB166D5B690054E77F /* npchandler.cpp in Sources */,
				2BDF4CAD166D5B690054E77F /* partyhandler.cpp in Sources */,
				2BDF4CAF166D5B690054E77F /* playerhandler.cpp in Sources */,
				2BDF4CB1166D5B690054E77F /* questhandler.cpp in Sources */,
				2BDF4CB3166D5B690054E77F /* specialhandler.cpp in Sources */,
				2BDF4CB5166D5B690054E77F /* tradehandler.cpp in Sources */,
				2BDF4CB7166D5B690054E77F /* normalopenglgraphics.cpp in Sources */,
				2BDF4CB9166D5B690054E77F /* particle.cpp in Sources */,
				2BDF4CBB166D5B690054E77F /* particlecontainer.cpp in Sources */,
				2BDF4CBD166D5B690054E77F /* particleemitter.cpp in Sources */,
				2BDF4CBF166D5B690054E77F /* party.cpp in Sources */,
				2BDF4CC1166D5B690054E77F /* playerinfo.cpp in Sources */,
				2BDF4CC3166D5B690054E77F /* playerrelations.cpp in Sources */,
				2BDF4CC5166D5B690054E77F /* position.cpp in Sources */,
				2BDF4CC7166D5B690054E77F /* action.cpp in Sources */,
				2BDF4CC9166D5B690054E77F /* ambientlayer.cpp in Sources */,
				2BDF4CCB166D5B690054E77F /* animation.cpp in Sources */,
				2BDF4CCD166D5B690054E77F /* atlasmanager.cpp in Sources */,
				2BDF4CCF166D5B690054E77F /* beinginfo.cpp in Sources */,
				2BDF4CD1166D5B690054E77F /* chardb.cpp in Sources */,
				2BDF4CD3166D5B690054E77F /* colordb.cpp in Sources */,
				2BDF4CD5166D5B690054E77F /* cursor.cpp in Sources */,
				2BDF4CD7166D5B690054E77F /* dye.cpp in Sources */,
				2BDF4CD9166D5B690054E77F /* emotedb.cpp in Sources */,
				2BDF4CDB166D5B690054E77F /* image.cpp in Sources */,
				2BDF4CDD166D5B690054E77F /* imagehelper.cpp in Sources */,
				2BDF4CDF166D5B690054E77F /* imageset.cpp in Sources */,
				2BDF4CE1166D5B690054E77F /* imagewriter.cpp in Sources */,
				2BDF4CE3166D5B690054E77F /* itemdb.cpp in Sources */,
				2BDF4CE5166D5B690054E77F /* iteminfo.cpp in Sources */,
				2BDF4CE7166D5B690054E77F /* mapdb.cpp in Sources */,
				2BDF4CE9166D5B690054E77F /* mapreader.cpp in Sources */,
				2BDF4CEB166D5B690054E77F /* monsterdb.cpp in Sources */,
				2BDF4CED166D5B690054E77F /* npcdb.cpp in Sources */,
				2BDF4CEF166D5B690054E77F /* openglimagehelper.cpp in Sources */,
				2BDF4CF1166D5B690054E77F /* resource.cpp in Sources */,
				2BDF4CF3166D5B690054E77F /* resourcemanager.cpp in Sources */,
				2BDF4CF5166D5B690054E77F /* sdlimagehelper.cpp in Sources */,
				2BDF4CF7166D5B690054E77F /* sdlmusic.cpp in Sources */,
				2BDF4CF9166D5B690054E77F /* soundeffect.cpp in Sources */,
				2BDF4CFB166D5B690054E77F /* specialdb.cpp in Sources */,
				2BDF4CFD166D5B690054E77F /* spritedef.cpp in Sources */,
				2BDF4CFF166D5B690054E77F /* subimage.cpp in Sources */,
				2BDF4D01166D5B690054E77F /* wallpaper.cpp in Sources */,
				2BDF4D03166D5B690054E77F /* rotationalparticle.cpp in Sources */,
				2BDF4D05166D5B690054E77F /* safeopenglgraphics.cpp in Sources */,
				2BDF4D07166D5B690054E77F /* SDLMain.m in Sources */,
				2BDF4D09166D5B690054E77F /* shopitem.cpp in Sources */,
				2BDF4D0B166D5B690054E77F /* simpleanimation.cpp in Sources */,
				2BDF4D0D166D5B690054E77F /* soundmanager.cpp in Sources */,
				2BDF4D0F166D5B690054E77F /* spellmanager.cpp in Sources */,
				2BDF4D11166D5B690054E77F /* spellshortcut.cpp in Sources */,
				2BDF4D13166D5B690054E77F /* statuseffect.cpp in Sources */,
				2BDF4D15166D5B690054E77F /* testlauncher.cpp in Sources */,
				2BDF4D17166D5B690054E77F /* testmain.cpp in Sources */,
				2BDF4D19166D5B690054E77F /* text.cpp in Sources */,
				2BDF4D1B166D5B690054E77F /* textcommand.cpp in Sources */,
				2BDF4D1D166D5B690054E77F /* textmanager.cpp in Sources */,
				2BDF4D1F166D5B690054E77F /* textparticle.cpp in Sources */,
				2BDF4D21166D5B690054E77F /* touchactions.cpp in Sources */,
				2BDF4D23166D5B690054E77F /* touchmanager.cpp in Sources */,
				2BDF4D25166D5B690054E77F /* units.cpp in Sources */,
				2BDF4D27166D5B690054E77F /* base64.cpp in Sources */,
				2BDF4D29166D5B690054E77F /* checkutils.cpp in Sources */,
				2BDF4D2B166D5B690054E77F /* copynpaste.cpp in Sources */,
				2BDF4D2D166D5B690054E77F /* langs.cpp in Sources */,
				2BDF4D2F166D5B690054E77F /* mkdir.cpp in Sources */,
				2BDF4D31166D5B690054E77F /* paths.cpp in Sources */,
				2BDF4D33166D5B690054E77F /* perfomance.cpp in Sources */,
				2BDF4D35166D5B690054E77F /* physfsrwops.cpp in Sources */,
				2BDF4D37166D5B690054E77F /* process.cpp in Sources */,
				2BDF4D3B166D5B690054E77F /* specialfolder.cpp in Sources */,
				2BDF4D3D166D5B690054E77F /* stringutils.cpp in Sources */,
				2BDF4D41166D5B690054E77F /* podict.cpp in Sources */,
				2BDF4D43166D5B690054E77F /* poparser.cpp in Sources */,
				2BDF4D45166D5B690054E77F /* translationmanager.cpp in Sources */,
				2BDF4D47166D5B690054E77F /* xml.cpp in Sources */,
				2BDF4D49166D5B690054E77F /* vector.cpp in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin PBXTargetDependency section */
		2BDF45E5166D5AEC0054E77F /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 2BDF45BE166D5AEC0054E77F /* ManaPlus */;
			targetProxy = 2BDF45E4166D5AEC0054E77F /* PBXContainerItemProxy */;
		};
/* End PBXTargetDependency section */

/* Begin PBXVariantGroup section */
		2BDF45CC166D5AEC0054E77F /* InfoPlist.strings */ = {
			isa = PBXVariantGroup;
			children = (
				2BDF45CD166D5AEC0054E77F /* en */,
			);
			name = InfoPlist.strings;
			sourceTree = "<group>";
		};
		2BDF45D2166D5AEC0054E77F /* Credits.rtf */ = {
			isa = PBXVariantGroup;
			children = (
				2BDF45D3166D5AEC0054E77F /* en */,
			);
			name = Credits.rtf;
			sourceTree = "<group>";
		};
		2BDF45D8166D5AEC0054E77F /* MainMenu.xib */ = {
			isa = PBXVariantGroup;
			children = (
				2BDF45D9166D5AEC0054E77F /* en */,
			);
			name = MainMenu.xib;
			sourceTree = "<group>";
		};
		2BDF45E9166D5AEC0054E77F /* InfoPlist.strings */ = {
			isa = PBXVariantGroup;
			children = (
				2BDF45EA166D5AEC0054E77F /* en */,
			);
			name = InfoPlist.strings;
			sourceTree = "<group>";
		};
/* End PBXVariantGroup section */

/* Begin XCBuildConfiguration section */
		2BDF45EF166D5AEC0054E77F /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				ARCHS = "$(ARCHS_STANDARD_64_BIT)";
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_CXX_LIBRARY = "libc++";
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				COPY_PHASE_STRIP = NO;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_ENABLE_OBJC_EXCEPTIONS = YES;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				GCC_SYMBOLS_PRIVATE_EXTERN = NO;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				MACOSX_DEPLOYMENT_TARGET = 10.8;
				ONLY_ACTIVE_ARCH = YES;
				SDKROOT = macosx10.7;
			};
			name = Debug;
		};
		2BDF45F0166D5AEC0054E77F /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				ARCHS = "$(ARCHS_STANDARD_64_BIT)";
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_CXX_LIBRARY = "libc++";
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				COPY_PHASE_STRIP = YES;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_ENABLE_OBJC_EXCEPTIONS = YES;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				MACOSX_DEPLOYMENT_TARGET = 10.8;
				SDKROOT = macosx10.7;
			};
			name = Release;
		};
		2BDF45F2166D5AEC0054E77F /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++98";
				CLANG_CXX_LIBRARY = "libstdc++";
				COMBINE_HIDPI_IMAGES = YES;
				FRAMEWORK_SEARCH_PATHS = /Library/Frameworks;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "ManaPlus/ManaPlus-Prefix.pch";
				HEADER_SEARCH_PATHS = (
					"../src/**",
					/Library/Frameworks/SDL.framework/Headers,
					/opt/local/include/SDL,
					/opt/local/include/libxml2,
					/opt/local/include,
					/Library/Frameworks/SDL_image.framework/Headers,
					/Library/Frameworks/SDL_net.framework/Headers,
					/Library/Frameworks/SDL_ttf.framework/Headers,
					/Library/Frameworks/SDL_mixer.framework/Headers,
				);
				INFOPLIST_FILE = "ManaPlus/ManaPlus-Info.plist";
				LD_RUNPATH_SEARCH_PATHS = "@loader_path/../Frameworks";
				LIBRARY_SEARCH_PATHS = (
					/opt/local/lib,
					"\"$(SRCROOT)/libs\"",
				);
				MACOSX_DEPLOYMENT_TARGET = 10.7;
				OTHER_CFLAGS = "";
				OTHER_CPLUSPLUSFLAGS = (
					"-DUSE_INTERNALGUICHAN",
					"-DUSE_OPENGL",
				);
				PRODUCT_NAME = "$(TARGET_NAME)";
				SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = YES;
				USER_HEADER_SEARCH_PATHS = "";
				WRAPPER_EXTENSION = app;
			};
			name = Debug;
		};
		2BDF45F3166D5AEC0054E77F /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++98";
				CLANG_CXX_LIBRARY = "libstdc++";
				COMBINE_HIDPI_IMAGES = YES;
				FRAMEWORK_SEARCH_PATHS = /Library/Frameworks;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "ManaPlus/ManaPlus-Prefix.pch";
				HEADER_SEARCH_PATHS = (
					"../src/**",
					/Library/Frameworks/SDL.framework/Headers,
					/opt/local/include/SDL,
					/opt/local/include/libxml2,
					/opt/local/include,
					/Library/Frameworks/SDL_image.framework/Headers,
					/Library/Frameworks/SDL_net.framework/Headers,
					/Library/Frameworks/SDL_ttf.framework/Headers,
					/Library/Frameworks/SDL_mixer.framework/Headers,
				);
				INFOPLIST_FILE = "ManaPlus/ManaPlus-Info.plist";
				LD_RUNPATH_SEARCH_PATHS = "@loader_path/../Frameworks";
				LIBRARY_SEARCH_PATHS = (
					/opt/local/lib,
					"\"$(SRCROOT)/libs\"",
				);
				MACOSX_DEPLOYMENT_TARGET = 10.7;
				OTHER_CFLAGS = "";
				OTHER_CPLUSPLUSFLAGS = (
					"-DUSE_INTERNALGUICHAN",
					"-DUSE_OPENGL",
				);
				PRODUCT_NAME = "$(TARGET_NAME)";
				SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = YES;
				USER_HEADER_SEARCH_PATHS = "";
				WRAPPER_EXTENSION = app;
			};
			name = Release;
		};
		2BDF45F5166D5AEC0054E77F /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/ManaPlus.app/Contents/MacOS/ManaPlus";
				COMBINE_HIDPI_IMAGES = YES;
				FRAMEWORK_SEARCH_PATHS = "\"$(DEVELOPER_LIBRARY_DIR)/Frameworks\"";
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "ManaPlus/ManaPlus-Prefix.pch";
				INFOPLIST_FILE = "ManaPlusTests/ManaPlusTests-Info.plist";
				MACOSX_DEPLOYMENT_TARGET = 10.6;
				PRODUCT_NAME = "$(TARGET_NAME)";
				SDKROOT = macosx;
				TEST_HOST = "$(BUNDLE_LOADER)";
				WRAPPER_EXTENSION = octest;
			};
			name = Debug;
		};
		2BDF45F6166D5AEC0054E77F /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/ManaPlus.app/Contents/MacOS/ManaPlus";
				COMBINE_HIDPI_IMAGES = YES;
				FRAMEWORK_SEARCH_PATHS = "\"$(DEVELOPER_LIBRARY_DIR)/Frameworks\"";
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "ManaPlus/ManaPlus-Prefix.pch";
				INFOPLIST_FILE = "ManaPlusTests/ManaPlusTests-Info.plist";
				MACOSX_DEPLOYMENT_TARGET = 10.6;
				PRODUCT_NAME = "$(TARGET_NAME)";
				SDKROOT = macosx;
				TEST_HOST = "$(BUNDLE_LOADER)";
				WRAPPER_EXTENSION = octest;
			};
			name = Release;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		2BDF45B9166D5AEC0054E77F /* Build configuration list for PBXProject "ManaPlus" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				2BDF45EF166D5AEC0054E77F /* Debug */,
				2BDF45F0166D5AEC0054E77F /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		2BDF45F1166D5AEC0054E77F /* Build configuration list for PBXNativeTarget "ManaPlus" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				2BDF45F2166D5AEC0054E77F /* Debug */,
				2BDF45F3166D5AEC0054E77F /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		2BDF45F4166D5AEC0054E77F /* Build configuration list for PBXNativeTarget "ManaPlusTests" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				2BDF45F5166D5AEC0054E77F /* Debug */,
				2BDF45F6166D5AEC0054E77F /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = 2BDF45B6166D5AEC0054E77F /* Project object */;
}