summaryrefslogblamecommitdiff
path: root/mana.xcodeproj/project.pbxproj
blob: bab73682b7c02686aecd0b3d6dfa6ef19b2030f0 (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
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339


































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































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

/* Begin PBXBuildFile section */
		8D0C4E920486CD37000505A6 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 20286C33FDCF999611CA2CEA /* Carbon.framework */; };
		92024D2F0CF1BD9E006B55CB /* keyboardconfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92024D2A0CF1BD9E006B55CB /* keyboardconfig.cpp */; };
		92024D3D0CF1BDF7006B55CB /* setup_keyboard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92024D360CF1BDF7006B55CB /* setup_keyboard.cpp */; };
		92024E760CF1DCF6006B55CB /* imageloader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92024E740CF1DCF6006B55CB /* imageloader.cpp */; };
		92037A1F0ED2037300D3712D /* text.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92037A1B0ED2037300D3712D /* text.cpp */; };
		92037A200ED2037300D3712D /* textmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92037A1D0ED2037300D3712D /* textmanager.cpp */; };
		920C631F0F37D0EF001DD274 /* SDL_ttf.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 926A29790F23C155005D6466 /* SDL_ttf.framework */; };
		922895B711F665A200AE53BB /* libintl.8.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 922895B411F665A200AE53BB /* libintl.8.dylib */; };
		922895B811F665A200AE53BB /* libphysfs.1.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 922895B511F665A200AE53BB /* libphysfs.1.dylib */; };
		922895B911F665A200AE53BB /* libSDL_gfx.13.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 922895B611F665A200AE53BB /* libSDL_gfx.13.dylib */; };
		922895BA11F665A700AE53BB /* libintl.8.dylib in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 922895B411F665A200AE53BB /* libintl.8.dylib */; };
		922895BB11F665AB00AE53BB /* libphysfs.1.dylib in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 922895B511F665A200AE53BB /* libphysfs.1.dylib */; };
		922895BC11F665AF00AE53BB /* libSDL_gfx.13.dylib in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 922895B611F665A200AE53BB /* libSDL_gfx.13.dylib */; };
		922895C111F6678300AE53BB /* libiconv.2.dylib in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 922895BF11F6677F00AE53BB /* libiconv.2.dylib */; };
		922895C211F6678700AE53BB /* libSDL-1.2.0.dylib in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 922895C011F6677F00AE53BB /* libSDL-1.2.0.dylib */; };
		922CD9580E3D00900074C50E /* npcdb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 922CD9560E3D00900074C50E /* npcdb.cpp */; };
		922CD95F0E3D01080074C50E /* shopitem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 922CD95D0E3D01080074C50E /* shopitem.cpp */; };
		924A39F20C0784280066885E /* animationparticle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 924A39E80C0784280066885E /* animationparticle.cpp */; };
		924A39F30C0784280066885E /* imageparticle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 924A39EA0C0784280066885E /* imageparticle.cpp */; };
		924A39F40C0784280066885E /* particle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 924A39EC0C0784280066885E /* particle.cpp */; };
		924A39F50C0784280066885E /* particleemitter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 924A39EE0C0784280066885E /* particleemitter.cpp */; };
		924A39F60C0784280066885E /* textparticle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 924A39F00C0784280066885E /* textparticle.cpp */; };
		924A3A120C07A60B0066885E /* resizegrip.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 924A3A100C07A60B0066885E /* resizegrip.cpp */; };
		924A40570C085EF50066885E /* items.xsd in Copy Data Files */ = {isa = PBXBuildFile; fileRef = 924A401C0C085ED80066885E /* items.xsd */; };
		924A408B0C0860120066885E /* login_wallpaper.png in Copy Image Files */ = {isa = PBXBuildFile; fileRef = 924A3E9A0C085ED70066885E /* login_wallpaper.png */; };
		924A42020C0861EC0066885E /* about.txt in Copy Help Files */ = {isa = PBXBuildFile; fileRef = 924A400A0C085ED80066885E /* about.txt */; };
		924A42030C0861EC0066885E /* changes.txt in Copy Help Files */ = {isa = PBXBuildFile; fileRef = 924A400B0C085ED80066885E /* changes.txt */; };
		924A42040C0861EC0066885E /* commands.txt in Copy Help Files */ = {isa = PBXBuildFile; fileRef = 924A400D0C085ED80066885E /* commands.txt */; };
		924A42050C0861EC0066885E /* header.txt in Copy Help Files */ = {isa = PBXBuildFile; fileRef = 924A400E0C085ED80066885E /* header.txt */; };
		924A42060C0861EC0066885E /* index.txt in Copy Help Files */ = {isa = PBXBuildFile; fileRef = 924A400F0C085ED80066885E /* index.txt */; };
		924A42070C0861EC0066885E /* skills.txt in Copy Help Files */ = {isa = PBXBuildFile; fileRef = 924A40110C085ED80066885E /* skills.txt */; };
		924A42080C0861EC0066885E /* support.txt in Copy Help Files */ = {isa = PBXBuildFile; fileRef = 924A40120C085ED80066885E /* support.txt */; };
		924A42090C0861EC0066885E /* team.txt in Copy Help Files */ = {isa = PBXBuildFile; fileRef = 924A40130C085ED80066885E /* team.txt */; };
		925350030BC12A3200115FD5 /* imageset.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 925350010BC12A3200115FD5 /* imageset.cpp */; };
		9268560011F141FD00A28C33 /* mana.icns in Resources */ = {isa = PBXBuildFile; fileRef = 926855FF11F141FD00A28C33 /* mana.icns */; };
		9268560211F142A000A28C33 /* colors.xml in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 926855E711F141D500A28C33 /* colors.xml */; };
		9268560311F142A000A28C33 /* progress-indicator.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 926855E811F141D500A28C33 /* progress-indicator.png */; };
		9268560411F142A000A28C33 /* radioin_highlight.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 926855E911F141D500A28C33 /* radioin_highlight.png */; };
		9268560511F142A000A28C33 /* radioout_highlight.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 926855EA11F141D500A28C33 /* radioout_highlight.png */; };
		9268560611F142A000A28C33 /* slider_hilight.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 926855EB11F141D500A28C33 /* slider_hilight.png */; };
		9268560711F142A000A28C33 /* tab_hilight.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 926855EC11F141D500A28C33 /* tab_hilight.png */; };
		9268560811F142A000A28C33 /* vscroll_highlight.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 926855ED11F141D500A28C33 /* vscroll_highlight.png */; };
		9268560911F142A000A28C33 /* window.xml in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 926855EE11F141D500A28C33 /* window.xml */; };
		9268560A11F142A000A28C33 /* window.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 92C637800FC574B500EE8D8D /* window.png */; };
		9268560B11F142A000A28C33 /* circle-gray.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 92C116010F8EC0590048CA8D /* circle-gray.png */; };
		9268560C11F142A000A28C33 /* circle-green.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 92C116020F8EC0590048CA8D /* circle-green.png */; };
		9268560D11F142A000A28C33 /* speechbubble.xml in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 92C116070F8EC0590048CA8D /* speechbubble.xml */; };
		9268560E11F142A000A28C33 /* sticky_button.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 92C116080F8EC0590048CA8D /* sticky_button.png */; };
		9268560F11F142A000A28C33 /* bubble.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 928B50E40F2FB5430011C755 /* bubble.png */; };
		9268561011F142A000A28C33 /* tab.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 926A297E0F23C18E005D6466 /* tab.png */; };
		9268561111F142A000A28C33 /* tabselected.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 926A297F0F23C18E005D6466 /* tabselected.png */; };
		9268561211F142A000A28C33 /* close_button.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 92024D5B0CF1BE5C006B55CB /* close_button.png */; };
		9268561311F142A000A28C33 /* unknown-item.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 92024D5D0CF1BE5C006B55CB /* unknown-item.png */; };
		9268561411F142A000A28C33 /* item_shortcut_bgr.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 92024D5C0CF1BE5C006B55CB /* item_shortcut_bgr.png */; };
		9268561511F142A000A28C33 /* button.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E620C085ED70066885E /* button.png */; };
		9268561611F142A000A28C33 /* button_disabled.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E630C085ED70066885E /* button_disabled.png */; };
		9268561711F142A000A28C33 /* buttonhi.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E640C085ED70066885E /* buttonhi.png */; };
		9268561811F142A000A28C33 /* buttonpress.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E650C085ED70066885E /* buttonpress.png */; };
		9268561911F142A000A28C33 /* checkbox.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E660C085ED70066885E /* checkbox.png */; };
		9268561A11F142A000A28C33 /* deepbox.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E680C085ED70066885E /* deepbox.png */; };
		9268561B11F142A000A28C33 /* hscroll_left_default.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E6D0C085ED70066885E /* hscroll_left_default.png */; };
		9268561C11F142A000A28C33 /* hscroll_left_highlight.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E6E0C085ED70066885E /* hscroll_left_highlight.png */; };
		9268561D11F142A000A28C33 /* hscroll_left_pressed.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E6F0C085ED70066885E /* hscroll_left_pressed.png */; };
		9268561E11F142A000A28C33 /* hscroll_right_default.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E700C085ED70066885E /* hscroll_right_default.png */; };
		9268561F11F142A000A28C33 /* hscroll_right_highlight.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E710C085ED70066885E /* hscroll_right_highlight.png */; };
		9268562011F142A000A28C33 /* hscroll_right_pressed.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E720C085ED70066885E /* hscroll_right_pressed.png */; };
		9268562111F142A000A28C33 /* mouse.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E780C085ED70066885E /* mouse.png */; };
		9268562211F142A000A28C33 /* radioin.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E790C085ED70066885E /* radioin.png */; };
		9268562311F142A000A28C33 /* radioout.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E7A0C085ED70066885E /* radioout.png */; };
		9268562411F142A000A28C33 /* resize.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E7B0C085ED70066885E /* resize.png */; };
		9268562511F142A000A28C33 /* selection.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E7E0C085ED70066885E /* selection.png */; };
		9268562611F142A000A28C33 /* slider.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E7F0C085ED70066885E /* slider.png */; };
		9268562711F142A000A28C33 /* target-cursor-blue-l.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E800C085ED70066885E /* target-cursor-blue-l.png */; };
		9268562811F142A000A28C33 /* target-cursor-blue-m.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E810C085ED70066885E /* target-cursor-blue-m.png */; };
		9268562911F142A000A28C33 /* target-cursor-blue-s.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E820C085ED70066885E /* target-cursor-blue-s.png */; };
		9268562A11F142A000A28C33 /* target-cursor-red-l.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E830C085ED70066885E /* target-cursor-red-l.png */; };
		9268562B11F142A000A28C33 /* target-cursor-red-m.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E840C085ED70066885E /* target-cursor-red-m.png */; };
		9268562C11F142A000A28C33 /* target-cursor-red-s.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E850C085ED70066885E /* target-cursor-red-s.png */; };
		9268562D11F142A000A28C33 /* vscroll_down_default.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E880C085ED70066885E /* vscroll_down_default.png */; };
		9268562E11F142A000A28C33 /* vscroll_down_highlight.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E890C085ED70066885E /* vscroll_down_highlight.png */; };
		9268562F11F142A000A28C33 /* vscroll_down_pressed.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E8A0C085ED70066885E /* vscroll_down_pressed.png */; };
		9268563011F142A000A28C33 /* vscroll_grey.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E8B0C085ED70066885E /* vscroll_grey.png */; };
		9268563111F142A000A28C33 /* vscroll_up_default.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E8D0C085ED70066885E /* vscroll_up_default.png */; };
		9268563211F142A000A28C33 /* vscroll_up_highlight.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E8E0C085ED70066885E /* vscroll_up_highlight.png */; };
		9268563311F142A000A28C33 /* vscroll_up_pressed.png in Copy GUI Files */ = {isa = PBXBuildFile; fileRef = 924A3E8F0C085ED70066885E /* vscroll_up_pressed.png */; };
		9268565211F142D500A28C33 /* avatar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268564B11F142D500A28C33 /* avatar.cpp */; };
		9268565311F142D500A28C33 /* client.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268564D11F142D500A28C33 /* client.cpp */; };
		9268565411F142D500A28C33 /* party.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268564F11F142D500A28C33 /* party.cpp */; };
		9268566811F142F100A28C33 /* beingpopup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268565811F142F100A28C33 /* beingpopup.cpp */; };
		9268566911F142F100A28C33 /* connectiondialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268565A11F142F100A28C33 /* connectiondialog.cpp */; };
		9268566A11F142F100A28C33 /* socialwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268565C11F142F100A28C33 /* socialwindow.cpp */; };
		9268566B11F142F100A28C33 /* specialswindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268565E11F142F100A28C33 /* specialswindow.cpp */; };
		9268566C11F142F100A28C33 /* textpopup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268566011F142F100A28C33 /* textpopup.cpp */; };
		9268566D11F142F100A28C33 /* theme.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268566211F142F100A28C33 /* theme.cpp */; };
		9268566E11F142F100A28C33 /* userpalette.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268566411F142F100A28C33 /* userpalette.cpp */; };
		9268566F11F142F100A28C33 /* worldselectdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268566611F142F100A28C33 /* worldselectdialog.cpp */; };
		9268569711F1431300A28C33 /* avatarlistbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268567811F1431300A28C33 /* avatarlistbox.cpp */; };
		9268569811F1431300A28C33 /* emoteshortcutcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268567A11F1431300A28C33 /* emoteshortcutcontainer.cpp */; };
		9268569911F1431300A28C33 /* flowcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268567C11F1431300A28C33 /* flowcontainer.cpp */; };
		9268569A11F1431300A28C33 /* itemcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268567E11F1431300A28C33 /* itemcontainer.cpp */; };
		9268569B11F1431300A28C33 /* itemlinkhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268568011F1431300A28C33 /* itemlinkhandler.cpp */; };
		9268569C11F1431300A28C33 /* itemshortcutcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268568211F1431300A28C33 /* itemshortcutcontainer.cpp */; };
		9268569D11F1431300A28C33 /* playerbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268568511F1431300A28C33 /* playerbox.cpp */; };
		9268569E11F1431300A28C33 /* progressindicator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268568711F1431300A28C33 /* progressindicator.cpp */; };
		9268569F11F1431300A28C33 /* setuptab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268568911F1431300A28C33 /* setuptab.cpp */; };
		926856A011F1431300A28C33 /* shopitems.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268568B11F1431300A28C33 /* shopitems.cpp */; };
		926856A111F1431300A28C33 /* shoplistbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268568D11F1431300A28C33 /* shoplistbox.cpp */; };
		926856A211F1431300A28C33 /* shortcutcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268568F11F1431300A28C33 /* shortcutcontainer.cpp */; };
		926856A311F1431300A28C33 /* table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268569111F1431300A28C33 /* table.cpp */; };
		926856A411F1431300A28C33 /* tablemodel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268569311F1431300A28C33 /* tablemodel.cpp */; };
		926856A511F1431300A28C33 /* vertcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268569511F1431300A28C33 /* vertcontainer.cpp */; };
		926856BB11F1433300A28C33 /* charhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856B511F1433300A28C33 /* charhandler.cpp */; };
		926856BC11F1433300A28C33 /* download.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856B611F1433300A28C33 /* download.cpp */; };
		9268573911F1433F00A28C33 /* adminhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856F211F1433E00A28C33 /* adminhandler.cpp */; };
		9268573A11F1433F00A28C33 /* beinghandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856F411F1433E00A28C33 /* beinghandler.cpp */; };
		9268573B11F1433F00A28C33 /* buysellhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856F611F1433E00A28C33 /* buysellhandler.cpp */; };
		9268573C11F1433F00A28C33 /* charserverhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856F811F1433E00A28C33 /* charserverhandler.cpp */; };
		9268573D11F1433F00A28C33 /* chathandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856FA11F1433F00A28C33 /* chathandler.cpp */; };
		9268573E11F1433F00A28C33 /* gamehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856FC11F1433F00A28C33 /* gamehandler.cpp */; };
		9268573F11F1433F00A28C33 /* generalhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856FE11F1433F00A28C33 /* generalhandler.cpp */; };
		9268574011F1433F00A28C33 /* guildtab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268570111F1433F00A28C33 /* guildtab.cpp */; };
		9268574111F1433F00A28C33 /* partytab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268570311F1433F00A28C33 /* partytab.cpp */; };
		9268574211F1433F00A28C33 /* guildhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268570511F1433F00A28C33 /* guildhandler.cpp */; };
		9268574311F1433F00A28C33 /* inventoryhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268570711F1433F00A28C33 /* inventoryhandler.cpp */; };
		9268574411F1433F00A28C33 /* itemhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268570911F1433F00A28C33 /* itemhandler.cpp */; };
		9268574511F1433F00A28C33 /* loginhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268570B11F1433F00A28C33 /* loginhandler.cpp */; };
		9268574611F1433F00A28C33 /* messagehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268570D11F1433F00A28C33 /* messagehandler.cpp */; };
		9268574711F1433F00A28C33 /* messagein.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268570F11F1433F00A28C33 /* messagein.cpp */; };
		9268574811F1433F00A28C33 /* messageout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268571111F1433F00A28C33 /* messageout.cpp */; };
		9268574911F1433F00A28C33 /* network.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268571311F1433F00A28C33 /* network.cpp */; };
		9268574A11F1433F00A28C33 /* npchandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268571511F1433F00A28C33 /* npchandler.cpp */; };
		9268574B11F1433F00A28C33 /* partyhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268571711F1433F00A28C33 /* partyhandler.cpp */; };
		9268574C11F1433F00A28C33 /* playerhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268571911F1433F00A28C33 /* playerhandler.cpp */; };
		9268574D11F1433F00A28C33 /* specialhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268571C11F1433F00A28C33 /* specialhandler.cpp */; };
		9268574E11F1433F00A28C33 /* tradehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268571F11F1433F00A28C33 /* tradehandler.cpp */; };
		9268577F11F1435200A28C33 /* ambientlayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268577D11F1435200A28C33 /* ambientlayer.cpp */; };
		9268578711F1435F00A28C33 /* copynpaste.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268578111F1435F00A28C33 /* copynpaste.cpp */; };
		9268578811F1435F00A28C33 /* mkdir.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268578311F1435F00A28C33 /* mkdir.cpp */; };
		9268578911F1435F00A28C33 /* specialfolder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9268578511F1435F00A28C33 /* specialfolder.cpp */; };
		926857AC11F15A9300A28C33 /* guichan.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 926857AB11F15A9300A28C33 /* guichan.framework */; };
		926857B011F15AB200A28C33 /* guichan.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 926857AB11F15A9300A28C33 /* guichan.framework */; };
		9268581311F15F3900A28C33 /* adminhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856C011F1433E00A28C33 /* adminhandler.cpp */; };
		9268581411F15F3A00A28C33 /* beinghandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856C211F1433E00A28C33 /* beinghandler.cpp */; };
		9268581511F15F3B00A28C33 /* buysellhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856C411F1433E00A28C33 /* buysellhandler.cpp */; };
		9268581611F15F3C00A28C33 /* charhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856C611F1433E00A28C33 /* charhandler.cpp */; };
		9268581711F15F3D00A28C33 /* chathandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856C811F1433E00A28C33 /* chathandler.cpp */; };
		9268581811F15F3E00A28C33 /* connection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856CA11F1433E00A28C33 /* connection.cpp */; };
		9268581911F15F3F00A28C33 /* effecthandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856CC11F1433E00A28C33 /* effecthandler.cpp */; };
		9268581A11F15F4000A28C33 /* gamehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856CE11F1433E00A28C33 /* gamehandler.cpp */; };
		9268581B11F15F4000A28C33 /* generalhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856D011F1433E00A28C33 /* generalhandler.cpp */; };
		9268581C11F15F4200A28C33 /* guildhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856D211F1433E00A28C33 /* guildhandler.cpp */; };
		9268581D11F15F4300A28C33 /* internal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856D411F1433E00A28C33 /* internal.cpp */; };
		9268581E11F15F4400A28C33 /* inventoryhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856D611F1433E00A28C33 /* inventoryhandler.cpp */; };
		9268581F11F15F4500A28C33 /* itemhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856D811F1433E00A28C33 /* itemhandler.cpp */; };
		9268582011F15F4600A28C33 /* loginhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856DA11F1433E00A28C33 /* loginhandler.cpp */; };
		9268582111F15F4600A28C33 /* messagehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856DC11F1433E00A28C33 /* messagehandler.cpp */; };
		9268582211F15F4700A28C33 /* messagein.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856DE11F1433E00A28C33 /* messagein.cpp */; };
		9268582311F15F4800A28C33 /* messageout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856E011F1433E00A28C33 /* messageout.cpp */; };
		9268582411F15F4A00A28C33 /* network.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856E211F1433E00A28C33 /* network.cpp */; };
		9268582511F15F4A00A28C33 /* npchandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856E411F1433E00A28C33 /* npchandler.cpp */; };
		9268582611F15F4C00A28C33 /* partyhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856E611F1433E00A28C33 /* partyhandler.cpp */; };
		9268582711F15F4C00A28C33 /* playerhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856E811F1433E00A28C33 /* playerhandler.cpp */; };
		9268582811F15F4E00A28C33 /* specialhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856EB11F1433E00A28C33 /* specialhandler.cpp */; };
		9268582911F15F4E00A28C33 /* stats.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856ED11F1433E00A28C33 /* stats.cpp */; };
		9268582A11F15F5000A28C33 /* tradehandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926856EF11F1433E00A28C33 /* tradehandler.cpp */; };
		9268583011F15F6800A28C33 /* changeemaildialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1191B0F8ED79A0048CA8D /* changeemaildialog.cpp */; };
		9268583111F15F6900A28C33 /* changepassworddialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C116E40F8ECBE80048CA8D /* changepassworddialog.cpp */; };
		9268583211F15F7100A28C33 /* quitdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1186F0F8ED33F0048CA8D /* quitdialog.cpp */; };
		9268583311F15F7300A28C33 /* serverdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C119830F8ED80E0048CA8D /* serverdialog.cpp */; };
		9268583411F15F7600A28C33 /* skilldialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C117530F8ECEEA0048CA8D /* skilldialog.cpp */; };
		9268583511F15F7900A28C33 /* statuswindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C117560F8ECF0B0048CA8D /* statuswindow.cpp */; };
		9268583611F15F7B00A28C33 /* textdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C118F20F8ED5DE0048CA8D /* textdialog.cpp */; };
		9268583711F15F7E00A28C33 /* unregisterdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C117580F8ECF0B0048CA8D /* unregisterdialog.cpp */; };
		9268583A11F15FAC00A28C33 /* guild.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1188E0F8ED4B30048CA8D /* guild.cpp */; };
		9268583B11F15FC200A28C33 /* position.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C119980F8ED8B00048CA8D /* position.cpp */; };
		9268583C11F15FC900A28C33 /* sha256.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1198E0F8ED85E0048CA8D /* sha256.cpp */; };
		926A294A0F23BD88005D6466 /* layout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926A29440F23BD88005D6466 /* layout.cpp */; };
		926A294B0F23BD88005D6466 /* tab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926A29460F23BD88005D6466 /* tab.cpp */; };
		926A294C0F23BD88005D6466 /* tabbedarea.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926A29480F23BD88005D6466 /* tabbedarea.cpp */; };
		926A29580F23BD9E005D6466 /* sdlinput.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926A29520F23BD9E005D6466 /* sdlinput.cpp */; };
		926A29590F23BD9E005D6466 /* truetypefont.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926A29540F23BD9E005D6466 /* truetypefont.cpp */; };
		926A297A0F23C155005D6466 /* SDL_ttf.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 926A29790F23C155005D6466 /* SDL_ttf.framework */; };
		926A299C0F23CA27005D6466 /* windows.txt in Copy Help Files */ = {isa = PBXBuildFile; fileRef = 926A29840F23C1C8005D6466 /* windows.txt */; };
		926A299E0F23CA5A005D6466 /* dejavusans.ttf in Copy Font Files */ = {isa = PBXBuildFile; fileRef = 926A29980F23C988005D6466 /* dejavusans.ttf */; };
		926F9CF80DB005FA00AACD26 /* itemshortcut.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 926F9CF60DB005FA00AACD26 /* itemshortcut.cpp */; };
		9273BDFC0EF33DFD008E56E1 /* COPYING in Resources */ = {isa = PBXBuildFile; fileRef = 9273BDFB0EF33DFD008E56E1 /* COPYING */; };
		9273BDFF0EF33E1A008E56E1 /* AUTHORS in Resources */ = {isa = PBXBuildFile; fileRef = 9273BDFD0EF33E1A008E56E1 /* AUTHORS */; };
		9273BE000EF33E1A008E56E1 /* README in Resources */ = {isa = PBXBuildFile; fileRef = 9273BDFE0EF33E1A008E56E1 /* README */; };
		9273BE080EF33FB3008E56E1 /* particlecontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9273BE040EF33FB3008E56E1 /* particlecontainer.cpp */; };
		9273BE090EF33FB3008E56E1 /* statuseffect.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9273BE060EF33FB3008E56E1 /* statuseffect.cpp */; };
		9294DAA10C17E73200FCEDE9 /* libpng.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9294DAA00C17E73200FCEDE9 /* libpng.framework */; };
		92A245C40F93626900B7719B /* desktop.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92A245C20F93626900B7719B /* desktop.cpp */; };
		92A245C50F93626C00B7719B /* container.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92A244B50F935FB400B7719B /* container.cpp */; };
		92A245CC0F93635800B7719B /* npcpostdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C119010F8ED63F0048CA8D /* npcpostdialog.cpp */; };
		92A4CC9E0D1C622E00CA28FB /* dye.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92A4CC9D0D1C622E00CA28FB /* dye.cpp */; };
		92BC3FF60BAEE55B000DAB7F /* animatedsprite.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3ECA0BAEE55A000DAB7F /* animatedsprite.cpp */; };
		92BC3FF70BAEE55B000DAB7F /* being.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3ECC0BAEE55A000DAB7F /* being.cpp */; };
		92BC3FF80BAEE55B000DAB7F /* beingmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3ECE0BAEE55A000DAB7F /* beingmanager.cpp */; };
		92BC3FFA0BAEE55B000DAB7F /* configuration.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3ED20BAEE55A000DAB7F /* configuration.cpp */; };
		92BC40050BAEE55B000DAB7F /* flooritemmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3EEA0BAEE55A000DAB7F /* flooritemmanager.cpp */; };
		92BC40060BAEE55B000DAB7F /* game.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3EEC0BAEE55A000DAB7F /* game.cpp */; };
		92BC40070BAEE55B000DAB7F /* graphics.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3EEE0BAEE55A000DAB7F /* graphics.cpp */; };
		92BC400C0BAEE55B000DAB7F /* buy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3EF90BAEE55A000DAB7F /* buy.cpp */; };
		92BC400D0BAEE55B000DAB7F /* buysell.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3EFB0BAEE55A000DAB7F /* buysell.cpp */; };
		92BC40110BAEE55B000DAB7F /* chat.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F030BAEE55A000DAB7F /* chat.cpp */; };
		92BC40160BAEE55B000DAB7F /* debugwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F0D0BAEE55A000DAB7F /* debugwindow.cpp */; };
		92BC40170BAEE55B000DAB7F /* equipmentwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F0F0BAEE55A000DAB7F /* equipmentwindow.cpp */; };
		92BC40180BAEE55B000DAB7F /* focushandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F110BAEE55A000DAB7F /* focushandler.cpp */; };
		92BC401A0BAEE55B000DAB7F /* gui.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F150BAEE55A000DAB7F /* gui.cpp */; };
		92BC401C0BAEE55B000DAB7F /* help.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F190BAEE55A000DAB7F /* help.cpp */; };
		92BC401E0BAEE55B000DAB7F /* inventorywindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F1D0BAEE55A000DAB7F /* inventorywindow.cpp */; };
		92BC40220BAEE55B000DAB7F /* login.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F260BAEE55A000DAB7F /* login.cpp */; };
		92BC40240BAEE55B000DAB7F /* minimap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F2A0BAEE55A000DAB7F /* minimap.cpp */; };
		92BC40250BAEE55B000DAB7F /* ministatus.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F2C0BAEE55A000DAB7F /* ministatus.cpp */; };
		92BC402C0BAEE55B000DAB7F /* popupmenu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F3A0BAEE55A000DAB7F /* popupmenu.cpp */; };
		92BC402F0BAEE55B000DAB7F /* register.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F400BAEE55A000DAB7F /* register.cpp */; };
		92BC40310BAEE55B000DAB7F /* sell.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F450BAEE55A000DAB7F /* sell.cpp */; };
		92BC40320BAEE55B000DAB7F /* setup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F470BAEE55A000DAB7F /* setup.cpp */; };
		92BC40330BAEE55B000DAB7F /* setup_audio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F490BAEE55A000DAB7F /* setup_audio.cpp */; };
		92BC40340BAEE55B000DAB7F /* setup_joystick.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F4B0BAEE55A000DAB7F /* setup_joystick.cpp */; };
		92BC40350BAEE55B000DAB7F /* setup_video.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F4D0BAEE55A000DAB7F /* setup_video.cpp */; };
		92BC403E0BAEE55B000DAB7F /* trade.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F600BAEE55B000DAB7F /* trade.cpp */; };
		92BC403F0BAEE55B000DAB7F /* updatewindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F620BAEE55B000DAB7F /* updatewindow.cpp */; };
		92BC40410BAEE55B000DAB7F /* viewport.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F660BAEE55B000DAB7F /* viewport.cpp */; };
		92BC40440BAEE55B000DAB7F /* inventory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F6D0BAEE55B000DAB7F /* inventory.cpp */; };
		92BC40450BAEE55B000DAB7F /* item.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F6F0BAEE55B000DAB7F /* item.cpp */; };
		92BC40460BAEE55B000DAB7F /* joystick.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F710BAEE55B000DAB7F /* joystick.cpp */; };
		92BC40470BAEE55B000DAB7F /* localplayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F730BAEE55B000DAB7F /* localplayer.cpp */; };
		92BC40480BAEE55B000DAB7F /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F760BAEE55B000DAB7F /* log.cpp */; };
		92BC40490BAEE55B000DAB7F /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F790BAEE55B000DAB7F /* main.cpp */; };
		92BC404B0BAEE55B000DAB7F /* map.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F7C0BAEE55B000DAB7F /* map.cpp */; };
		92BC404C0BAEE55B000DAB7F /* monster.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F7E0BAEE55B000DAB7F /* monster.cpp */; };
		92BC40570BAEE55B000DAB7F /* messagein.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F950BAEE55B000DAB7F /* messagein.cpp */; };
		92BC40580BAEE55B000DAB7F /* messageout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3F970BAEE55B000DAB7F /* messageout.cpp */; };
		92BC405F0BAEE55B000DAB7F /* npc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FA50BAEE55B000DAB7F /* npc.cpp */; };
		92BC40600BAEE55B000DAB7F /* openglgraphics.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FA70BAEE55B000DAB7F /* openglgraphics.cpp */; };
		92BC406E0BAEE55B000DAB7F /* player.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FBA0BAEE55B000DAB7F /* player.cpp */; };
		92BC406F0BAEE55B000DAB7F /* action.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FBE0BAEE55B000DAB7F /* action.cpp */; };
		92BC40700BAEE55B000DAB7F /* ambientoverlay.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FC00BAEE55B000DAB7F /* ambientoverlay.cpp */; };
		92BC40710BAEE55B000DAB7F /* animation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FC20BAEE55B000DAB7F /* animation.cpp */; };
		92BC40740BAEE55B000DAB7F /* image.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FC90BAEE55B000DAB7F /* image.cpp */; };
		92BC40750BAEE55B000DAB7F /* imagewriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FCB0BAEE55B000DAB7F /* imagewriter.cpp */; };
		92BC40760BAEE55B000DAB7F /* itemdb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FCD0BAEE55B000DAB7F /* itemdb.cpp */; };
		92BC40770BAEE55B000DAB7F /* iteminfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FCF0BAEE55B000DAB7F /* iteminfo.cpp */; };
		92BC40780BAEE55B000DAB7F /* mapreader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FD10BAEE55B000DAB7F /* mapreader.cpp */; };
		92BC40790BAEE55B000DAB7F /* monsterdb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FD30BAEE55B000DAB7F /* monsterdb.cpp */; };
		92BC407A0BAEE55B000DAB7F /* monsterinfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FD50BAEE55B000DAB7F /* monsterinfo.cpp */; };
		92BC407B0BAEE55B000DAB7F /* music.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FD70BAEE55B000DAB7F /* music.cpp */; };
		92BC407D0BAEE55B000DAB7F /* resource.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FDB0BAEE55B000DAB7F /* resource.cpp */; };
		92BC407E0BAEE55B000DAB7F /* resourcemanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FDD0BAEE55B000DAB7F /* resourcemanager.cpp */; };
		92BC40800BAEE55B000DAB7F /* soundeffect.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FE10BAEE55B000DAB7F /* soundeffect.cpp */; };
		92BC40810BAEE55B000DAB7F /* spritedef.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FE30BAEE55B000DAB7F /* spritedef.cpp */; };
		92BC40830BAEE55B000DAB7F /* simpleanimation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FE80BAEE55B000DAB7F /* simpleanimation.cpp */; };
		92BC40840BAEE55B000DAB7F /* sound.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FEA0BAEE55B000DAB7F /* sound.cpp */; };
		92BC40850BAEE55B000DAB7F /* base64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FEF0BAEE55B000DAB7F /* base64.cpp */; };
		92BC40860BAEE55B000DAB7F /* xml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92BC3FF40BAEE55B000DAB7F /* xml.cpp */; };
		92BC40940BAEE818000DAB7F /* SDL_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 92BC408E0BAEE818000DAB7F /* SDL_image.framework */; };
		92BC40950BAEE818000DAB7F /* SDL_mixer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 92BC408F0BAEE818000DAB7F /* SDL_mixer.framework */; };
		92BC40960BAEE818000DAB7F /* SDL_net.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 92BC40900BAEE818000DAB7F /* SDL_net.framework */; };
		92BC40970BAEE818000DAB7F /* SDL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 92BC40910BAEE818000DAB7F /* SDL.framework */; };
		92BC40C70BAEEDAA000DAB7F /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 92BC40C60BAEEDAA000DAB7F /* OpenGL.framework */; };
		92BC40D90BAEEED3000DAB7F /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 92BC40D80BAEEED3000DAB7F /* IOKit.framework */; };
		92BC40E60BAEF54B000DAB7F /* SDLMain.m in Sources */ = {isa = PBXBuildFile; fileRef = 92BC40E50BAEF54B000DAB7F /* SDLMain.m */; };
		92BC40E90BAEF57D000DAB7F /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 92BC40E80BAEF57D000DAB7F /* Cocoa.framework */; };
		92C1150E0F8EBB360048CA8D /* window.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1150C0F8EBB360048CA8D /* window.cpp */; };
		92C115120F8EBB550048CA8D /* itempopup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115100F8EBB550048CA8D /* itempopup.cpp */; };
		92C1151A0F8EBB830048CA8D /* listbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115140F8EBB830048CA8D /* listbox.cpp */; };
		92C1151B0F8EBB830048CA8D /* scrollarea.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115160F8EBB830048CA8D /* scrollarea.cpp */; };
		92C1151C0F8EBB830048CA8D /* slider.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115180F8EBB830048CA8D /* slider.cpp */; };
		92C115200F8EBBA90048CA8D /* emoteshortcut.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1151E0F8EBBA90048CA8D /* emoteshortcut.cpp */; };
		92C115280F8EBBD50048CA8D /* inttextfield.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115220F8EBBD50048CA8D /* inttextfield.cpp */; };
		92C115290F8EBBD50048CA8D /* popup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115240F8EBBD50048CA8D /* popup.cpp */; };
		92C1152A0F8EBBD50048CA8D /* textfield.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115260F8EBBD50048CA8D /* textfield.cpp */; };
		92C115360F8EBC450048CA8D /* browserbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115320F8EBC450048CA8D /* browserbox.cpp */; };
		92C115370F8EBC450048CA8D /* windowcontainer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115340F8EBC450048CA8D /* windowcontainer.cpp */; };
		92C1153B0F8EBC730048CA8D /* chattab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115390F8EBC730048CA8D /* chattab.cpp */; };
		92C115440F8EBCB70048CA8D /* shortcutwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115410F8EBCB70048CA8D /* shortcutwindow.cpp */; };
		92C115470F8EBCD00048CA8D /* passwordfield.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115450F8EBCD00048CA8D /* passwordfield.cpp */; };
		92C1154D0F8EBD000048CA8D /* checkbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115490F8EBD000048CA8D /* checkbox.cpp */; };
		92C1154E0F8EBD000048CA8D /* textbox.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1154B0F8EBD000048CA8D /* textbox.cpp */; };
		92C115540F8EBD250048CA8D /* label.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115500F8EBD250048CA8D /* label.cpp */; };
		92C115550F8EBD250048CA8D /* progressbar.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115520F8EBD250048CA8D /* progressbar.cpp */; };
		92C115590F8EBD490048CA8D /* net.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115570F8EBD490048CA8D /* net.cpp */; };
		92C1159B0F8EBD900048CA8D /* emotedb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115990F8EBD900048CA8D /* emotedb.cpp */; };
		92C115A20F8EBDB20048CA8D /* commandhandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1159C0F8EBDB20048CA8D /* commandhandler.cpp */; };
		92C115A30F8EBDB20048CA8D /* effectmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C1159E0F8EBDB20048CA8D /* effectmanager.cpp */; };
		92C115A40F8EBDB20048CA8D /* units.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115A00F8EBDB20048CA8D /* units.cpp */; };
		92C115B70F8EBE450048CA8D /* palette.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115AD0F8EBE450048CA8D /* palette.cpp */; };
		92C115B90F8EBE450048CA8D /* recorder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115B10F8EBE450048CA8D /* recorder.cpp */; };
		92C115BB0F8EBE450048CA8D /* speechbubble.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115B50F8EBE450048CA8D /* speechbubble.cpp */; };
		92C115BF0F8EBE5E0048CA8D /* channeltab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115BD0F8EBE5E0048CA8D /* channeltab.cpp */; };
		92C115C60F8EBE950048CA8D /* whispertab.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115C30F8EBE950048CA8D /* whispertab.cpp */; };
		92C115C90F8EBECE0048CA8D /* charcreatedialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115C70F8EBECE0048CA8D /* charcreatedialog.cpp */; };
		92C115CD0F8EBF090048CA8D /* channelmanager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115CB0F8EBF090048CA8D /* channelmanager.cpp */; };
		92C115D20F8EBF1C0048CA8D /* colordb.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115CE0F8EBF1C0048CA8D /* colordb.cpp */; };
		92C115D30F8EBF1C0048CA8D /* wallpaper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115D00F8EBF1C0048CA8D /* wallpaper.cpp */; };
		92C115DB0F8EBF530048CA8D /* button.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115D50F8EBF530048CA8D /* button.cpp */; };
		92C115DC0F8EBF530048CA8D /* icon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115D70F8EBF530048CA8D /* icon.cpp */; };
		92C115DD0F8EBF530048CA8D /* radiobutton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115D90F8EBF530048CA8D /* radiobutton.cpp */; };
		92C115EA0F8EBFA60048CA8D /* stringutils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115E80F8EBFA60048CA8D /* stringutils.cpp */; };
		92C115EE0F8EBFC20048CA8D /* channel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115EC0F8EBFC20048CA8D /* channel.cpp */; };
		92C115F70F8EBFDD0048CA8D /* dropdown.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115F50F8EBFDD0048CA8D /* dropdown.cpp */; };
		92C115FB0F8EBFF30048CA8D /* setup_colors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115F90F8EBFF30048CA8D /* setup_colors.cpp */; };
		92C115FF0F8EC0150048CA8D /* textpreview.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C115FD0F8EC0150048CA8D /* textpreview.cpp */; };
		92C636BB0FC5663000EE8D8D /* flooritem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C636B30FC5663000EE8D8D /* flooritem.cpp */; };
		92C636BC0FC5663000EE8D8D /* playerrelations.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C636B50FC5663000EE8D8D /* playerrelations.cpp */; };
		92C636BD0FC5663000EE8D8D /* rotationalparticle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C636B80FC5663000EE8D8D /* rotationalparticle.cpp */; };
		92C636BE0FC5663000EE8D8D /* vector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C636BA0FC5663000EE8D8D /* vector.cpp */; };
		92C636D70FC5670700EE8D8D /* charselectdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C636C40FC5670700EE8D8D /* charselectdialog.cpp */; };
		92C636D80FC5670700EE8D8D /* confirmdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C636C60FC5670700EE8D8D /* confirmdialog.cpp */; };
		92C636D90FC5670700EE8D8D /* emotepopup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C636C80FC5670700EE8D8D /* emotepopup.cpp */; };
		92C636DA0FC5670700EE8D8D /* itemamount.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C636CA0FC5670700EE8D8D /* itemamount.cpp */; };
		92C636DB0FC5670700EE8D8D /* npcdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C636CC0FC5670700EE8D8D /* npcdialog.cpp */; };
		92C636DC0FC5670700EE8D8D /* okdialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C636CE0FC5670700EE8D8D /* okdialog.cpp */; };
		92C636DD0FC5670700EE8D8D /* outfitwindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C636D00FC5670700EE8D8D /* outfitwindow.cpp */; };
		92C636DF0FC5670700EE8D8D /* windowmenu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92C636D50FC5670700EE8D8D /* windowmenu.cpp */; };
		92C6378C0FC5756400EE8D8D /* dejavusans-bold.ttf in Copy Font Files */ = {isa = PBXBuildFile; fileRef = 92C637850FC5751700EE8D8D /* dejavusans-bold.ttf */; };
		92DD76470F267B3600B2B519 /* layouthelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92DD76450F267B3600B2B519 /* layouthelper.cpp */; };
		92EA98B40FC5CB17003DC005 /* SDLMain.nib in Resources */ = {isa = PBXBuildFile; fileRef = 92EA98B30FC5CB17003DC005 /* SDLMain.nib */; };
		92EEA0030D2E20B300DDE300 /* libpng.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 9294DAA00C17E73200FCEDE9 /* libpng.framework */; };
		92EEA0050D2E20B300DDE300 /* SDL_image.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 92BC408E0BAEE818000DAB7F /* SDL_image.framework */; };
		92EEA0060D2E20B300DDE300 /* SDL_mixer.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 92BC408F0BAEE818000DAB7F /* SDL_mixer.framework */; };
		92EEA0070D2E20B300DDE300 /* SDL_net.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 92BC40900BAEE818000DAB7F /* SDL_net.framework */; };
		92EEA0080D2E20B300DDE300 /* SDL.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 92BC40910BAEE818000DAB7F /* SDL.framework */; };
		92FD19BA0DDCE53400D14E5D /* setup_players.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92FD19B30DDCE53400D14E5D /* setup_players.cpp */; };
/* End PBXBuildFile section */

/* Begin PBXCopyFilesBuildPhase section */
		924A3A520C085C190066885E /* Copy Data Files */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = data;
			dstSubfolderSpec = 7;
			files = (
				924A40570C085EF50066885E /* items.xsd in Copy Data Files */,
			);
			name = "Copy Data Files";
			runOnlyForDeploymentPostprocessing = 0;
		};
		924A3E540C085CAF0066885E /* Copy GUI Files */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = data/graphics/gui;
			dstSubfolderSpec = 7;
			files = (
				9268560211F142A000A28C33 /* colors.xml in Copy GUI Files */,
				9268560311F142A000A28C33 /* progress-indicator.png in Copy GUI Files */,
				9268560411F142A000A28C33 /* radioin_highlight.png in Copy GUI Files */,
				9268560511F142A000A28C33 /* radioout_highlight.png in Copy GUI Files */,
				9268560611F142A000A28C33 /* slider_hilight.png in Copy GUI Files */,
				9268560711F142A000A28C33 /* tab_hilight.png in Copy GUI Files */,
				9268560811F142A000A28C33 /* vscroll_highlight.png in Copy GUI Files */,
				9268560911F142A000A28C33 /* window.xml in Copy GUI Files */,
				9268560A11F142A000A28C33 /* window.png in Copy GUI Files */,
				9268560B11F142A000A28C33 /* circle-gray.png in Copy GUI Files */,
				9268560C11F142A000A28C33 /* circle-green.png in Copy GUI Files */,
				9268560D11F142A000A28C33 /* speechbubble.xml in Copy GUI Files */,
				9268560E11F142A000A28C33 /* sticky_button.png in Copy GUI Files */,
				9268560F11F142A000A28C33 /* bubble.png in Copy GUI Files */,
				9268561011F142A000A28C33 /* tab.png in Copy GUI Files */,
				9268561111F142A000A28C33 /* tabselected.png in Copy GUI Files */,
				9268561211F142A000A28C33 /* close_button.png in Copy GUI Files */,
				9268561311F142A000A28C33 /* unknown-item.png in Copy GUI Files */,
				9268561411F142A000A28C33 /* item_shortcut_bgr.png in Copy GUI Files */,
				9268561511F142A000A28C33 /* button.png in Copy GUI Files */,
				9268561611F142A000A28C33 /* button_disabled.png in Copy GUI Files */,
				9268561711F142A000A28C33 /* buttonhi.png in Copy GUI Files */,
				9268561811F142A000A28C33 /* buttonpress.png in Copy GUI Files */,
				9268561911F142A000A28C33 /* checkbox.png in Copy GUI Files */,
				9268561A11F142A000A28C33 /* deepbox.png in Copy GUI Files */,
				9268561B11F142A000A28C33 /* hscroll_left_default.png in Copy GUI Files */,
				9268561C11F142A000A28C33 /* hscroll_left_highlight.png in Copy GUI Files */,
				9268561D11F142A000A28C33 /* hscroll_left_pressed.png in Copy GUI Files */,
				9268561E11F142A000A28C33 /* hscroll_right_default.png in Copy GUI Files */,
				9268561F11F142A000A28C33 /* hscroll_right_highlight.png in Copy GUI Files */,
				9268562011F142A000A28C33 /* hscroll_right_pressed.png in Copy GUI Files */,
				9268562111F142A000A28C33 /* mouse.png in Copy GUI Files */,
				9268562211F142A000A28C33 /* radioin.png in Copy GUI Files */,
				9268562311F142A000A28C33 /* radioout.png in Copy GUI Files */,
				9268562411F142A000A28C33 /* resize.png in Copy GUI Files */,
				9268562511F142A000A28C33 /* selection.png in Copy GUI Files */,
				9268562611F142A000A28C33 /* slider.png in Copy GUI Files */,
				9268562711F142A000A28C33 /* target-cursor-blue-l.png in Copy GUI Files */,
				9268562811F142A000A28C33 /* target-cursor-blue-m.png in Copy GUI Files */,
				9268562911F142A000A28C33 /* target-cursor-blue-s.png in Copy GUI Files */,
				9268562A11F142A000A28C33 /* target-cursor-red-l.png in Copy GUI Files */,
				9268562B11F142A000A28C33 /* target-cursor-red-m.png in Copy GUI Files */,
				9268562C11F142A000A28C33 /* target-cursor-red-s.png in Copy GUI Files */,
				9268562D11F142A000A28C33 /* vscroll_down_default.png in Copy GUI Files */,
				9268562E11F142A000A28C33 /* vscroll_down_highlight.png in Copy GUI Files */,
				9268562F11F142A000A28C33 /* vscroll_down_pressed.png in Copy GUI Files */,
				9268563011F142A000A28C33 /* vscroll_grey.png in Copy GUI Files */,
				9268563111F142A000A28C33 /* vscroll_up_default.png in Copy GUI Files */,
				9268563211F142A000A28C33 /* vscroll_up_highlight.png in Copy GUI Files */,
				9268563311F142A000A28C33 /* vscroll_up_pressed.png in Copy GUI Files */,
			);
			name = "Copy GUI Files";
			runOnlyForDeploymentPostprocessing = 0;
		};
		924A40880C085FBD0066885E /* Copy Image Files */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = data/graphics/images;
			dstSubfolderSpec = 7;
			files = (
				924A408B0C0860120066885E /* login_wallpaper.png in Copy Image Files */,
			);
			name = "Copy Image Files";
			runOnlyForDeploymentPostprocessing = 0;
		};
		924A42000C0861C70066885E /* Copy Help Files */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = data/help;
			dstSubfolderSpec = 7;
			files = (
				926A299C0F23CA27005D6466 /* windows.txt in Copy Help Files */,
				924A42020C0861EC0066885E /* about.txt in Copy Help Files */,
				924A42030C0861EC0066885E /* changes.txt in Copy Help Files */,
				924A42040C0861EC0066885E /* commands.txt in Copy Help Files */,
				924A42050C0861EC0066885E /* header.txt in Copy Help Files */,
				924A42060C0861EC0066885E /* index.txt in Copy Help Files */,
				924A42070C0861EC0066885E /* skills.txt in Copy Help Files */,
				924A42080C0861EC0066885E /* support.txt in Copy Help Files */,
				924A42090C0861EC0066885E /* team.txt in Copy Help Files */,
			);
			name = "Copy Help Files";
			runOnlyForDeploymentPostprocessing = 0;
		};
		926A29AA0F23CA6D005D6466 /* Copy Font Files */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = data/fonts;
			dstSubfolderSpec = 7;
			files = (
				92C6378C0FC5756400EE8D8D /* dejavusans-bold.ttf in Copy Font Files */,
				926A299E0F23CA5A005D6466 /* dejavusans.ttf in Copy Font Files */,
			);
			name = "Copy Font Files";
			runOnlyForDeploymentPostprocessing = 0;
		};
		9273BE3C0EF34050008E56E1 /* Copy Music Files */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = data/music;
			dstSubfolderSpec = 7;
			files = (
			);
			name = "Copy Music Files";
			runOnlyForDeploymentPostprocessing = 0;
		};
		92EEA0090D2E20D100DDE300 /* Copy Frameworks */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = "";
			dstSubfolderSpec = 10;
			files = (
				922895C211F6678700AE53BB /* libSDL-1.2.0.dylib in Copy Frameworks */,
				922895C111F6678300AE53BB /* libiconv.2.dylib in Copy Frameworks */,
				922895BC11F665AF00AE53BB /* libSDL_gfx.13.dylib in Copy Frameworks */,
				922895BB11F665AB00AE53BB /* libphysfs.1.dylib in Copy Frameworks */,
				922895BA11F665A700AE53BB /* libintl.8.dylib in Copy Frameworks */,
				926857B011F15AB200A28C33 /* guichan.framework in Copy Frameworks */,
				920C631F0F37D0EF001DD274 /* SDL_ttf.framework in Copy Frameworks */,
				92EEA0030D2E20B300DDE300 /* libpng.framework in Copy Frameworks */,
				92EEA0050D2E20B300DDE300 /* SDL_image.framework in Copy Frameworks */,
				92EEA0060D2E20B300DDE300 /* SDL_mixer.framework in Copy Frameworks */,
				92EEA0070D2E20B300DDE300 /* SDL_net.framework in Copy Frameworks */,
				92EEA0080D2E20B300DDE300 /* SDL.framework in Copy Frameworks */,
			);
			name = "Copy Frameworks";
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXCopyFilesBuildPhase section */

/* Begin PBXFileReference section */
		20286C33FDCF999611CA2CEA /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = /System/Library/Frameworks/Carbon.framework; sourceTree = "<absolute>"; };
		508344B209E5C41E0093A071 /* The Mana World.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "The Mana World.app"; sourceTree = BUILT_PRODUCTS_DIR; };
		92024D2A0CF1BD9E006B55CB /* keyboardconfig.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = keyboardconfig.cpp; path = src/keyboardconfig.cpp; sourceTree = "<group>"; };
		92024D2B0CF1BD9E006B55CB /* keyboardconfig.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = keyboardconfig.h; path = src/keyboardconfig.h; sourceTree = "<group>"; };
		92024D2C0CF1BD9E006B55CB /* vector.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = vector.h; path = src/vector.h; sourceTree = "<group>"; };
		92024D360CF1BDF7006B55CB /* setup_keyboard.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = setup_keyboard.cpp; sourceTree = "<group>"; };
		92024D370CF1BDF7006B55CB /* setup_keyboard.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = setup_keyboard.h; sourceTree = "<group>"; };
		92024D5B0CF1BE5C006B55CB /* close_button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = close_button.png; sourceTree = "<group>"; };
		92024D5C0CF1BE5C006B55CB /* item_shortcut_bgr.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = item_shortcut_bgr.png; sourceTree = "<group>"; };
		92024D5D0CF1BE5C006B55CB /* unknown-item.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "unknown-item.png"; sourceTree = "<group>"; };
		92024E740CF1DCF6006B55CB /* imageloader.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = imageloader.cpp; sourceTree = "<group>"; };
		92024E750CF1DCF6006B55CB /* imageloader.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = imageloader.h; sourceTree = "<group>"; };
		92037A190ED2035A00D3712D /* SDLMain.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SDLMain.h; path = src/SDLMain.h; sourceTree = "<group>"; };
		92037A1A0ED2037300D3712D /* particleemitterprop.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = particleemitterprop.h; path = src/particleemitterprop.h; sourceTree = "<group>"; };
		92037A1B0ED2037300D3712D /* text.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = text.cpp; path = src/text.cpp; sourceTree = "<group>"; };
		92037A1C0ED2037300D3712D /* text.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = text.h; path = src/text.h; sourceTree = "<group>"; };
		92037A1D0ED2037300D3712D /* textmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = textmanager.cpp; path = src/textmanager.cpp; sourceTree = "<group>"; };
		92037A1E0ED2037300D3712D /* textmanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = textmanager.h; path = src/textmanager.h; sourceTree = "<group>"; };
		922895B411F665A200AE53BB /* libintl.8.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; path = libintl.8.dylib; sourceTree = "<group>"; };
		922895B511F665A200AE53BB /* libphysfs.1.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; path = libphysfs.1.dylib; sourceTree = "<group>"; };
		922895B611F665A200AE53BB /* libSDL_gfx.13.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; path = libSDL_gfx.13.dylib; sourceTree = "<group>"; };
		922895BF11F6677F00AE53BB /* libiconv.2.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; path = libiconv.2.dylib; sourceTree = "<group>"; };
		922895C011F6677F00AE53BB /* libSDL-1.2.0.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; path = "libSDL-1.2.0.dylib"; sourceTree = "<group>"; };
		922CD9560E3D00900074C50E /* npcdb.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = npcdb.cpp; sourceTree = "<group>"; };
		922CD9570E3D00900074C50E /* npcdb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = npcdb.h; sourceTree = "<group>"; };
		922CD95D0E3D01080074C50E /* shopitem.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = shopitem.cpp; path = src/shopitem.cpp; sourceTree = "<group>"; };
		922CD95E0E3D01080074C50E /* shopitem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = shopitem.h; path = src/shopitem.h; sourceTree = "<group>"; };
		924A39E80C0784280066885E /* animationparticle.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = animationparticle.cpp; path = src/animationparticle.cpp; sourceTree = "<group>"; };
		924A39E90C0784280066885E /* animationparticle.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = animationparticle.h; path = src/animationparticle.h; sourceTree = "<group>"; };
		924A39EA0C0784280066885E /* imageparticle.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = imageparticle.cpp; path = src/imageparticle.cpp; sourceTree = "<group>"; };
		924A39EB0C0784280066885E /* imageparticle.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = imageparticle.h; path = src/imageparticle.h; sourceTree = "<group>"; };
		924A39EC0C0784280066885E /* particle.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = particle.cpp; path = src/particle.cpp; sourceTree = "<group>"; };
		924A39ED0C0784280066885E /* particle.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = particle.h; path = src/particle.h; sourceTree = "<group>"; };
		924A39EE0C0784280066885E /* particleemitter.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = particleemitter.cpp; path = src/particleemitter.cpp; sourceTree = "<group>"; };
		924A39EF0C0784280066885E /* particleemitter.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = particleemitter.h; path = src/particleemitter.h; sourceTree = "<group>"; };
		924A39F00C0784280066885E /* textparticle.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = textparticle.cpp; path = src/textparticle.cpp; sourceTree = "<group>"; };
		924A39F10C0784280066885E /* textparticle.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = textparticle.h; path = src/textparticle.h; sourceTree = "<group>"; };
		924A3A100C07A60B0066885E /* resizegrip.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = resizegrip.cpp; sourceTree = "<group>"; };
		924A3A110C07A60B0066885E /* resizegrip.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = resizegrip.h; sourceTree = "<group>"; };
		924A3E620C085ED70066885E /* button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = button.png; sourceTree = "<group>"; };
		924A3E630C085ED70066885E /* button_disabled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = button_disabled.png; sourceTree = "<group>"; };
		924A3E640C085ED70066885E /* buttonhi.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = buttonhi.png; sourceTree = "<group>"; };
		924A3E650C085ED70066885E /* buttonpress.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = buttonpress.png; sourceTree = "<group>"; };
		924A3E660C085ED70066885E /* checkbox.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = checkbox.png; sourceTree = "<group>"; };
		924A3E680C085ED70066885E /* deepbox.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = deepbox.png; sourceTree = "<group>"; };
		924A3E6D0C085ED70066885E /* hscroll_left_default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = hscroll_left_default.png; sourceTree = "<group>"; };
		924A3E6E0C085ED70066885E /* hscroll_left_highlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = hscroll_left_highlight.png; sourceTree = "<group>"; };
		924A3E6F0C085ED70066885E /* hscroll_left_pressed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = hscroll_left_pressed.png; sourceTree = "<group>"; };
		924A3E700C085ED70066885E /* hscroll_right_default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = hscroll_right_default.png; sourceTree = "<group>"; };
		924A3E710C085ED70066885E /* hscroll_right_highlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = hscroll_right_highlight.png; sourceTree = "<group>"; };
		924A3E720C085ED70066885E /* hscroll_right_pressed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = hscroll_right_pressed.png; sourceTree = "<group>"; };
		924A3E780C085ED70066885E /* mouse.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = mouse.png; sourceTree = "<group>"; };
		924A3E790C085ED70066885E /* radioin.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = radioin.png; sourceTree = "<group>"; };
		924A3E7A0C085ED70066885E /* radioout.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = radioout.png; sourceTree = "<group>"; };
		924A3E7B0C085ED70066885E /* resize.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = resize.png; sourceTree = "<group>"; };
		924A3E7E0C085ED70066885E /* selection.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = selection.png; sourceTree = "<group>"; };
		924A3E7F0C085ED70066885E /* slider.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = slider.png; sourceTree = "<group>"; };
		924A3E800C085ED70066885E /* target-cursor-blue-l.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "target-cursor-blue-l.png"; sourceTree = "<group>"; };
		924A3E810C085ED70066885E /* target-cursor-blue-m.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "target-cursor-blue-m.png"; sourceTree = "<group>"; };
		924A3E820C085ED70066885E /* target-cursor-blue-s.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "target-cursor-blue-s.png"; sourceTree = "<group>"; };
		924A3E830C085ED70066885E /* target-cursor-red-l.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "target-cursor-red-l.png"; sourceTree = "<group>"; };
		924A3E840C085ED70066885E /* target-cursor-red-m.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "target-cursor-red-m.png"; sourceTree = "<group>"; };
		924A3E850C085ED70066885E /* target-cursor-red-s.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "target-cursor-red-s.png"; sourceTree = "<group>"; };
		924A3E880C085ED70066885E /* vscroll_down_default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = vscroll_down_default.png; sourceTree = "<group>"; };
		924A3E890C085ED70066885E /* vscroll_down_highlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = vscroll_down_highlight.png; sourceTree = "<group>"; };
		924A3E8A0C085ED70066885E /* vscroll_down_pressed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = vscroll_down_pressed.png; sourceTree = "<group>"; };
		924A3E8B0C085ED70066885E /* vscroll_grey.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = vscroll_grey.png; sourceTree = "<group>"; };
		924A3E8D0C085ED70066885E /* vscroll_up_default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = vscroll_up_default.png; sourceTree = "<group>"; };
		924A3E8E0C085ED70066885E /* vscroll_up_highlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = vscroll_up_highlight.png; sourceTree = "<group>"; };
		924A3E8F0C085ED70066885E /* vscroll_up_pressed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = vscroll_up_pressed.png; sourceTree = "<group>"; };
		924A3E9A0C085ED70066885E /* login_wallpaper.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = login_wallpaper.png; sourceTree = "<group>"; };
		924A400A0C085ED80066885E /* about.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = about.txt; sourceTree = "<group>"; };
		924A400B0C085ED80066885E /* changes.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = changes.txt; sourceTree = "<group>"; };
		924A400D0C085ED80066885E /* commands.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = commands.txt; sourceTree = "<group>"; };
		924A400E0C085ED80066885E /* header.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = header.txt; sourceTree = "<group>"; };
		924A400F0C085ED80066885E /* index.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = index.txt; sourceTree = "<group>"; };
		924A40110C085ED80066885E /* skills.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = skills.txt; sourceTree = "<group>"; };
		924A40120C085ED80066885E /* support.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = support.txt; sourceTree = "<group>"; };
		924A40130C085ED80066885E /* team.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = team.txt; sourceTree = "<group>"; };
		924A401C0C085ED80066885E /* items.xsd */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.xml; path = items.xsd; sourceTree = "<group>"; };
		924A42600C0874D00066885E /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
		925350010BC12A3200115FD5 /* imageset.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = imageset.cpp; sourceTree = "<group>"; };
		925350020BC12A3200115FD5 /* imageset.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = imageset.h; sourceTree = "<group>"; };
		926855E711F141D500A28C33 /* colors.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = colors.xml; sourceTree = "<group>"; };
		926855E811F141D500A28C33 /* progress-indicator.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "progress-indicator.png"; sourceTree = "<group>"; };
		926855E911F141D500A28C33 /* radioin_highlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = radioin_highlight.png; sourceTree = "<group>"; };
		926855EA11F141D500A28C33 /* radioout_highlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = radioout_highlight.png; sourceTree = "<group>"; };
		926855EB11F141D500A28C33 /* slider_hilight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = slider_hilight.png; sourceTree = "<group>"; };
		926855EC11F141D500A28C33 /* tab_hilight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = tab_hilight.png; sourceTree = "<group>"; };
		926855ED11F141D500A28C33 /* vscroll_highlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = vscroll_highlight.png; sourceTree = "<group>"; };
		926855EE11F141D500A28C33 /* window.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = window.xml; sourceTree = "<group>"; };
		926855FF11F141FD00A28C33 /* mana.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = mana.icns; sourceTree = "<group>"; };
		9268564B11F142D500A28C33 /* avatar.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = avatar.cpp; path = src/avatar.cpp; sourceTree = "<group>"; };
		9268564C11F142D500A28C33 /* avatar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = avatar.h; path = src/avatar.h; sourceTree = "<group>"; };
		9268564D11F142D500A28C33 /* client.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = client.cpp; path = src/client.cpp; sourceTree = "<group>"; };
		9268564E11F142D500A28C33 /* client.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = client.h; path = src/client.h; sourceTree = "<group>"; };
		9268564F11F142D500A28C33 /* party.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = party.cpp; path = src/party.cpp; sourceTree = "<group>"; };
		9268565011F142D500A28C33 /* party.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = party.h; path = src/party.h; sourceTree = "<group>"; };
		9268565111F142D500A28C33 /* textrenderer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = textrenderer.h; path = src/textrenderer.h; sourceTree = "<group>"; };
		9268565811F142F100A28C33 /* beingpopup.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = beingpopup.cpp; sourceTree = "<group>"; };
		9268565911F142F100A28C33 /* beingpopup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = beingpopup.h; sourceTree = "<group>"; };
		9268565A11F142F100A28C33 /* connectiondialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = connectiondialog.cpp; sourceTree = "<group>"; };
		9268565B11F142F100A28C33 /* connectiondialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = connectiondialog.h; sourceTree = "<group>"; };
		9268565C11F142F100A28C33 /* socialwindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = socialwindow.cpp; sourceTree = "<group>"; };
		9268565D11F142F100A28C33 /* socialwindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = socialwindow.h; sourceTree = "<group>"; };
		9268565E11F142F100A28C33 /* specialswindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = specialswindow.cpp; sourceTree = "<group>"; };
		9268565F11F142F100A28C33 /* specialswindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = specialswindow.h; sourceTree = "<group>"; };
		9268566011F142F100A28C33 /* textpopup.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = textpopup.cpp; sourceTree = "<group>"; };
		9268566111F142F100A28C33 /* textpopup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = textpopup.h; sourceTree = "<group>"; };
		9268566211F142F100A28C33 /* theme.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = theme.cpp; sourceTree = "<group>"; };
		9268566311F142F100A28C33 /* theme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = theme.h; sourceTree = "<group>"; };
		9268566411F142F100A28C33 /* userpalette.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = userpalette.cpp; sourceTree = "<group>"; };
		9268566511F142F100A28C33 /* userpalette.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = userpalette.h; sourceTree = "<group>"; };
		9268566611F142F100A28C33 /* worldselectdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = worldselectdialog.cpp; sourceTree = "<group>"; };
		9268566711F142F100A28C33 /* worldselectdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = worldselectdialog.h; sourceTree = "<group>"; };
		9268567811F1431300A28C33 /* avatarlistbox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = avatarlistbox.cpp; sourceTree = "<group>"; };
		9268567911F1431300A28C33 /* avatarlistbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = avatarlistbox.h; sourceTree = "<group>"; };
		9268567A11F1431300A28C33 /* emoteshortcutcontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = emoteshortcutcontainer.cpp; sourceTree = "<group>"; };
		9268567B11F1431300A28C33 /* emoteshortcutcontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = emoteshortcutcontainer.h; sourceTree = "<group>"; };
		9268567C11F1431300A28C33 /* flowcontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = flowcontainer.cpp; sourceTree = "<group>"; };
		9268567D11F1431300A28C33 /* flowcontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = flowcontainer.h; sourceTree = "<group>"; };
		9268567E11F1431300A28C33 /* itemcontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = itemcontainer.cpp; sourceTree = "<group>"; };
		9268567F11F1431300A28C33 /* itemcontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = itemcontainer.h; sourceTree = "<group>"; };
		9268568011F1431300A28C33 /* itemlinkhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = itemlinkhandler.cpp; sourceTree = "<group>"; };
		9268568111F1431300A28C33 /* itemlinkhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = itemlinkhandler.h; sourceTree = "<group>"; };
		9268568211F1431300A28C33 /* itemshortcutcontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = itemshortcutcontainer.cpp; sourceTree = "<group>"; };
		9268568311F1431300A28C33 /* itemshortcutcontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = itemshortcutcontainer.h; sourceTree = "<group>"; };
		9268568411F1431300A28C33 /* linkhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = linkhandler.h; sourceTree = "<group>"; };
		9268568511F1431300A28C33 /* playerbox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = playerbox.cpp; sourceTree = "<group>"; };
		9268568611F1431300A28C33 /* playerbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = playerbox.h; sourceTree = "<group>"; };
		9268568711F1431300A28C33 /* progressindicator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = progressindicator.cpp; sourceTree = "<group>"; };
		9268568811F1431300A28C33 /* progressindicator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = progressindicator.h; sourceTree = "<group>"; };
		9268568911F1431300A28C33 /* setuptab.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = setuptab.cpp; sourceTree = "<group>"; };
		9268568A11F1431300A28C33 /* setuptab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = setuptab.h; sourceTree = "<group>"; };
		9268568B11F1431300A28C33 /* shopitems.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = shopitems.cpp; sourceTree = "<group>"; };
		9268568C11F1431300A28C33 /* shopitems.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shopitems.h; sourceTree = "<group>"; };
		9268568D11F1431300A28C33 /* shoplistbox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = shoplistbox.cpp; sourceTree = "<group>"; };
		9268568E11F1431300A28C33 /* shoplistbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shoplistbox.h; sourceTree = "<group>"; };
		9268568F11F1431300A28C33 /* shortcutcontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = shortcutcontainer.cpp; sourceTree = "<group>"; };
		9268569011F1431300A28C33 /* shortcutcontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shortcutcontainer.h; sourceTree = "<group>"; };
		9268569111F1431300A28C33 /* table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = table.cpp; sourceTree = "<group>"; };
		9268569211F1431300A28C33 /* table.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = table.h; sourceTree = "<group>"; };
		9268569311F1431300A28C33 /* tablemodel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tablemodel.cpp; sourceTree = "<group>"; };
		9268569411F1431300A28C33 /* tablemodel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tablemodel.h; sourceTree = "<group>"; };
		9268569511F1431300A28C33 /* vertcontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = vertcontainer.cpp; sourceTree = "<group>"; };
		9268569611F1431300A28C33 /* vertcontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = vertcontainer.h; sourceTree = "<group>"; };
		926856B511F1433300A28C33 /* charhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = charhandler.cpp; sourceTree = "<group>"; };
		926856B611F1433300A28C33 /* download.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = download.cpp; sourceTree = "<group>"; };
		926856B711F1433300A28C33 /* download.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = download.h; sourceTree = "<group>"; };
		926856B811F1433300A28C33 /* gamehandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gamehandler.h; sourceTree = "<group>"; };
		926856B911F1433300A28C33 /* specialhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = specialhandler.h; sourceTree = "<group>"; };
		926856BA11F1433300A28C33 /* worldinfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = worldinfo.h; sourceTree = "<group>"; };
		926856C011F1433E00A28C33 /* adminhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = adminhandler.cpp; sourceTree = "<group>"; };
		926856C111F1433E00A28C33 /* adminhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = adminhandler.h; sourceTree = "<group>"; };
		926856C211F1433E00A28C33 /* beinghandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = beinghandler.cpp; sourceTree = "<group>"; };
		926856C311F1433E00A28C33 /* beinghandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = beinghandler.h; sourceTree = "<group>"; };
		926856C411F1433E00A28C33 /* buysellhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = buysellhandler.cpp; sourceTree = "<group>"; };
		926856C511F1433E00A28C33 /* buysellhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = buysellhandler.h; sourceTree = "<group>"; };
		926856C611F1433E00A28C33 /* charhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = charhandler.cpp; sourceTree = "<group>"; };
		926856C711F1433E00A28C33 /* charhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = charhandler.h; sourceTree = "<group>"; };
		926856C811F1433E00A28C33 /* chathandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chathandler.cpp; sourceTree = "<group>"; };
		926856C911F1433E00A28C33 /* chathandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chathandler.h; sourceTree = "<group>"; };
		926856CA11F1433E00A28C33 /* connection.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = connection.cpp; sourceTree = "<group>"; };
		926856CB11F1433E00A28C33 /* connection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = connection.h; sourceTree = "<group>"; };
		926856CC11F1433E00A28C33 /* effecthandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = effecthandler.cpp; sourceTree = "<group>"; };
		926856CD11F1433E00A28C33 /* effecthandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = effecthandler.h; sourceTree = "<group>"; };
		926856CE11F1433E00A28C33 /* gamehandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = gamehandler.cpp; sourceTree = "<group>"; };
		926856CF11F1433E00A28C33 /* gamehandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gamehandler.h; sourceTree = "<group>"; };
		926856D011F1433E00A28C33 /* generalhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = generalhandler.cpp; sourceTree = "<group>"; };
		926856D111F1433E00A28C33 /* generalhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = generalhandler.h; sourceTree = "<group>"; };
		926856D211F1433E00A28C33 /* guildhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = guildhandler.cpp; sourceTree = "<group>"; };
		926856D311F1433E00A28C33 /* guildhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = guildhandler.h; sourceTree = "<group>"; };
		926856D411F1433E00A28C33 /* internal.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = internal.cpp; sourceTree = "<group>"; };
		926856D511F1433E00A28C33 /* internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = internal.h; sourceTree = "<group>"; };
		926856D611F1433E00A28C33 /* inventoryhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = inventoryhandler.cpp; sourceTree = "<group>"; };
		926856D711F1433E00A28C33 /* inventoryhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = inventoryhandler.h; sourceTree = "<group>"; };
		926856D811F1433E00A28C33 /* itemhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = itemhandler.cpp; sourceTree = "<group>"; };
		926856D911F1433E00A28C33 /* itemhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = itemhandler.h; sourceTree = "<group>"; };
		926856DA11F1433E00A28C33 /* loginhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = loginhandler.cpp; sourceTree = "<group>"; };
		926856DB11F1433E00A28C33 /* loginhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = loginhandler.h; sourceTree = "<group>"; };
		926856DC11F1433E00A28C33 /* messagehandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = messagehandler.cpp; sourceTree = "<group>"; };
		926856DD11F1433E00A28C33 /* messagehandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = messagehandler.h; sourceTree = "<group>"; };
		926856DE11F1433E00A28C33 /* messagein.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = messagein.cpp; sourceTree = "<group>"; };
		926856DF11F1433E00A28C33 /* messagein.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = messagein.h; sourceTree = "<group>"; };
		926856E011F1433E00A28C33 /* messageout.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = messageout.cpp; sourceTree = "<group>"; };
		926856E111F1433E00A28C33 /* messageout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = messageout.h; sourceTree = "<group>"; };
		926856E211F1433E00A28C33 /* network.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = network.cpp; sourceTree = "<group>"; };
		926856E311F1433E00A28C33 /* network.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = network.h; sourceTree = "<group>"; };
		926856E411F1433E00A28C33 /* npchandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = npchandler.cpp; sourceTree = "<group>"; };
		926856E511F1433E00A28C33 /* npchandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = npchandler.h; sourceTree = "<group>"; };
		926856E611F1433E00A28C33 /* partyhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = partyhandler.cpp; sourceTree = "<group>"; };
		926856E711F1433E00A28C33 /* partyhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = partyhandler.h; sourceTree = "<group>"; };
		926856E811F1433E00A28C33 /* playerhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = playerhandler.cpp; sourceTree = "<group>"; };
		926856E911F1433E00A28C33 /* playerhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = playerhandler.h; sourceTree = "<group>"; };
		926856EA11F1433E00A28C33 /* protocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = protocol.h; sourceTree = "<group>"; };
		926856EB11F1433E00A28C33 /* specialhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = specialhandler.cpp; sourceTree = "<group>"; };
		926856EC11F1433E00A28C33 /* specialhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = specialhandler.h; sourceTree = "<group>"; };
		926856ED11F1433E00A28C33 /* stats.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = stats.cpp; sourceTree = "<group>"; };
		926856EE11F1433E00A28C33 /* stats.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stats.h; sourceTree = "<group>"; };
		926856EF11F1433E00A28C33 /* tradehandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tradehandler.cpp; sourceTree = "<group>"; };
		926856F011F1433E00A28C33 /* tradehandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tradehandler.h; sourceTree = "<group>"; };
		926856F211F1433E00A28C33 /* adminhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = adminhandler.cpp; sourceTree = "<group>"; };
		926856F311F1433E00A28C33 /* adminhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = adminhandler.h; sourceTree = "<group>"; };
		926856F411F1433E00A28C33 /* beinghandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = beinghandler.cpp; sourceTree = "<group>"; };
		926856F511F1433E00A28C33 /* beinghandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = beinghandler.h; sourceTree = "<group>"; };
		926856F611F1433E00A28C33 /* buysellhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = buysellhandler.cpp; sourceTree = "<group>"; };
		926856F711F1433E00A28C33 /* buysellhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = buysellhandler.h; sourceTree = "<group>"; };
		926856F811F1433E00A28C33 /* charserverhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = charserverhandler.cpp; sourceTree = "<group>"; };
		926856F911F1433E00A28C33 /* charserverhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = charserverhandler.h; sourceTree = "<group>"; };
		926856FA11F1433F00A28C33 /* chathandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chathandler.cpp; sourceTree = "<group>"; };
		926856FB11F1433F00A28C33 /* chathandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chathandler.h; sourceTree = "<group>"; };
		926856FC11F1433F00A28C33 /* gamehandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = gamehandler.cpp; sourceTree = "<group>"; };
		926856FD11F1433F00A28C33 /* gamehandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gamehandler.h; sourceTree = "<group>"; };
		926856FE11F1433F00A28C33 /* generalhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = generalhandler.cpp; sourceTree = "<group>"; };
		926856FF11F1433F00A28C33 /* generalhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = generalhandler.h; sourceTree = "<group>"; };
		9268570111F1433F00A28C33 /* guildtab.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = guildtab.cpp; sourceTree = "<group>"; };
		9268570211F1433F00A28C33 /* guildtab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = guildtab.h; sourceTree = "<group>"; };
		9268570311F1433F00A28C33 /* partytab.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = partytab.cpp; sourceTree = "<group>"; };
		9268570411F1433F00A28C33 /* partytab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = partytab.h; sourceTree = "<group>"; };
		9268570511F1433F00A28C33 /* guildhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = guildhandler.cpp; sourceTree = "<group>"; };
		9268570611F1433F00A28C33 /* guildhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = guildhandler.h; sourceTree = "<group>"; };
		9268570711F1433F00A28C33 /* inventoryhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = inventoryhandler.cpp; sourceTree = "<group>"; };
		9268570811F1433F00A28C33 /* inventoryhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = inventoryhandler.h; sourceTree = "<group>"; };
		9268570911F1433F00A28C33 /* itemhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = itemhandler.cpp; sourceTree = "<group>"; };
		9268570A11F1433F00A28C33 /* itemhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = itemhandler.h; sourceTree = "<group>"; };
		9268570B11F1433F00A28C33 /* loginhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = loginhandler.cpp; sourceTree = "<group>"; };
		9268570C11F1433F00A28C33 /* loginhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = loginhandler.h; sourceTree = "<group>"; };
		9268570D11F1433F00A28C33 /* messagehandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = messagehandler.cpp; sourceTree = "<group>"; };
		9268570E11F1433F00A28C33 /* messagehandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = messagehandler.h; sourceTree = "<group>"; };
		9268570F11F1433F00A28C33 /* messagein.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = messagein.cpp; sourceTree = "<group>"; };
		9268571011F1433F00A28C33 /* messagein.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = messagein.h; sourceTree = "<group>"; };
		9268571111F1433F00A28C33 /* messageout.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = messageout.cpp; sourceTree = "<group>"; };
		9268571211F1433F00A28C33 /* messageout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = messageout.h; sourceTree = "<group>"; };
		9268571311F1433F00A28C33 /* network.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = network.cpp; sourceTree = "<group>"; };
		9268571411F1433F00A28C33 /* network.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = network.h; sourceTree = "<group>"; };
		9268571511F1433F00A28C33 /* npchandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = npchandler.cpp; sourceTree = "<group>"; };
		9268571611F1433F00A28C33 /* npchandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = npchandler.h; sourceTree = "<group>"; };
		9268571711F1433F00A28C33 /* partyhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = partyhandler.cpp; sourceTree = "<group>"; };
		9268571811F1433F00A28C33 /* partyhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = partyhandler.h; sourceTree = "<group>"; };
		9268571911F1433F00A28C33 /* playerhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = playerhandler.cpp; sourceTree = "<group>"; };
		9268571A11F1433F00A28C33 /* playerhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = playerhandler.h; sourceTree = "<group>"; };
		9268571B11F1433F00A28C33 /* protocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = protocol.h; sourceTree = "<group>"; };
		9268571C11F1433F00A28C33 /* specialhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = specialhandler.cpp; sourceTree = "<group>"; };
		9268571D11F1433F00A28C33 /* specialhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = specialhandler.h; sourceTree = "<group>"; };
		9268571E11F1433F00A28C33 /* token.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = token.h; sourceTree = "<group>"; };
		9268571F11F1433F00A28C33 /* tradehandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tradehandler.cpp; sourceTree = "<group>"; };
		9268572011F1433F00A28C33 /* tradehandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tradehandler.h; sourceTree = "<group>"; };
		9268577D11F1435200A28C33 /* ambientlayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ambientlayer.cpp; sourceTree = "<group>"; };
		9268577E11F1435200A28C33 /* ambientlayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ambientlayer.h; sourceTree = "<group>"; };
		9268578111F1435F00A28C33 /* copynpaste.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = copynpaste.cpp; sourceTree = "<group>"; };
		9268578211F1435F00A28C33 /* copynpaste.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = copynpaste.h; sourceTree = "<group>"; };
		9268578311F1435F00A28C33 /* mkdir.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mkdir.cpp; sourceTree = "<group>"; };
		9268578411F1435F00A28C33 /* mkdir.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mkdir.h; sourceTree = "<group>"; };
		9268578511F1435F00A28C33 /* specialfolder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = specialfolder.cpp; sourceTree = "<group>"; };
		9268578611F1435F00A28C33 /* specialfolder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = specialfolder.h; sourceTree = "<group>"; };
		926857AB11F15A9300A28C33 /* guichan.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = guichan.framework; path = /Library/Frameworks/guichan.framework; sourceTree = "<absolute>"; };
		926A29440F23BD88005D6466 /* layout.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = layout.cpp; sourceTree = "<group>"; };
		926A29450F23BD88005D6466 /* layout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = layout.h; sourceTree = "<group>"; };
		926A29460F23BD88005D6466 /* tab.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tab.cpp; sourceTree = "<group>"; };
		926A29470F23BD88005D6466 /* tab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tab.h; sourceTree = "<group>"; };
		926A29480F23BD88005D6466 /* tabbedarea.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tabbedarea.cpp; sourceTree = "<group>"; };
		926A29490F23BD88005D6466 /* tabbedarea.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tabbedarea.h; sourceTree = "<group>"; };
		926A29520F23BD9E005D6466 /* sdlinput.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sdlinput.cpp; sourceTree = "<group>"; };
		926A29530F23BD9E005D6466 /* sdlinput.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sdlinput.h; sourceTree = "<group>"; };
		926A29540F23BD9E005D6466 /* truetypefont.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = truetypefont.cpp; sourceTree = "<group>"; };
		926A29550F23BD9E005D6466 /* truetypefont.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = truetypefont.h; sourceTree = "<group>"; };
		926A295A0F23BDB1005D6466 /* gettext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gettext.h; sourceTree = "<group>"; };
		926A295B0F23BDB1005D6466 /* mutex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mutex.h; sourceTree = "<group>"; };
		926A29790F23C155005D6466 /* SDL_ttf.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL_ttf.framework; path = /Library/Frameworks/SDL_ttf.framework; sourceTree = "<absolute>"; };
		926A297E0F23C18E005D6466 /* tab.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = tab.png; sourceTree = "<group>"; };
		926A297F0F23C18E005D6466 /* tabselected.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = tabselected.png; sourceTree = "<group>"; };
		926A29840F23C1C8005D6466 /* windows.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = windows.txt; sourceTree = "<group>"; };
		926A29980F23C988005D6466 /* dejavusans.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = dejavusans.ttf; path = fonts/dejavusans.ttf; sourceTree = "<group>"; };
		926F9CF60DB005FA00AACD26 /* itemshortcut.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = itemshortcut.cpp; path = src/itemshortcut.cpp; sourceTree = "<group>"; };
		926F9CF70DB005FA00AACD26 /* itemshortcut.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = itemshortcut.h; path = src/itemshortcut.h; sourceTree = "<group>"; };
		9273BDFB0EF33DFD008E56E1 /* COPYING */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = COPYING; sourceTree = "<group>"; };
		9273BDFD0EF33E1A008E56E1 /* AUTHORS */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AUTHORS; sourceTree = "<group>"; };
		9273BDFE0EF33E1A008E56E1 /* README */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README; sourceTree = "<group>"; };
		9273BE040EF33FB3008E56E1 /* particlecontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = particlecontainer.cpp; path = src/particlecontainer.cpp; sourceTree = "<group>"; };
		9273BE050EF33FB3008E56E1 /* particlecontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = particlecontainer.h; path = src/particlecontainer.h; sourceTree = "<group>"; };
		9273BE060EF33FB3008E56E1 /* statuseffect.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = statuseffect.cpp; path = src/statuseffect.cpp; sourceTree = "<group>"; };
		9273BE070EF33FB3008E56E1 /* statuseffect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = statuseffect.h; path = src/statuseffect.h; sourceTree = "<group>"; };
		928B50E40F2FB5430011C755 /* bubble.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = bubble.png; sourceTree = "<group>"; };
		9294DAA00C17E73200FCEDE9 /* libpng.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = libpng.framework; path = /Library/Frameworks/libpng.framework; sourceTree = "<absolute>"; };
		92A244B50F935FB400B7719B /* container.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = container.cpp; sourceTree = "<group>"; };
		92A244B60F935FB400B7719B /* container.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = container.h; sourceTree = "<group>"; };
		92A245C20F93626900B7719B /* desktop.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = desktop.cpp; sourceTree = "<group>"; };
		92A245C30F93626900B7719B /* desktop.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = desktop.h; sourceTree = "<group>"; };
		92A4CC9D0D1C622E00CA28FB /* dye.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dye.cpp; sourceTree = "<group>"; };
		92BC3ECA0BAEE55A000DAB7F /* animatedsprite.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = animatedsprite.cpp; path = src/animatedsprite.cpp; sourceTree = "<group>"; };
		92BC3ECB0BAEE55A000DAB7F /* animatedsprite.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = animatedsprite.h; path = src/animatedsprite.h; sourceTree = "<group>"; };
		92BC3ECC0BAEE55A000DAB7F /* being.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = being.cpp; path = src/being.cpp; sourceTree = "<group>"; };
		92BC3ECD0BAEE55A000DAB7F /* being.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = being.h; path = src/being.h; sourceTree = "<group>"; };
		92BC3ECE0BAEE55A000DAB7F /* beingmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = beingmanager.cpp; path = src/beingmanager.cpp; sourceTree = "<group>"; };
		92BC3ECF0BAEE55A000DAB7F /* beingmanager.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = beingmanager.h; path = src/beingmanager.h; sourceTree = "<group>"; };
		92BC3ED10BAEE55A000DAB7F /* configlistener.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = configlistener.h; path = src/configlistener.h; sourceTree = "<group>"; };
		92BC3ED20BAEE55A000DAB7F /* configuration.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = configuration.cpp; path = src/configuration.cpp; sourceTree = "<group>"; };
		92BC3ED30BAEE55A000DAB7F /* configuration.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = configuration.h; path = src/configuration.h; sourceTree = "<group>"; };
		92BC3EE70BAEE55A000DAB7F /* equipment.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = equipment.h; path = src/equipment.h; sourceTree = "<group>"; };
		92BC3EEA0BAEE55A000DAB7F /* flooritemmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = flooritemmanager.cpp; path = src/flooritemmanager.cpp; sourceTree = "<group>"; };
		92BC3EEB0BAEE55A000DAB7F /* flooritemmanager.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = flooritemmanager.h; path = src/flooritemmanager.h; sourceTree = "<group>"; };
		92BC3EEC0BAEE55A000DAB7F /* game.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = game.cpp; path = src/game.cpp; sourceTree = "<group>"; };
		92BC3EED0BAEE55A000DAB7F /* game.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = game.h; path = src/game.h; sourceTree = "<group>"; };
		92BC3EEE0BAEE55A000DAB7F /* graphics.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = graphics.cpp; path = src/graphics.cpp; sourceTree = "<group>"; };
		92BC3EEF0BAEE55A000DAB7F /* graphics.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = graphics.h; path = src/graphics.h; sourceTree = "<group>"; };
		92BC3EF90BAEE55A000DAB7F /* buy.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = buy.cpp; sourceTree = "<group>"; };
		92BC3EFA0BAEE55A000DAB7F /* buy.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = buy.h; sourceTree = "<group>"; };
		92BC3EFB0BAEE55A000DAB7F /* buysell.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = buysell.cpp; sourceTree = "<group>"; };
		92BC3EFC0BAEE55A000DAB7F /* buysell.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = buysell.h; sourceTree = "<group>"; };
		92BC3F030BAEE55A000DAB7F /* chat.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = chat.cpp; sourceTree = "<group>"; };
		92BC3F040BAEE55A000DAB7F /* chat.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = chat.h; sourceTree = "<group>"; };
		92BC3F0D0BAEE55A000DAB7F /* debugwindow.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = debugwindow.cpp; sourceTree = "<group>"; };
		92BC3F0E0BAEE55A000DAB7F /* debugwindow.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = debugwindow.h; sourceTree = "<group>"; };
		92BC3F0F0BAEE55A000DAB7F /* equipmentwindow.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = equipmentwindow.cpp; sourceTree = "<group>"; };
		92BC3F100BAEE55A000DAB7F /* equipmentwindow.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = equipmentwindow.h; sourceTree = "<group>"; };
		92BC3F110BAEE55A000DAB7F /* focushandler.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = focushandler.cpp; sourceTree = "<group>"; };
		92BC3F120BAEE55A000DAB7F /* focushandler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = focushandler.h; sourceTree = "<group>"; };
		92BC3F150BAEE55A000DAB7F /* gui.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = gui.cpp; sourceTree = "<group>"; };
		92BC3F160BAEE55A000DAB7F /* gui.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = gui.h; sourceTree = "<group>"; };
		92BC3F190BAEE55A000DAB7F /* help.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = help.cpp; sourceTree = "<group>"; };
		92BC3F1A0BAEE55A000DAB7F /* help.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = help.h; sourceTree = "<group>"; };
		92BC3F1D0BAEE55A000DAB7F /* inventorywindow.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = inventorywindow.cpp; sourceTree = "<group>"; };
		92BC3F1E0BAEE55A000DAB7F /* inventorywindow.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = inventorywindow.h; sourceTree = "<group>"; };
		92BC3F260BAEE55A000DAB7F /* login.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = login.cpp; sourceTree = "<group>"; };
		92BC3F270BAEE55A000DAB7F /* login.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = login.h; sourceTree = "<group>"; };
		92BC3F2A0BAEE55A000DAB7F /* minimap.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = minimap.cpp; sourceTree = "<group>"; };
		92BC3F2B0BAEE55A000DAB7F /* minimap.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = minimap.h; sourceTree = "<group>"; };
		92BC3F2C0BAEE55A000DAB7F /* ministatus.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ministatus.cpp; sourceTree = "<group>"; };
		92BC3F2D0BAEE55A000DAB7F /* ministatus.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ministatus.h; sourceTree = "<group>"; };
		92BC3F3A0BAEE55A000DAB7F /* popupmenu.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = popupmenu.cpp; sourceTree = "<group>"; };
		92BC3F3B0BAEE55A000DAB7F /* popupmenu.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = popupmenu.h; sourceTree = "<group>"; };
		92BC3F400BAEE55A000DAB7F /* register.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = register.cpp; sourceTree = "<group>"; };
		92BC3F410BAEE55A000DAB7F /* register.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = register.h; sourceTree = "<group>"; };
		92BC3F450BAEE55A000DAB7F /* sell.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = sell.cpp; sourceTree = "<group>"; };
		92BC3F460BAEE55A000DAB7F /* sell.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = sell.h; sourceTree = "<group>"; };
		92BC3F470BAEE55A000DAB7F /* setup.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = setup.cpp; sourceTree = "<group>"; };
		92BC3F480BAEE55A000DAB7F /* setup.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = setup.h; sourceTree = "<group>"; };
		92BC3F490BAEE55A000DAB7F /* setup_audio.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = setup_audio.cpp; sourceTree = "<group>"; };
		92BC3F4A0BAEE55A000DAB7F /* setup_audio.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = setup_audio.h; sourceTree = "<group>"; };
		92BC3F4B0BAEE55A000DAB7F /* setup_joystick.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = setup_joystick.cpp; sourceTree = "<group>"; };
		92BC3F4C0BAEE55A000DAB7F /* setup_joystick.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = setup_joystick.h; sourceTree = "<group>"; };
		92BC3F4D0BAEE55A000DAB7F /* setup_video.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = setup_video.cpp; sourceTree = "<group>"; };
		92BC3F4E0BAEE55A000DAB7F /* setup_video.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = setup_video.h; sourceTree = "<group>"; };
		92BC3F600BAEE55B000DAB7F /* trade.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = trade.cpp; sourceTree = "<group>"; };
		92BC3F610BAEE55B000DAB7F /* trade.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = trade.h; sourceTree = "<group>"; };
		92BC3F620BAEE55B000DAB7F /* updatewindow.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = updatewindow.cpp; sourceTree = "<group>"; };
		92BC3F630BAEE55B000DAB7F /* updatewindow.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = updatewindow.h; sourceTree = "<group>"; };
		92BC3F660BAEE55B000DAB7F /* viewport.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = viewport.cpp; sourceTree = "<group>"; };
		92BC3F670BAEE55B000DAB7F /* viewport.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = viewport.h; sourceTree = "<group>"; };
		92BC3F6C0BAEE55B000DAB7F /* guichanfwd.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = guichanfwd.h; path = src/guichanfwd.h; sourceTree = "<group>"; };
		92BC3F6D0BAEE55B000DAB7F /* inventory.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = inventory.cpp; path = src/inventory.cpp; sourceTree = "<group>"; };
		92BC3F6E0BAEE55B000DAB7F /* inventory.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = inventory.h; path = src/inventory.h; sourceTree = "<group>"; };
		92BC3F6F0BAEE55B000DAB7F /* item.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = item.cpp; path = src/item.cpp; sourceTree = "<group>"; };
		92BC3F700BAEE55B000DAB7F /* item.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = item.h; path = src/item.h; sourceTree = "<group>"; };
		92BC3F710BAEE55B000DAB7F /* joystick.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = joystick.cpp; path = src/joystick.cpp; sourceTree = "<group>"; };
		92BC3F720BAEE55B000DAB7F /* joystick.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = joystick.h; path = src/joystick.h; sourceTree = "<group>"; };
		92BC3F730BAEE55B000DAB7F /* localplayer.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = localplayer.cpp; path = src/localplayer.cpp; sourceTree = "<group>"; };
		92BC3F740BAEE55B000DAB7F /* localplayer.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = localplayer.h; path = src/localplayer.h; sourceTree = "<group>"; };
		92BC3F760BAEE55B000DAB7F /* log.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = log.cpp; path = src/log.cpp; sourceTree = "<group>"; };
		92BC3F770BAEE55B000DAB7F /* log.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = log.h; path = src/log.h; sourceTree = "<group>"; };
		92BC3F790BAEE55B000DAB7F /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = main.cpp; path = src/main.cpp; sourceTree = "<group>"; };
		92BC3F7A0BAEE55B000DAB7F /* main.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = main.h; path = src/main.h; sourceTree = "<group>"; };
		92BC3F7C0BAEE55B000DAB7F /* map.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = map.cpp; path = src/map.cpp; sourceTree = "<group>"; };
		92BC3F7D0BAEE55B000DAB7F /* map.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = map.h; path = src/map.h; sourceTree = "<group>"; };
		92BC3F7E0BAEE55B000DAB7F /* monster.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = monster.cpp; path = src/monster.cpp; sourceTree = "<group>"; };
		92BC3F7F0BAEE55B000DAB7F /* monster.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = monster.h; path = src/monster.h; sourceTree = "<group>"; };
		92BC3F880BAEE55B000DAB7F /* chathandler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = chathandler.h; sourceTree = "<group>"; };
		92BC3F8C0BAEE55B000DAB7F /* inventoryhandler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = inventoryhandler.h; sourceTree = "<group>"; };
		92BC3F900BAEE55B000DAB7F /* loginhandler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = loginhandler.h; sourceTree = "<group>"; };
		92BC3F940BAEE55B000DAB7F /* messagehandler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = messagehandler.h; sourceTree = "<group>"; };
		92BC3F950BAEE55B000DAB7F /* messagein.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = messagein.cpp; sourceTree = "<group>"; };
		92BC3F960BAEE55B000DAB7F /* messagein.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = messagein.h; sourceTree = "<group>"; };
		92BC3F970BAEE55B000DAB7F /* messageout.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = messageout.cpp; sourceTree = "<group>"; };
		92BC3F980BAEE55B000DAB7F /* messageout.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = messageout.h; sourceTree = "<group>"; };
		92BC3F9C0BAEE55B000DAB7F /* npchandler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = npchandler.h; sourceTree = "<group>"; };
		92BC3F9E0BAEE55B000DAB7F /* playerhandler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = playerhandler.h; sourceTree = "<group>"; };
		92BC3FA40BAEE55B000DAB7F /* tradehandler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = tradehandler.h; sourceTree = "<group>"; };
		92BC3FA50BAEE55B000DAB7F /* npc.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = npc.cpp; path = src/npc.cpp; sourceTree = "<group>"; };
		92BC3FA60BAEE55B000DAB7F /* npc.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = npc.h; path = src/npc.h; sourceTree = "<group>"; };
		92BC3FA70BAEE55B000DAB7F /* openglgraphics.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = openglgraphics.cpp; path = src/openglgraphics.cpp; sourceTree = "<group>"; };
		92BC3FA80BAEE55B000DAB7F /* openglgraphics.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = openglgraphics.h; path = src/openglgraphics.h; sourceTree = "<group>"; };
		92BC3FBA0BAEE55B000DAB7F /* player.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = player.cpp; path = src/player.cpp; sourceTree = "<group>"; };
		92BC3FBB0BAEE55B000DAB7F /* player.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = player.h; path = src/player.h; sourceTree = "<group>"; };
		92BC3FBC0BAEE55B000DAB7F /* properties.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = properties.h; path = src/properties.h; sourceTree = "<group>"; };
		92BC3FBE0BAEE55B000DAB7F /* action.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = action.cpp; sourceTree = "<group>"; };
		92BC3FBF0BAEE55B000DAB7F /* action.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = action.h; sourceTree = "<group>"; };
		92BC3FC00BAEE55B000DAB7F /* ambientoverlay.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ambientoverlay.cpp; sourceTree = "<group>"; };
		92BC3FC10BAEE55B000DAB7F /* ambientoverlay.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ambientoverlay.h; sourceTree = "<group>"; };
		92BC3FC20BAEE55B000DAB7F /* animation.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = animation.cpp; sourceTree = "<group>"; };
		92BC3FC30BAEE55B000DAB7F /* animation.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = animation.h; sourceTree = "<group>"; };
		92BC3FC90BAEE55B000DAB7F /* image.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = image.cpp; sourceTree = "<group>"; };
		92BC3FCA0BAEE55B000DAB7F /* image.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = image.h; sourceTree = "<group>"; };
		92BC3FCB0BAEE55B000DAB7F /* imagewriter.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = imagewriter.cpp; sourceTree = "<group>"; };
		92BC3FCC0BAEE55B000DAB7F /* imagewriter.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = imagewriter.h; sourceTree = "<group>"; };
		92BC3FCD0BAEE55B000DAB7F /* itemdb.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = itemdb.cpp; sourceTree = "<group>"; };
		92BC3FCE0BAEE55B000DAB7F /* itemdb.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = itemdb.h; sourceTree = "<group>"; };
		92BC3FCF0BAEE55B000DAB7F /* iteminfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = iteminfo.cpp; sourceTree = "<group>"; };
		92BC3FD00BAEE55B000DAB7F /* iteminfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = iteminfo.h; sourceTree = "<group>"; };
		92BC3FD10BAEE55B000DAB7F /* mapreader.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = mapreader.cpp; sourceTree = "<group>"; };
		92BC3FD20BAEE55B000DAB7F /* mapreader.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = mapreader.h; sourceTree = "<group>"; };
		92BC3FD30BAEE55B000DAB7F /* monsterdb.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = monsterdb.cpp; sourceTree = "<group>"; };
		92BC3FD40BAEE55B000DAB7F /* monsterdb.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = monsterdb.h; sourceTree = "<group>"; };
		92BC3FD50BAEE55B000DAB7F /* monsterinfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = monsterinfo.cpp; sourceTree = "<group>"; };
		92BC3FD60BAEE55B000DAB7F /* monsterinfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = monsterinfo.h; sourceTree = "<group>"; };
		92BC3FD70BAEE55B000DAB7F /* music.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = music.cpp; sourceTree = "<group>"; };
		92BC3FD80BAEE55B000DAB7F /* music.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = music.h; sourceTree = "<group>"; };
		92BC3FDB0BAEE55B000DAB7F /* resource.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = resource.cpp; sourceTree = "<group>"; };
		92BC3FDC0BAEE55B000DAB7F /* resource.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = resource.h; sourceTree = "<group>"; };
		92BC3FDD0BAEE55B000DAB7F /* resourcemanager.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = resourcemanager.cpp; sourceTree = "<group>"; };
		92BC3FDE0BAEE55B000DAB7F /* resourcemanager.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = resourcemanager.h; sourceTree = "<group>"; };
		92BC3FE10BAEE55B000DAB7F /* soundeffect.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = soundeffect.cpp; sourceTree = "<group>"; };
		92BC3FE20BAEE55B000DAB7F /* soundeffect.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = soundeffect.h; sourceTree = "<group>"; };
		92BC3FE30BAEE55B000DAB7F /* spritedef.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = spritedef.cpp; sourceTree = "<group>"; };
		92BC3FE40BAEE55B000DAB7F /* spritedef.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = spritedef.h; sourceTree = "<group>"; };
		92BC3FE80BAEE55B000DAB7F /* simpleanimation.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = simpleanimation.cpp; path = src/simpleanimation.cpp; sourceTree = "<group>"; };
		92BC3FE90BAEE55B000DAB7F /* simpleanimation.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = simpleanimation.h; path = src/simpleanimation.h; sourceTree = "<group>"; };
		92BC3FEA0BAEE55B000DAB7F /* sound.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = sound.cpp; path = src/sound.cpp; sourceTree = "<group>"; };
		92BC3FEB0BAEE55B000DAB7F /* sound.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = sound.h; path = src/sound.h; sourceTree = "<group>"; };
		92BC3FEC0BAEE55B000DAB7F /* sprite.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = sprite.h; path = src/sprite.h; sourceTree = "<group>"; };
		92BC3FED0BAEE55B000DAB7F /* tileset.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = tileset.h; path = src/tileset.h; sourceTree = "<group>"; };
		92BC3FEF0BAEE55B000DAB7F /* base64.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = base64.cpp; sourceTree = "<group>"; };
		92BC3FF00BAEE55B000DAB7F /* base64.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = base64.h; sourceTree = "<group>"; };
		92BC3FF10BAEE55B000DAB7F /* dtor.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = dtor.h; sourceTree = "<group>"; };
		92BC3FF40BAEE55B000DAB7F /* xml.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = xml.cpp; sourceTree = "<group>"; };
		92BC3FF50BAEE55B000DAB7F /* xml.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = xml.h; sourceTree = "<group>"; };
		92BC408E0BAEE818000DAB7F /* SDL_image.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL_image.framework; path = /Library/Frameworks/SDL_image.framework; sourceTree = "<absolute>"; };
		92BC408F0BAEE818000DAB7F /* SDL_mixer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL_mixer.framework; path = /Library/Frameworks/SDL_mixer.framework; sourceTree = "<absolute>"; };
		92BC40900BAEE818000DAB7F /* SDL_net.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL_net.framework; path = /Library/Frameworks/SDL_net.framework; sourceTree = "<absolute>"; };
		92BC40910BAEE818000DAB7F /* SDL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL.framework; path = /Library/Frameworks/SDL.framework; sourceTree = "<absolute>"; };
		92BC40C60BAEEDAA000DAB7F /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = /Developer/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks/OpenGL.framework; sourceTree = "<absolute>"; };
		92BC40D80BAEEED3000DAB7F /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = /Developer/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks/IOKit.framework; sourceTree = "<absolute>"; };
		92BC40E50BAEF54B000DAB7F /* SDLMain.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = SDLMain.m; path = src/SDLMain.m; sourceTree = "<group>"; };
		92BC40E80BAEF57D000DAB7F /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /Developer/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks/Cocoa.framework; sourceTree = "<absolute>"; };
		92C1150C0F8EBB360048CA8D /* window.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = window.cpp; sourceTree = "<group>"; };
		92C1150D0F8EBB360048CA8D /* window.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = window.h; sourceTree = "<group>"; };
		92C115100F8EBB550048CA8D /* itempopup.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = itempopup.cpp; sourceTree = "<group>"; };
		92C115110F8EBB550048CA8D /* itempopup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = itempopup.h; sourceTree = "<group>"; };
		92C115140F8EBB830048CA8D /* listbox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = listbox.cpp; sourceTree = "<group>"; };
		92C115150F8EBB830048CA8D /* listbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = listbox.h; sourceTree = "<group>"; };
		92C115160F8EBB830048CA8D /* scrollarea.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = scrollarea.cpp; sourceTree = "<group>"; };
		92C115170F8EBB830048CA8D /* scrollarea.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = scrollarea.h; sourceTree = "<group>"; };
		92C115180F8EBB830048CA8D /* slider.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = slider.cpp; sourceTree = "<group>"; };
		92C115190F8EBB830048CA8D /* slider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = slider.h; sourceTree = "<group>"; };
		92C1151E0F8EBBA90048CA8D /* emoteshortcut.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = emoteshortcut.cpp; path = src/emoteshortcut.cpp; sourceTree = "<group>"; };
		92C1151F0F8EBBA90048CA8D /* emoteshortcut.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = emoteshortcut.h; path = src/emoteshortcut.h; sourceTree = "<group>"; };
		92C115220F8EBBD50048CA8D /* inttextfield.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = inttextfield.cpp; sourceTree = "<group>"; };
		92C115230F8EBBD50048CA8D /* inttextfield.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = inttextfield.h; sourceTree = "<group>"; };
		92C115240F8EBBD50048CA8D /* popup.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = popup.cpp; sourceTree = "<group>"; };
		92C115250F8EBBD50048CA8D /* popup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = popup.h; sourceTree = "<group>"; };
		92C115260F8EBBD50048CA8D /* textfield.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = textfield.cpp; sourceTree = "<group>"; };
		92C115270F8EBBD50048CA8D /* textfield.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = textfield.h; sourceTree = "<group>"; };
		92C115320F8EBC450048CA8D /* browserbox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = browserbox.cpp; sourceTree = "<group>"; };
		92C115330F8EBC450048CA8D /* browserbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = browserbox.h; sourceTree = "<group>"; };
		92C115340F8EBC450048CA8D /* windowcontainer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = windowcontainer.cpp; sourceTree = "<group>"; };
		92C115350F8EBC450048CA8D /* windowcontainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = windowcontainer.h; sourceTree = "<group>"; };
		92C115390F8EBC730048CA8D /* chattab.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = chattab.cpp; sourceTree = "<group>"; };
		92C1153A0F8EBC730048CA8D /* chattab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = chattab.h; sourceTree = "<group>"; };
		92C115410F8EBCB70048CA8D /* shortcutwindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = shortcutwindow.cpp; sourceTree = "<group>"; };
		92C115420F8EBCB70048CA8D /* shortcutwindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shortcutwindow.h; sourceTree = "<group>"; };
		92C115450F8EBCD00048CA8D /* passwordfield.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = passwordfield.cpp; sourceTree = "<group>"; };
		92C115460F8EBCD00048CA8D /* passwordfield.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = passwordfield.h; sourceTree = "<group>"; };
		92C115490F8EBD000048CA8D /* checkbox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = checkbox.cpp; sourceTree = "<group>"; };
		92C1154A0F8EBD000048CA8D /* checkbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = checkbox.h; sourceTree = "<group>"; };
		92C1154B0F8EBD000048CA8D /* textbox.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = textbox.cpp; sourceTree = "<group>"; };
		92C1154C0F8EBD000048CA8D /* textbox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = textbox.h; sourceTree = "<group>"; };
		92C115500F8EBD250048CA8D /* label.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = label.cpp; sourceTree = "<group>"; };
		92C115510F8EBD250048CA8D /* label.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = label.h; sourceTree = "<group>"; };
		92C115520F8EBD250048CA8D /* progressbar.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = progressbar.cpp; sourceTree = "<group>"; };
		92C115530F8EBD250048CA8D /* progressbar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = progressbar.h; sourceTree = "<group>"; };
		92C115570F8EBD490048CA8D /* net.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = net.cpp; sourceTree = "<group>"; };
		92C115580F8EBD490048CA8D /* net.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = net.h; sourceTree = "<group>"; };
		92C115990F8EBD900048CA8D /* emotedb.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = emotedb.cpp; sourceTree = "<group>"; };
		92C1159A0F8EBD900048CA8D /* emotedb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = emotedb.h; sourceTree = "<group>"; };
		92C1159C0F8EBDB20048CA8D /* commandhandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = commandhandler.cpp; path = src/commandhandler.cpp; sourceTree = "<group>"; };
		92C1159D0F8EBDB20048CA8D /* commandhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = commandhandler.h; path = src/commandhandler.h; sourceTree = "<group>"; };
		92C1159E0F8EBDB20048CA8D /* effectmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = effectmanager.cpp; path = src/effectmanager.cpp; sourceTree = "<group>"; };
		92C1159F0F8EBDB20048CA8D /* effectmanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = effectmanager.h; path = src/effectmanager.h; sourceTree = "<group>"; };
		92C115A00F8EBDB20048CA8D /* units.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = units.cpp; path = src/units.cpp; sourceTree = "<group>"; };
		92C115A10F8EBDB20048CA8D /* units.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = units.h; path = src/units.h; sourceTree = "<group>"; };
		92C115AD0F8EBE450048CA8D /* palette.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = palette.cpp; sourceTree = "<group>"; };
		92C115AE0F8EBE450048CA8D /* palette.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = palette.h; sourceTree = "<group>"; };
		92C115B50F8EBE450048CA8D /* speechbubble.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = speechbubble.cpp; sourceTree = "<group>"; };
		92C115B60F8EBE450048CA8D /* speechbubble.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = speechbubble.h; sourceTree = "<group>"; };
		92C115BD0F8EBE5E0048CA8D /* channeltab.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = channeltab.cpp; sourceTree = "<group>"; };
		92C115BE0F8EBE5E0048CA8D /* channeltab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = channeltab.h; sourceTree = "<group>"; };
		92C115C30F8EBE950048CA8D /* whispertab.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = whispertab.cpp; sourceTree = "<group>"; };
		92C115C40F8EBE950048CA8D /* whispertab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = whispertab.h; sourceTree = "<group>"; };
		92C115C70F8EBECE0048CA8D /* charcreatedialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = charcreatedialog.cpp; sourceTree = "<group>"; };
		92C115C80F8EBECE0048CA8D /* charcreatedialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = charcreatedialog.h; sourceTree = "<group>"; };
		92C115CB0F8EBF090048CA8D /* channelmanager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = channelmanager.cpp; path = src/channelmanager.cpp; sourceTree = "<group>"; };
		92C115CC0F8EBF090048CA8D /* channelmanager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = channelmanager.h; path = src/channelmanager.h; sourceTree = "<group>"; };
		92C115CE0F8EBF1C0048CA8D /* colordb.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = colordb.cpp; sourceTree = "<group>"; };
		92C115CF0F8EBF1C0048CA8D /* colordb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = colordb.h; sourceTree = "<group>"; };
		92C115D00F8EBF1C0048CA8D /* wallpaper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = wallpaper.cpp; sourceTree = "<group>"; };
		92C115D10F8EBF1C0048CA8D /* wallpaper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wallpaper.h; sourceTree = "<group>"; };
		92C115D50F8EBF530048CA8D /* button.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = button.cpp; sourceTree = "<group>"; };
		92C115D60F8EBF530048CA8D /* button.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = button.h; sourceTree = "<group>"; };
		92C115D70F8EBF530048CA8D /* icon.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = icon.cpp; sourceTree = "<group>"; };
		92C115D80F8EBF530048CA8D /* icon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = icon.h; sourceTree = "<group>"; };
		92C115D90F8EBF530048CA8D /* radiobutton.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = radiobutton.cpp; sourceTree = "<group>"; };
		92C115DA0F8EBF530048CA8D /* radiobutton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = radiobutton.h; sourceTree = "<group>"; };
		92C115E80F8EBFA60048CA8D /* stringutils.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = stringutils.cpp; sourceTree = "<group>"; };
		92C115E90F8EBFA60048CA8D /* stringutils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stringutils.h; sourceTree = "<group>"; };
		92C115EC0F8EBFC20048CA8D /* channel.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = channel.cpp; path = src/channel.cpp; sourceTree = "<group>"; };
		92C115ED0F8EBFC20048CA8D /* channel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = channel.h; path = src/channel.h; sourceTree = "<group>"; };
		92C115F50F8EBFDD0048CA8D /* dropdown.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dropdown.cpp; sourceTree = "<group>"; };
		92C115F60F8EBFDD0048CA8D /* dropdown.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dropdown.h; sourceTree = "<group>"; };
		92C115F90F8EBFF30048CA8D /* setup_colors.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = setup_colors.cpp; sourceTree = "<group>"; };
		92C115FA0F8EBFF30048CA8D /* setup_colors.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = setup_colors.h; sourceTree = "<group>"; };
		92C115FD0F8EC0150048CA8D /* textpreview.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = textpreview.cpp; sourceTree = "<group>"; };
		92C115FE0F8EC0150048CA8D /* textpreview.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = textpreview.h; sourceTree = "<group>"; };
		92C116010F8EC0590048CA8D /* circle-gray.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "circle-gray.png"; sourceTree = "<group>"; };
		92C116020F8EC0590048CA8D /* circle-green.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "circle-green.png"; sourceTree = "<group>"; };
		92C116070F8EC0590048CA8D /* speechbubble.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = speechbubble.xml; sourceTree = "<group>"; };
		92C116080F8EC0590048CA8D /* sticky_button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticky_button.png; sourceTree = "<group>"; };
		92C116E40F8ECBE80048CA8D /* changepassworddialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = changepassworddialog.cpp; sourceTree = "<group>"; };
		92C116E50F8ECBE80048CA8D /* changepassworddialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = changepassworddialog.h; sourceTree = "<group>"; };
		92C117530F8ECEEA0048CA8D /* skilldialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = skilldialog.cpp; sourceTree = "<group>"; };
		92C117540F8ECEEA0048CA8D /* skilldialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = skilldialog.h; sourceTree = "<group>"; };
		92C117560F8ECF0B0048CA8D /* statuswindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = statuswindow.cpp; sourceTree = "<group>"; };
		92C117570F8ECF0B0048CA8D /* statuswindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = statuswindow.h; sourceTree = "<group>"; };
		92C117580F8ECF0B0048CA8D /* unregisterdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = unregisterdialog.cpp; sourceTree = "<group>"; };
		92C117590F8ECF0B0048CA8D /* unregisterdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unregisterdialog.h; sourceTree = "<group>"; };
		92C1186F0F8ED33F0048CA8D /* quitdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = quitdialog.cpp; sourceTree = "<group>"; };
		92C118700F8ED33F0048CA8D /* quitdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = quitdialog.h; sourceTree = "<group>"; };
		92C1188E0F8ED4B30048CA8D /* guild.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = guild.cpp; path = src/guild.cpp; sourceTree = "<group>"; };
		92C1188F0F8ED4B30048CA8D /* guild.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = guild.h; path = src/guild.h; sourceTree = "<group>"; };
		92C118F20F8ED5DE0048CA8D /* textdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = textdialog.cpp; sourceTree = "<group>"; };
		92C118F30F8ED5DE0048CA8D /* textdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = textdialog.h; sourceTree = "<group>"; };
		92C119010F8ED63F0048CA8D /* npcpostdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = npcpostdialog.cpp; sourceTree = "<group>"; };
		92C119020F8ED63F0048CA8D /* npcpostdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = npcpostdialog.h; sourceTree = "<group>"; };
		92C1191B0F8ED79A0048CA8D /* changeemaildialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = changeemaildialog.cpp; sourceTree = "<group>"; };
		92C1191C0F8ED79A0048CA8D /* changeemaildialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = changeemaildialog.h; sourceTree = "<group>"; };
		92C119830F8ED80E0048CA8D /* serverdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = serverdialog.cpp; sourceTree = "<group>"; };
		92C119840F8ED80E0048CA8D /* serverdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = serverdialog.h; sourceTree = "<group>"; };
		92C1198E0F8ED85E0048CA8D /* sha256.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sha256.cpp; sourceTree = "<group>"; };
		92C1198F0F8ED85E0048CA8D /* sha256.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sha256.h; sourceTree = "<group>"; };
		92C119980F8ED8B00048CA8D /* position.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = position.cpp; path = src/position.cpp; sourceTree = "<group>"; };
		92C636AF0FC5605300EE8D8D /* mathutils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mathutils.h; sourceTree = "<group>"; };
		92C636B30FC5663000EE8D8D /* flooritem.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = flooritem.cpp; path = src/flooritem.cpp; sourceTree = "<group>"; };
		92C636B40FC5663000EE8D8D /* flooritem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = flooritem.h; path = src/flooritem.h; sourceTree = "<group>"; };
		92C636B50FC5663000EE8D8D /* playerrelations.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = playerrelations.cpp; path = src/playerrelations.cpp; sourceTree = "<group>"; };
		92C636B60FC5663000EE8D8D /* playerrelations.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = playerrelations.h; path = src/playerrelations.h; sourceTree = "<group>"; };
		92C636B70FC5663000EE8D8D /* position.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = position.h; path = src/position.h; sourceTree = "<group>"; };
		92C636B80FC5663000EE8D8D /* rotationalparticle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = rotationalparticle.cpp; path = src/rotationalparticle.cpp; sourceTree = "<group>"; };
		92C636B90FC5663000EE8D8D /* rotationalparticle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = rotationalparticle.h; path = src/rotationalparticle.h; sourceTree = "<group>"; };
		92C636BA0FC5663000EE8D8D /* vector.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = vector.cpp; path = src/vector.cpp; sourceTree = "<group>"; };
		92C636C40FC5670700EE8D8D /* charselectdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = charselectdialog.cpp; sourceTree = "<group>"; };
		92C636C50FC5670700EE8D8D /* charselectdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = charselectdialog.h; sourceTree = "<group>"; };
		92C636C60FC5670700EE8D8D /* confirmdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = confirmdialog.cpp; sourceTree = "<group>"; };
		92C636C70FC5670700EE8D8D /* confirmdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = confirmdialog.h; sourceTree = "<group>"; };
		92C636C80FC5670700EE8D8D /* emotepopup.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = emotepopup.cpp; sourceTree = "<group>"; };
		92C636C90FC5670700EE8D8D /* emotepopup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = emotepopup.h; sourceTree = "<group>"; };
		92C636CA0FC5670700EE8D8D /* itemamount.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = itemamount.cpp; sourceTree = "<group>"; };
		92C636CB0FC5670700EE8D8D /* itemamount.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = itemamount.h; sourceTree = "<group>"; };
		92C636CC0FC5670700EE8D8D /* npcdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = npcdialog.cpp; sourceTree = "<group>"; };
		92C636CD0FC5670700EE8D8D /* npcdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = npcdialog.h; sourceTree = "<group>"; };
		92C636CE0FC5670700EE8D8D /* okdialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = okdialog.cpp; sourceTree = "<group>"; };
		92C636CF0FC5670700EE8D8D /* okdialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = okdialog.h; sourceTree = "<group>"; };
		92C636D00FC5670700EE8D8D /* outfitwindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = outfitwindow.cpp; sourceTree = "<group>"; };
		92C636D10FC5670700EE8D8D /* outfitwindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = outfitwindow.h; sourceTree = "<group>"; };
		92C636D50FC5670700EE8D8D /* windowmenu.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = windowmenu.cpp; sourceTree = "<group>"; };
		92C636D60FC5670700EE8D8D /* windowmenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = windowmenu.h; sourceTree = "<group>"; };
		92C636EA0FC5677500EE8D8D /* adminhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = adminhandler.h; sourceTree = "<group>"; };
		92C636EB0FC5677500EE8D8D /* charhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = charhandler.h; sourceTree = "<group>"; };
		92C636EC0FC5677500EE8D8D /* generalhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = generalhandler.h; sourceTree = "<group>"; };
		92C636ED0FC5677500EE8D8D /* guildhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = guildhandler.h; sourceTree = "<group>"; };
		92C636EE0FC5677500EE8D8D /* logindata.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = logindata.h; sourceTree = "<group>"; };
		92C636F10FC5677500EE8D8D /* partyhandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = partyhandler.h; sourceTree = "<group>"; };
		92C636F20FC5677500EE8D8D /* serverinfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = serverinfo.h; sourceTree = "<group>"; };
		92C637800FC574B500EE8D8D /* window.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = window.png; sourceTree = "<group>"; };
		92C637850FC5751700EE8D8D /* dejavusans-bold.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = "dejavusans-bold.ttf"; path = "fonts/dejavusans-bold.ttf"; sourceTree = "<group>"; };
		92C85CF411F28D2300AB20CA /* error.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = error.png; sourceTree = "<group>"; };
		92C85CF511F28D2300AB20CA /* error.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = error.xml; sourceTree = "<group>"; };
		92DD76450F267B3600B2B519 /* layouthelper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = layouthelper.cpp; sourceTree = "<group>"; };
		92DD76460F267B3600B2B519 /* layouthelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = layouthelper.h; sourceTree = "<group>"; };
		92EA98B30FC5CB17003DC005 /* SDLMain.nib */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; path = SDLMain.nib; sourceTree = "<group>"; };
		92FD19B30DDCE53400D14E5D /* setup_players.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = setup_players.cpp; sourceTree = "<group>"; };
		92FD19B40DDCE53400D14E5D /* setup_players.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = setup_players.h; sourceTree = "<group>"; };
		92FD19BD0DDCE56A00D14E5D /* dye.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dye.h; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		8D0C4E910486CD37000505A6 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				8D0C4E920486CD37000505A6 /* Carbon.framework in Frameworks */,
				92BC40940BAEE818000DAB7F /* SDL_image.framework in Frameworks */,
				92BC40950BAEE818000DAB7F /* SDL_mixer.framework in Frameworks */,
				92BC40960BAEE818000DAB7F /* SDL_net.framework in Frameworks */,
				92BC40970BAEE818000DAB7F /* SDL.framework in Frameworks */,
				92BC40C70BAEEDAA000DAB7F /* OpenGL.framework in Frameworks */,
				92BC40D90BAEEED3000DAB7F /* IOKit.framework in Frameworks */,
				92BC40E90BAEF57D000DAB7F /* Cocoa.framework in Frameworks */,
				9294DAA10C17E73200FCEDE9 /* libpng.framework in Frameworks */,
				926A297A0F23C155005D6466 /* SDL_ttf.framework in Frameworks */,
				926857AC11F15A9300A28C33 /* guichan.framework in Frameworks */,
				922895B711F665A200AE53BB /* libintl.8.dylib in Frameworks */,
				922895B811F665A200AE53BB /* libphysfs.1.dylib in Frameworks */,
				922895B911F665A200AE53BB /* libSDL_gfx.13.dylib in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		195DF8CFFE9D517E11CA2CBB /* Products */ = {
			isa = PBXGroup;
			children = (
				508344B209E5C41E0093A071 /* The Mana World.app */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		20286C29FDCF999611CA2CEA /* themanaworld */ = {
			isa = PBXGroup;
			children = (
				924A42600C0874D00066885E /* Info.plist */,
				5048396909E3304600765E4B /* Configuration Files */,
				20286C2AFDCF999611CA2CEA /* Sources */,
				20286C2CFDCF999611CA2CEA /* Resources */,
				20286C32FDCF999611CA2CEA /* External Frameworks and Libraries */,
				195DF8CFFE9D517E11CA2CBB /* Products */,
			);
			name = themanaworld;
			sourceTree = "<group>";
		};
		20286C2AFDCF999611CA2CEA /* Sources */ = {
			isa = PBXGroup;
			children = (
				9268564B11F142D500A28C33 /* avatar.cpp */,
				9268564C11F142D500A28C33 /* avatar.h */,
				9268564D11F142D500A28C33 /* client.cpp */,
				9268564E11F142D500A28C33 /* client.h */,
				9268564F11F142D500A28C33 /* party.cpp */,
				9268565011F142D500A28C33 /* party.h */,
				9268565111F142D500A28C33 /* textrenderer.h */,
				92C636B30FC5663000EE8D8D /* flooritem.cpp */,
				92C636B40FC5663000EE8D8D /* flooritem.h */,
				92C636B50FC5663000EE8D8D /* playerrelations.cpp */,
				92C636B60FC5663000EE8D8D /* playerrelations.h */,
				92C636B70FC5663000EE8D8D /* position.h */,
				92C636B80FC5663000EE8D8D /* rotationalparticle.cpp */,
				92C636B90FC5663000EE8D8D /* rotationalparticle.h */,
				92C636BA0FC5663000EE8D8D /* vector.cpp */,
				92C119980F8ED8B00048CA8D /* position.cpp */,
				92C1188E0F8ED4B30048CA8D /* guild.cpp */,
				92C1188F0F8ED4B30048CA8D /* guild.h */,
				92C115EC0F8EBFC20048CA8D /* channel.cpp */,
				92C115ED0F8EBFC20048CA8D /* channel.h */,
				92C115CB0F8EBF090048CA8D /* channelmanager.cpp */,
				92C115CC0F8EBF090048CA8D /* channelmanager.h */,
				92C1159C0F8EBDB20048CA8D /* commandhandler.cpp */,
				92C1159D0F8EBDB20048CA8D /* commandhandler.h */,
				92C1159E0F8EBDB20048CA8D /* effectmanager.cpp */,
				92C1159F0F8EBDB20048CA8D /* effectmanager.h */,
				92C115A00F8EBDB20048CA8D /* units.cpp */,
				92C115A10F8EBDB20048CA8D /* units.h */,
				92C1151E0F8EBBA90048CA8D /* emoteshortcut.cpp */,
				92C1151F0F8EBBA90048CA8D /* emoteshortcut.h */,
				9273BE040EF33FB3008E56E1 /* particlecontainer.cpp */,
				9273BE050EF33FB3008E56E1 /* particlecontainer.h */,
				9273BE060EF33FB3008E56E1 /* statuseffect.cpp */,
				9273BE070EF33FB3008E56E1 /* statuseffect.h */,
				92037A1A0ED2037300D3712D /* particleemitterprop.h */,
				92037A1B0ED2037300D3712D /* text.cpp */,
				92037A1C0ED2037300D3712D /* text.h */,
				92037A1D0ED2037300D3712D /* textmanager.cpp */,
				92037A1E0ED2037300D3712D /* textmanager.h */,
				922CD95D0E3D01080074C50E /* shopitem.cpp */,
				922CD95E0E3D01080074C50E /* shopitem.h */,
				926F9CF60DB005FA00AACD26 /* itemshortcut.cpp */,
				926F9CF70DB005FA00AACD26 /* itemshortcut.h */,
				92024D2A0CF1BD9E006B55CB /* keyboardconfig.cpp */,
				92024D2B0CF1BD9E006B55CB /* keyboardconfig.h */,
				92024D2C0CF1BD9E006B55CB /* vector.h */,
				924A39E80C0784280066885E /* animationparticle.cpp */,
				924A39E90C0784280066885E /* animationparticle.h */,
				924A39EA0C0784280066885E /* imageparticle.cpp */,
				924A39EB0C0784280066885E /* imageparticle.h */,
				924A39EC0C0784280066885E /* particle.cpp */,
				924A39ED0C0784280066885E /* particle.h */,
				924A39EE0C0784280066885E /* particleemitter.cpp */,
				924A39EF0C0784280066885E /* particleemitter.h */,
				924A39F00C0784280066885E /* textparticle.cpp */,
				924A39F10C0784280066885E /* textparticle.h */,
				92BC3ECA0BAEE55A000DAB7F /* animatedsprite.cpp */,
				92BC3ECB0BAEE55A000DAB7F /* animatedsprite.h */,
				92BC3ECC0BAEE55A000DAB7F /* being.cpp */,
				92BC3ECD0BAEE55A000DAB7F /* being.h */,
				92BC3ECE0BAEE55A000DAB7F /* beingmanager.cpp */,
				92BC3ECF0BAEE55A000DAB7F /* beingmanager.h */,
				92BC3ED10BAEE55A000DAB7F /* configlistener.h */,
				92BC3ED20BAEE55A000DAB7F /* configuration.cpp */,
				92BC3ED30BAEE55A000DAB7F /* configuration.h */,
				92BC3EE70BAEE55A000DAB7F /* equipment.h */,
				92BC3EEA0BAEE55A000DAB7F /* flooritemmanager.cpp */,
				92BC3EEB0BAEE55A000DAB7F /* flooritemmanager.h */,
				92BC3EEC0BAEE55A000DAB7F /* game.cpp */,
				92BC3EED0BAEE55A000DAB7F /* game.h */,
				92BC3EEE0BAEE55A000DAB7F /* graphics.cpp */,
				92BC3EEF0BAEE55A000DAB7F /* graphics.h */,
				92BC3EF00BAEE55A000DAB7F /* gui */,
				92BC3F6C0BAEE55B000DAB7F /* guichanfwd.h */,
				92BC3F6D0BAEE55B000DAB7F /* inventory.cpp */,
				92BC3F6E0BAEE55B000DAB7F /* inventory.h */,
				92BC3F6F0BAEE55B000DAB7F /* item.cpp */,
				92BC3F700BAEE55B000DAB7F /* item.h */,
				92BC3F710BAEE55B000DAB7F /* joystick.cpp */,
				92BC3F720BAEE55B000DAB7F /* joystick.h */,
				92BC3F730BAEE55B000DAB7F /* localplayer.cpp */,
				92BC3F740BAEE55B000DAB7F /* localplayer.h */,
				92BC3F760BAEE55B000DAB7F /* log.cpp */,
				92BC3F770BAEE55B000DAB7F /* log.h */,
				92BC3F790BAEE55B000DAB7F /* main.cpp */,
				92BC3F7A0BAEE55B000DAB7F /* main.h */,
				92BC3F7C0BAEE55B000DAB7F /* map.cpp */,
				92BC3F7D0BAEE55B000DAB7F /* map.h */,
				92BC3F7E0BAEE55B000DAB7F /* monster.cpp */,
				92BC3F7F0BAEE55B000DAB7F /* monster.h */,
				92BC3F800BAEE55B000DAB7F /* net */,
				92BC3FA50BAEE55B000DAB7F /* npc.cpp */,
				92BC3FA60BAEE55B000DAB7F /* npc.h */,
				92BC3FA70BAEE55B000DAB7F /* openglgraphics.cpp */,
				92BC3FA80BAEE55B000DAB7F /* openglgraphics.h */,
				92BC3FBA0BAEE55B000DAB7F /* player.cpp */,
				92BC3FBB0BAEE55B000DAB7F /* player.h */,
				92BC3FBC0BAEE55B000DAB7F /* properties.h */,
				92BC3FBD0BAEE55B000DAB7F /* resources */,
				92BC3FE80BAEE55B000DAB7F /* simpleanimation.cpp */,
				92BC3FE90BAEE55B000DAB7F /* simpleanimation.h */,
				92BC3FEA0BAEE55B000DAB7F /* sound.cpp */,
				92BC3FEB0BAEE55B000DAB7F /* sound.h */,
				92BC3FEC0BAEE55B000DAB7F /* sprite.h */,
				92BC3FED0BAEE55B000DAB7F /* tileset.h */,
				92BC3FEE0BAEE55B000DAB7F /* utils */,
			);
			name = Sources;
			sourceTree = "<group>";
		};
		20286C2CFDCF999611CA2CEA /* Resources */ = {
			isa = PBXGroup;
			children = (
				92EA98B30FC5CB17003DC005 /* SDLMain.nib */,
				9273BDFD0EF33E1A008E56E1 /* AUTHORS */,
				9273BDFE0EF33E1A008E56E1 /* README */,
				9273BDFB0EF33DFD008E56E1 /* COPYING */,
				924A3E590C085ED70066885E /* data */,
			);
			name = Resources;
			sourceTree = "<group>";
		};
		20286C32FDCF999611CA2CEA /* External Frameworks and Libraries */ = {
			isa = PBXGroup;
			children = (
				922895BF11F6677F00AE53BB /* libiconv.2.dylib */,
				922895C011F6677F00AE53BB /* libSDL-1.2.0.dylib */,
				922895B411F665A200AE53BB /* libintl.8.dylib */,
				922895B511F665A200AE53BB /* libphysfs.1.dylib */,
				922895B611F665A200AE53BB /* libSDL_gfx.13.dylib */,
				926A29790F23C155005D6466 /* SDL_ttf.framework */,
				9294DAA00C17E73200FCEDE9 /* libpng.framework */,
				92BC40E80BAEF57D000DAB7F /* Cocoa.framework */,
				92BC40D80BAEEED3000DAB7F /* IOKit.framework */,
				92BC40C60BAEEDAA000DAB7F /* OpenGL.framework */,
				92BC408E0BAEE818000DAB7F /* SDL_image.framework */,
				92BC408F0BAEE818000DAB7F /* SDL_mixer.framework */,
				92BC40900BAEE818000DAB7F /* SDL_net.framework */,
				92BC40910BAEE818000DAB7F /* SDL.framework */,
				20286C33FDCF999611CA2CEA /* Carbon.framework */,
				926857AB11F15A9300A28C33 /* guichan.framework */,
			);
			name = "External Frameworks and Libraries";
			sourceTree = "<group>";
		};
		5048396909E3304600765E4B /* Configuration Files */ = {
			isa = PBXGroup;
			children = (
				92037A190ED2035A00D3712D /* SDLMain.h */,
				92BC40E50BAEF54B000DAB7F /* SDLMain.m */,
			);
			name = "Configuration Files";
			sourceTree = "<group>";
		};
		924A3A0F0C07A60B0066885E /* widgets */ = {
			isa = PBXGroup;
			children = (
				9268567811F1431300A28C33 /* avatarlistbox.cpp */,
				9268567911F1431300A28C33 /* avatarlistbox.h */,
				9268567A11F1431300A28C33 /* emoteshortcutcontainer.cpp */,
				9268567B11F1431300A28C33 /* emoteshortcutcontainer.h */,
				9268567C11F1431300A28C33 /* flowcontainer.cpp */,
				9268567D11F1431300A28C33 /* flowcontainer.h */,
				9268567E11F1431300A28C33 /* itemcontainer.cpp */,
				9268567F11F1431300A28C33 /* itemcontainer.h */,
				9268568011F1431300A28C33 /* itemlinkhandler.cpp */,
				9268568111F1431300A28C33 /* itemlinkhandler.h */,
				9268568211F1431300A28C33 /* itemshortcutcontainer.cpp */,
				9268568311F1431300A28C33 /* itemshortcutcontainer.h */,
				9268568411F1431300A28C33 /* linkhandler.h */,
				9268568511F1431300A28C33 /* playerbox.cpp */,
				9268568611F1431300A28C33 /* playerbox.h */,
				9268568711F1431300A28C33 /* progressindicator.cpp */,
				9268568811F1431300A28C33 /* progressindicator.h */,
				9268568911F1431300A28C33 /* setuptab.cpp */,
				9268568A11F1431300A28C33 /* setuptab.h */,
				9268568B11F1431300A28C33 /* shopitems.cpp */,
				9268568C11F1431300A28C33 /* shopitems.h */,
				9268568D11F1431300A28C33 /* shoplistbox.cpp */,
				9268568E11F1431300A28C33 /* shoplistbox.h */,
				9268568F11F1431300A28C33 /* shortcutcontainer.cpp */,
				9268569011F1431300A28C33 /* shortcutcontainer.h */,
				9268569111F1431300A28C33 /* table.cpp */,
				9268569211F1431300A28C33 /* table.h */,
				9268569311F1431300A28C33 /* tablemodel.cpp */,
				9268569411F1431300A28C33 /* tablemodel.h */,
				9268569511F1431300A28C33 /* vertcontainer.cpp */,
				9268569611F1431300A28C33 /* vertcontainer.h */,
				92A245C20F93626900B7719B /* desktop.cpp */,
				92A245C30F93626900B7719B /* desktop.h */,
				92A244B50F935FB400B7719B /* container.cpp */,
				92A244B60F935FB400B7719B /* container.h */,
				92C115FD0F8EC0150048CA8D /* textpreview.cpp */,
				92C115FE0F8EC0150048CA8D /* textpreview.h */,
				92C115F50F8EBFDD0048CA8D /* dropdown.cpp */,
				92C115F60F8EBFDD0048CA8D /* dropdown.h */,
				92C115D50F8EBF530048CA8D /* button.cpp */,
				92C115D60F8EBF530048CA8D /* button.h */,
				92C115D70F8EBF530048CA8D /* icon.cpp */,
				92C115D80F8EBF530048CA8D /* icon.h */,
				92C115D90F8EBF530048CA8D /* radiobutton.cpp */,
				92C115DA0F8EBF530048CA8D /* radiobutton.h */,
				92C115C30F8EBE950048CA8D /* whispertab.cpp */,
				92C115C40F8EBE950048CA8D /* whispertab.h */,
				92C115BD0F8EBE5E0048CA8D /* channeltab.cpp */,
				92C115BE0F8EBE5E0048CA8D /* channeltab.h */,
				92C115500F8EBD250048CA8D /* label.cpp */,
				92C115510F8EBD250048CA8D /* label.h */,
				92C115520F8EBD250048CA8D /* progressbar.cpp */,
				92C115530F8EBD250048CA8D /* progressbar.h */,
				92C115490F8EBD000048CA8D /* checkbox.cpp */,
				92C1154A0F8EBD000048CA8D /* checkbox.h */,
				92C1154B0F8EBD000048CA8D /* textbox.cpp */,
				92C1154C0F8EBD000048CA8D /* textbox.h */,
				92C115450F8EBCD00048CA8D /* passwordfield.cpp */,
				92C115460F8EBCD00048CA8D /* passwordfield.h */,
				92C115390F8EBC730048CA8D /* chattab.cpp */,
				92C1153A0F8EBC730048CA8D /* chattab.h */,
				92C115320F8EBC450048CA8D /* browserbox.cpp */,
				92C115330F8EBC450048CA8D /* browserbox.h */,
				92C115340F8EBC450048CA8D /* windowcontainer.cpp */,
				92C115350F8EBC450048CA8D /* windowcontainer.h */,
				92C115220F8EBBD50048CA8D /* inttextfield.cpp */,
				92C115230F8EBBD50048CA8D /* inttextfield.h */,
				92C115240F8EBBD50048CA8D /* popup.cpp */,
				92C115250F8EBBD50048CA8D /* popup.h */,
				92C115260F8EBBD50048CA8D /* textfield.cpp */,
				92C115270F8EBBD50048CA8D /* textfield.h */,
				92C115140F8EBB830048CA8D /* listbox.cpp */,
				92C115150F8EBB830048CA8D /* listbox.h */,
				92C115160F8EBB830048CA8D /* scrollarea.cpp */,
				92C115170F8EBB830048CA8D /* scrollarea.h */,
				92C115180F8EBB830048CA8D /* slider.cpp */,
				92C115190F8EBB830048CA8D /* slider.h */,
				92C1150C0F8EBB360048CA8D /* window.cpp */,
				92C1150D0F8EBB360048CA8D /* window.h */,
				92DD76450F267B3600B2B519 /* layouthelper.cpp */,
				92DD76460F267B3600B2B519 /* layouthelper.h */,
				926A29440F23BD88005D6466 /* layout.cpp */,
				926A29450F23BD88005D6466 /* layout.h */,
				926A29460F23BD88005D6466 /* tab.cpp */,
				926A29470F23BD88005D6466 /* tab.h */,
				926A29480F23BD88005D6466 /* tabbedarea.cpp */,
				926A29490F23BD88005D6466 /* tabbedarea.h */,
				924A3A100C07A60B0066885E /* resizegrip.cpp */,
				924A3A110C07A60B0066885E /* resizegrip.h */,
			);
			path = widgets;
			sourceTree = "<group>";
		};
		924A3E590C085ED70066885E /* data */ = {
			isa = PBXGroup;
			children = (
				926A29970F23C97C005D6466 /* fonts */,
				924A3E5C0C085ED70066885E /* graphics */,
				924A40090C085ED80066885E /* help */,
				924A40140C085ED80066885E /* icons */,
				924A401C0C085ED80066885E /* items.xsd */,
			);
			path = data;
			sourceTree = "<group>";
		};
		924A3E5C0C085ED70066885E /* graphics */ = {
			isa = PBXGroup;
			children = (
				92C85CF211F28D2300AB20CA /* sprites */,
				924A3E5E0C085ED70066885E /* gui */,
				924A3E900C085ED70066885E /* images */,
			);
			path = graphics;
			sourceTree = "<group>";
		};
		924A3E5E0C085ED70066885E /* gui */ = {
			isa = PBXGroup;
			children = (
				926855E711F141D500A28C33 /* colors.xml */,
				926855E811F141D500A28C33 /* progress-indicator.png */,
				926855E911F141D500A28C33 /* radioin_highlight.png */,
				926855EA11F141D500A28C33 /* radioout_highlight.png */,
				926855EB11F141D500A28C33 /* slider_hilight.png */,
				926855EC11F141D500A28C33 /* tab_hilight.png */,
				926855ED11F141D500A28C33 /* vscroll_highlight.png */,
				926855EE11F141D500A28C33 /* window.xml */,
				92C637800FC574B500EE8D8D /* window.png */,
				92C116010F8EC0590048CA8D /* circle-gray.png */,
				92C116020F8EC0590048CA8D /* circle-green.png */,
				92C116070F8EC0590048CA8D /* speechbubble.xml */,
				92C116080F8EC0590048CA8D /* sticky_button.png */,
				928B50E40F2FB5430011C755 /* bubble.png */,
				926A297E0F23C18E005D6466 /* tab.png */,
				926A297F0F23C18E005D6466 /* tabselected.png */,
				92024D5B0CF1BE5C006B55CB /* close_button.png */,
				92024D5D0CF1BE5C006B55CB /* unknown-item.png */,
				92024D5C0CF1BE5C006B55CB /* item_shortcut_bgr.png */,
				924A3E620C085ED70066885E /* button.png */,
				924A3E630C085ED70066885E /* button_disabled.png */,
				924A3E640C085ED70066885E /* buttonhi.png */,
				924A3E650C085ED70066885E /* buttonpress.png */,
				924A3E660C085ED70066885E /* checkbox.png */,
				924A3E680C085ED70066885E /* deepbox.png */,
				924A3E6D0C085ED70066885E /* hscroll_left_default.png */,
				924A3E6E0C085ED70066885E /* hscroll_left_highlight.png */,
				924A3E6F0C085ED70066885E /* hscroll_left_pressed.png */,
				924A3E700C085ED70066885E /* hscroll_right_default.png */,
				924A3E710C085ED70066885E /* hscroll_right_highlight.png */,
				924A3E720C085ED70066885E /* hscroll_right_pressed.png */,
				924A3E780C085ED70066885E /* mouse.png */,
				924A3E790C085ED70066885E /* radioin.png */,
				924A3E7A0C085ED70066885E /* radioout.png */,
				924A3E7B0C085ED70066885E /* resize.png */,
				924A3E7E0C085ED70066885E /* selection.png */,
				924A3E7F0C085ED70066885E /* slider.png */,
				924A3E800C085ED70066885E /* target-cursor-blue-l.png */,
				924A3E810C085ED70066885E /* target-cursor-blue-m.png */,
				924A3E820C085ED70066885E /* target-cursor-blue-s.png */,
				924A3E830C085ED70066885E /* target-cursor-red-l.png */,
				924A3E840C085ED70066885E /* target-cursor-red-m.png */,
				924A3E850C085ED70066885E /* target-cursor-red-s.png */,
				924A3E880C085ED70066885E /* vscroll_down_default.png */,
				924A3E890C085ED70066885E /* vscroll_down_highlight.png */,
				924A3E8A0C085ED70066885E /* vscroll_down_pressed.png */,
				924A3E8B0C085ED70066885E /* vscroll_grey.png */,
				924A3E8D0C085ED70066885E /* vscroll_up_default.png */,
				924A3E8E0C085ED70066885E /* vscroll_up_highlight.png */,
				924A3E8F0C085ED70066885E /* vscroll_up_pressed.png */,
			);
			path = gui;
			sourceTree = "<group>";
		};
		924A3E900C085ED70066885E /* images */ = {
			isa = PBXGroup;
			children = (
				924A3E9A0C085ED70066885E /* login_wallpaper.png */,
			);
			path = images;
			sourceTree = "<group>";
		};
		924A40090C085ED80066885E /* help */ = {
			isa = PBXGroup;
			children = (
				926A29840F23C1C8005D6466 /* windows.txt */,
				924A400A0C085ED80066885E /* about.txt */,
				924A400B0C085ED80066885E /* changes.txt */,
				924A400D0C085ED80066885E /* commands.txt */,
				924A400E0C085ED80066885E /* header.txt */,
				924A400F0C085ED80066885E /* index.txt */,
				924A40110C085ED80066885E /* skills.txt */,
				924A40120C085ED80066885E /* support.txt */,
				924A40130C085ED80066885E /* team.txt */,
			);
			path = help;
			sourceTree = "<group>";
		};
		924A40140C085ED80066885E /* icons */ = {
			isa = PBXGroup;
			children = (
				926855FF11F141FD00A28C33 /* mana.icns */,
			);
			path = icons;
			sourceTree = "<group>";
		};
		926856BF11F1433E00A28C33 /* manaserv */ = {
			isa = PBXGroup;
			children = (
				926856C011F1433E00A28C33 /* adminhandler.cpp */,
				926856C111F1433E00A28C33 /* adminhandler.h */,
				926856C211F1433E00A28C33 /* beinghandler.cpp */,
				926856C311F1433E00A28C33 /* beinghandler.h */,
				926856C411F1433E00A28C33 /* buysellhandler.cpp */,
				926856C511F1433E00A28C33 /* buysellhandler.h */,
				926856C611F1433E00A28C33 /* charhandler.cpp */,
				926856C711F1433E00A28C33 /* charhandler.h */,
				926856C811F1433E00A28C33 /* chathandler.cpp */,
				926856C911F1433E00A28C33 /* chathandler.h */,
				926856CA11F1433E00A28C33 /* connection.cpp */,
				926856CB11F1433E00A28C33 /* connection.h */,
				926856CC11F1433E00A28C33 /* effecthandler.cpp */,
				926856CD11F1433E00A28C33 /* effecthandler.h */,
				926856CE11F1433E00A28C33 /* gamehandler.cpp */,
				926856CF11F1433E00A28C33 /* gamehandler.h */,
				926856D011F1433E00A28C33 /* generalhandler.cpp */,
				926856D111F1433E00A28C33 /* generalhandler.h */,
				926856D211F1433E00A28C33 /* guildhandler.cpp */,
				926856D311F1433E00A28C33 /* guildhandler.h */,
				926856D411F1433E00A28C33 /* internal.cpp */,
				926856D511F1433E00A28C33 /* internal.h */,
				926856D611F1433E00A28C33 /* inventoryhandler.cpp */,
				926856D711F1433E00A28C33 /* inventoryhandler.h */,
				926856D811F1433E00A28C33 /* itemhandler.cpp */,
				926856D911F1433E00A28C33 /* itemhandler.h */,
				926856DA11F1433E00A28C33 /* loginhandler.cpp */,
				926856DB11F1433E00A28C33 /* loginhandler.h */,
				926856DC11F1433E00A28C33 /* messagehandler.cpp */,
				926856DD11F1433E00A28C33 /* messagehandler.h */,
				926856DE11F1433E00A28C33 /* messagein.cpp */,
				926856DF11F1433E00A28C33 /* messagein.h */,
				926856E011F1433E00A28C33 /* messageout.cpp */,
				926856E111F1433E00A28C33 /* messageout.h */,
				926856E211F1433E00A28C33 /* network.cpp */,
				926856E311F1433E00A28C33 /* network.h */,
				926856E411F1433E00A28C33 /* npchandler.cpp */,
				926856E511F1433E00A28C33 /* npchandler.h */,
				926856E611F1433E00A28C33 /* partyhandler.cpp */,
				926856E711F1433E00A28C33 /* partyhandler.h */,
				926856E811F1433E00A28C33 /* playerhandler.cpp */,
				926856E911F1433E00A28C33 /* playerhandler.h */,
				926856EA11F1433E00A28C33 /* protocol.h */,
				926856EB11F1433E00A28C33 /* specialhandler.cpp */,
				926856EC11F1433E00A28C33 /* specialhandler.h */,
				926856ED11F1433E00A28C33 /* stats.cpp */,
				926856EE11F1433E00A28C33 /* stats.h */,
				926856EF11F1433E00A28C33 /* tradehandler.cpp */,
				926856F011F1433E00A28C33 /* tradehandler.h */,
			);
			path = manaserv;
			sourceTree = "<group>";
		};
		926856F111F1433E00A28C33 /* tmwa */ = {
			isa = PBXGroup;
			children = (
				926856F211F1433E00A28C33 /* adminhandler.cpp */,
				926856F311F1433E00A28C33 /* adminhandler.h */,
				926856F411F1433E00A28C33 /* beinghandler.cpp */,
				926856F511F1433E00A28C33 /* beinghandler.h */,
				926856F611F1433E00A28C33 /* buysellhandler.cpp */,
				926856F711F1433E00A28C33 /* buysellhandler.h */,
				926856F811F1433E00A28C33 /* charserverhandler.cpp */,
				926856F911F1433E00A28C33 /* charserverhandler.h */,
				926856FA11F1433F00A28C33 /* chathandler.cpp */,
				926856FB11F1433F00A28C33 /* chathandler.h */,
				926856FC11F1433F00A28C33 /* gamehandler.cpp */,
				926856FD11F1433F00A28C33 /* gamehandler.h */,
				926856FE11F1433F00A28C33 /* generalhandler.cpp */,
				926856FF11F1433F00A28C33 /* generalhandler.h */,
				9268570011F1433F00A28C33 /* gui */,
				9268570511F1433F00A28C33 /* guildhandler.cpp */,
				9268570611F1433F00A28C33 /* guildhandler.h */,
				9268570711F1433F00A28C33 /* inventoryhandler.cpp */,
				9268570811F1433F00A28C33 /* inventoryhandler.h */,
				9268570911F1433F00A28C33 /* itemhandler.cpp */,
				9268570A11F1433F00A28C33 /* itemhandler.h */,
				9268570B11F1433F00A28C33 /* loginhandler.cpp */,
				9268570C11F1433F00A28C33 /* loginhandler.h */,
				9268570D11F1433F00A28C33 /* messagehandler.cpp */,
				9268570E11F1433F00A28C33 /* messagehandler.h */,
				9268570F11F1433F00A28C33 /* messagein.cpp */,
				9268571011F1433F00A28C33 /* messagein.h */,
				9268571111F1433F00A28C33 /* messageout.cpp */,
				9268571211F1433F00A28C33 /* messageout.h */,
				9268571311F1433F00A28C33 /* network.cpp */,
				9268571411F1433F00A28C33 /* network.h */,
				9268571511F1433F00A28C33 /* npchandler.cpp */,
				9268571611F1433F00A28C33 /* npchandler.h */,
				9268571711F1433F00A28C33 /* partyhandler.cpp */,
				9268571811F1433F00A28C33 /* partyhandler.h */,
				9268571911F1433F00A28C33 /* playerhandler.cpp */,
				9268571A11F1433F00A28C33 /* playerhandler.h */,
				9268571B11F1433F00A28C33 /* protocol.h */,
				9268571C11F1433F00A28C33 /* specialhandler.cpp */,
				9268571D11F1433F00A28C33 /* specialhandler.h */,
				9268571E11F1433F00A28C33 /* token.h */,
				9268571F11F1433F00A28C33 /* tradehandler.cpp */,
				9268572011F1433F00A28C33 /* tradehandler.h */,
			);
			path = tmwa;
			sourceTree = "<group>";
		};
		9268570011F1433F00A28C33 /* gui */ = {
			isa = PBXGroup;
			children = (
				9268570111F1433F00A28C33 /* guildtab.cpp */,
				9268570211F1433F00A28C33 /* guildtab.h */,
				9268570311F1433F00A28C33 /* partytab.cpp */,
				9268570411F1433F00A28C33 /* partytab.h */,
			);
			path = gui;
			sourceTree = "<group>";
		};
		926A29970F23C97C005D6466 /* fonts */ = {
			isa = PBXGroup;
			children = (
				92C637850FC5751700EE8D8D /* dejavusans-bold.ttf */,
				926A29980F23C988005D6466 /* dejavusans.ttf */,
			);
			name = fonts;
			sourceTree = "<group>";
		};
		92BC3EF00BAEE55A000DAB7F /* gui */ = {
			isa = PBXGroup;
			children = (
				9268565811F142F100A28C33 /* beingpopup.cpp */,
				9268565911F142F100A28C33 /* beingpopup.h */,
				9268565A11F142F100A28C33 /* connectiondialog.cpp */,
				9268565B11F142F100A28C33 /* connectiondialog.h */,
				9268565C11F142F100A28C33 /* socialwindow.cpp */,
				9268565D11F142F100A28C33 /* socialwindow.h */,
				9268565E11F142F100A28C33 /* specialswindow.cpp */,
				9268565F11F142F100A28C33 /* specialswindow.h */,
				9268566011F142F100A28C33 /* textpopup.cpp */,
				9268566111F142F100A28C33 /* textpopup.h */,
				9268566211F142F100A28C33 /* theme.cpp */,
				9268566311F142F100A28C33 /* theme.h */,
				9268566411F142F100A28C33 /* userpalette.cpp */,
				9268566511F142F100A28C33 /* userpalette.h */,
				9268566611F142F100A28C33 /* worldselectdialog.cpp */,
				9268566711F142F100A28C33 /* worldselectdialog.h */,
				92C636C40FC5670700EE8D8D /* charselectdialog.cpp */,
				92C636C50FC5670700EE8D8D /* charselectdialog.h */,
				92C636C60FC5670700EE8D8D /* confirmdialog.cpp */,
				92C636C70FC5670700EE8D8D /* confirmdialog.h */,
				92C636C80FC5670700EE8D8D /* emotepopup.cpp */,
				92C636C90FC5670700EE8D8D /* emotepopup.h */,
				92C636CA0FC5670700EE8D8D /* itemamount.cpp */,
				92C636CB0FC5670700EE8D8D /* itemamount.h */,
				92C636CC0FC5670700EE8D8D /* npcdialog.cpp */,
				92C636CD0FC5670700EE8D8D /* npcdialog.h */,
				92C636CE0FC5670700EE8D8D /* okdialog.cpp */,
				92C636CF0FC5670700EE8D8D /* okdialog.h */,
				92C636D00FC5670700EE8D8D /* outfitwindow.cpp */,
				92C636D10FC5670700EE8D8D /* outfitwindow.h */,
				92C636D50FC5670700EE8D8D /* windowmenu.cpp */,
				92C636D60FC5670700EE8D8D /* windowmenu.h */,
				92C119830F8ED80E0048CA8D /* serverdialog.cpp */,
				92C119840F8ED80E0048CA8D /* serverdialog.h */,
				92C1191B0F8ED79A0048CA8D /* changeemaildialog.cpp */,
				92C1191C0F8ED79A0048CA8D /* changeemaildialog.h */,
				92C119010F8ED63F0048CA8D /* npcpostdialog.cpp */,
				92C119020F8ED63F0048CA8D /* npcpostdialog.h */,
				92C118F20F8ED5DE0048CA8D /* textdialog.cpp */,
				92C118F30F8ED5DE0048CA8D /* textdialog.h */,
				92C1186F0F8ED33F0048CA8D /* quitdialog.cpp */,
				92C118700F8ED33F0048CA8D /* quitdialog.h */,
				92C117560F8ECF0B0048CA8D /* statuswindow.cpp */,
				92C117570F8ECF0B0048CA8D /* statuswindow.h */,
				92C117580F8ECF0B0048CA8D /* unregisterdialog.cpp */,
				92C117590F8ECF0B0048CA8D /* unregisterdialog.h */,
				92C117530F8ECEEA0048CA8D /* skilldialog.cpp */,
				92C117540F8ECEEA0048CA8D /* skilldialog.h */,
				92C116E40F8ECBE80048CA8D /* changepassworddialog.cpp */,
				92C116E50F8ECBE80048CA8D /* changepassworddialog.h */,
				92C115F90F8EBFF30048CA8D /* setup_colors.cpp */,
				92C115FA0F8EBFF30048CA8D /* setup_colors.h */,
				92C115C70F8EBECE0048CA8D /* charcreatedialog.cpp */,
				92C115C80F8EBECE0048CA8D /* charcreatedialog.h */,
				92C115AD0F8EBE450048CA8D /* palette.cpp */,
				92C115AE0F8EBE450048CA8D /* palette.h */,
				92C115B50F8EBE450048CA8D /* speechbubble.cpp */,
				92C115B60F8EBE450048CA8D /* speechbubble.h */,
				92C115410F8EBCB70048CA8D /* shortcutwindow.cpp */,
				92C115420F8EBCB70048CA8D /* shortcutwindow.h */,
				92C115100F8EBB550048CA8D /* itempopup.cpp */,
				92C115110F8EBB550048CA8D /* itempopup.h */,
				926A29520F23BD9E005D6466 /* sdlinput.cpp */,
				926A29530F23BD9E005D6466 /* sdlinput.h */,
				926A29540F23BD9E005D6466 /* truetypefont.cpp */,
				926A29550F23BD9E005D6466 /* truetypefont.h */,
				92FD19B30DDCE53400D14E5D /* setup_players.cpp */,
				92FD19B40DDCE53400D14E5D /* setup_players.h */,
				92024D360CF1BDF7006B55CB /* setup_keyboard.cpp */,
				92024D370CF1BDF7006B55CB /* setup_keyboard.h */,
				924A3A0F0C07A60B0066885E /* widgets */,
				92BC3EF90BAEE55A000DAB7F /* buy.cpp */,
				92BC3EFA0BAEE55A000DAB7F /* buy.h */,
				92BC3EFB0BAEE55A000DAB7F /* buysell.cpp */,
				92BC3EFC0BAEE55A000DAB7F /* buysell.h */,
				92BC3F030BAEE55A000DAB7F /* chat.cpp */,
				92BC3F040BAEE55A000DAB7F /* chat.h */,
				92BC3F0D0BAEE55A000DAB7F /* debugwindow.cpp */,
				92BC3F0E0BAEE55A000DAB7F /* debugwindow.h */,
				92BC3F0F0BAEE55A000DAB7F /* equipmentwindow.cpp */,
				92BC3F100BAEE55A000DAB7F /* equipmentwindow.h */,
				92BC3F110BAEE55A000DAB7F /* focushandler.cpp */,
				92BC3F120BAEE55A000DAB7F /* focushandler.h */,
				92BC3F150BAEE55A000DAB7F /* gui.cpp */,
				92BC3F160BAEE55A000DAB7F /* gui.h */,
				92BC3F190BAEE55A000DAB7F /* help.cpp */,
				92BC3F1A0BAEE55A000DAB7F /* help.h */,
				92BC3F1D0BAEE55A000DAB7F /* inventorywindow.cpp */,
				92BC3F1E0BAEE55A000DAB7F /* inventorywindow.h */,
				92BC3F260BAEE55A000DAB7F /* login.cpp */,
				92BC3F270BAEE55A000DAB7F /* login.h */,
				92BC3F2A0BAEE55A000DAB7F /* minimap.cpp */,
				92BC3F2B0BAEE55A000DAB7F /* minimap.h */,
				92BC3F2C0BAEE55A000DAB7F /* ministatus.cpp */,
				92BC3F2D0BAEE55A000DAB7F /* ministatus.h */,
				92BC3F3A0BAEE55A000DAB7F /* popupmenu.cpp */,
				92BC3F3B0BAEE55A000DAB7F /* popupmenu.h */,
				92BC3F400BAEE55A000DAB7F /* register.cpp */,
				92BC3F410BAEE55A000DAB7F /* register.h */,
				92BC3F450BAEE55A000DAB7F /* sell.cpp */,
				92BC3F460BAEE55A000DAB7F /* sell.h */,
				92BC3F470BAEE55A000DAB7F /* setup.cpp */,
				92BC3F480BAEE55A000DAB7F /* setup.h */,
				92BC3F490BAEE55A000DAB7F /* setup_audio.cpp */,
				92BC3F4A0BAEE55A000DAB7F /* setup_audio.h */,
				92BC3F4B0BAEE55A000DAB7F /* setup_joystick.cpp */,
				92BC3F4C0BAEE55A000DAB7F /* setup_joystick.h */,
				92BC3F4D0BAEE55A000DAB7F /* setup_video.cpp */,
				92BC3F4E0BAEE55A000DAB7F /* setup_video.h */,
				92BC3F600BAEE55B000DAB7F /* trade.cpp */,
				92BC3F610BAEE55B000DAB7F /* trade.h */,
				92BC3F620BAEE55B000DAB7F /* updatewindow.cpp */,
				92BC3F630BAEE55B000DAB7F /* updatewindow.h */,
				92BC3F660BAEE55B000DAB7F /* viewport.cpp */,
				92BC3F670BAEE55B000DAB7F /* viewport.h */,
			);
			name = gui;
			path = src/gui;
			sourceTree = "<group>";
		};
		92BC3F800BAEE55B000DAB7F /* net */ = {
			isa = PBXGroup;
			children = (
				926856BF11F1433E00A28C33 /* manaserv */,
				926856F111F1433E00A28C33 /* tmwa */,
				926856B511F1433300A28C33 /* charhandler.cpp */,
				926856B611F1433300A28C33 /* download.cpp */,
				926856B711F1433300A28C33 /* download.h */,
				926856B811F1433300A28C33 /* gamehandler.h */,
				926856B911F1433300A28C33 /* specialhandler.h */,
				926856BA11F1433300A28C33 /* worldinfo.h */,
				92C636EA0FC5677500EE8D8D /* adminhandler.h */,
				92C636EB0FC5677500EE8D8D /* charhandler.h */,
				92C636EC0FC5677500EE8D8D /* generalhandler.h */,
				92C636ED0FC5677500EE8D8D /* guildhandler.h */,
				92C636EE0FC5677500EE8D8D /* logindata.h */,
				92C636F10FC5677500EE8D8D /* partyhandler.h */,
				92C636F20FC5677500EE8D8D /* serverinfo.h */,
				92C115570F8EBD490048CA8D /* net.cpp */,
				92C115580F8EBD490048CA8D /* net.h */,
				92BC3F880BAEE55B000DAB7F /* chathandler.h */,
				92BC3F8C0BAEE55B000DAB7F /* inventoryhandler.h */,
				92BC3F900BAEE55B000DAB7F /* loginhandler.h */,
				92BC3F940BAEE55B000DAB7F /* messagehandler.h */,
				92BC3F950BAEE55B000DAB7F /* messagein.cpp */,
				92BC3F960BAEE55B000DAB7F /* messagein.h */,
				92BC3F970BAEE55B000DAB7F /* messageout.cpp */,
				92BC3F980BAEE55B000DAB7F /* messageout.h */,
				92BC3F9C0BAEE55B000DAB7F /* npchandler.h */,
				92BC3F9E0BAEE55B000DAB7F /* playerhandler.h */,
				92BC3FA40BAEE55B000DAB7F /* tradehandler.h */,
			);
			name = net;
			path = src/net;
			sourceTree = "<group>";
		};
		92BC3FBD0BAEE55B000DAB7F /* resources */ = {
			isa = PBXGroup;
			children = (
				9268577D11F1435200A28C33 /* ambientlayer.cpp */,
				9268577E11F1435200A28C33 /* ambientlayer.h */,
				92C115CE0F8EBF1C0048CA8D /* colordb.cpp */,
				92C115CF0F8EBF1C0048CA8D /* colordb.h */,
				92C115D00F8EBF1C0048CA8D /* wallpaper.cpp */,
				92C115D10F8EBF1C0048CA8D /* wallpaper.h */,
				92C115990F8EBD900048CA8D /* emotedb.cpp */,
				92C1159A0F8EBD900048CA8D /* emotedb.h */,
				922CD9560E3D00900074C50E /* npcdb.cpp */,
				922CD9570E3D00900074C50E /* npcdb.h */,
				92A4CC9D0D1C622E00CA28FB /* dye.cpp */,
				92FD19BD0DDCE56A00D14E5D /* dye.h */,
				92024E740CF1DCF6006B55CB /* imageloader.cpp */,
				92024E750CF1DCF6006B55CB /* imageloader.h */,
				925350010BC12A3200115FD5 /* imageset.cpp */,
				925350020BC12A3200115FD5 /* imageset.h */,
				92BC3FBE0BAEE55B000DAB7F /* action.cpp */,
				92BC3FBF0BAEE55B000DAB7F /* action.h */,
				92BC3FC00BAEE55B000DAB7F /* ambientoverlay.cpp */,
				92BC3FC10BAEE55B000DAB7F /* ambientoverlay.h */,
				92BC3FC20BAEE55B000DAB7F /* animation.cpp */,
				92BC3FC30BAEE55B000DAB7F /* animation.h */,
				92BC3FC90BAEE55B000DAB7F /* image.cpp */,
				92BC3FCA0BAEE55B000DAB7F /* image.h */,
				92BC3FCB0BAEE55B000DAB7F /* imagewriter.cpp */,
				92BC3FCC0BAEE55B000DAB7F /* imagewriter.h */,
				92BC3FCD0BAEE55B000DAB7F /* itemdb.cpp */,
				92BC3FCE0BAEE55B000DAB7F /* itemdb.h */,
				92BC3FCF0BAEE55B000DAB7F /* iteminfo.cpp */,
				92BC3FD00BAEE55B000DAB7F /* iteminfo.h */,
				92BC3FD10BAEE55B000DAB7F /* mapreader.cpp */,
				92BC3FD20BAEE55B000DAB7F /* mapreader.h */,
				92BC3FD30BAEE55B000DAB7F /* monsterdb.cpp */,
				92BC3FD40BAEE55B000DAB7F /* monsterdb.h */,
				92BC3FD50BAEE55B000DAB7F /* monsterinfo.cpp */,
				92BC3FD60BAEE55B000DAB7F /* monsterinfo.h */,
				92BC3FD70BAEE55B000DAB7F /* music.cpp */,
				92BC3FD80BAEE55B000DAB7F /* music.h */,
				92BC3FDB0BAEE55B000DAB7F /* resource.cpp */,
				92BC3FDC0BAEE55B000DAB7F /* resource.h */,
				92BC3FDD0BAEE55B000DAB7F /* resourcemanager.cpp */,
				92BC3FDE0BAEE55B000DAB7F /* resourcemanager.h */,
				92BC3FE10BAEE55B000DAB7F /* soundeffect.cpp */,
				92BC3FE20BAEE55B000DAB7F /* soundeffect.h */,
				92BC3FE30BAEE55B000DAB7F /* spritedef.cpp */,
				92BC3FE40BAEE55B000DAB7F /* spritedef.h */,
			);
			name = resources;
			path = src/resources;
			sourceTree = "<group>";
		};
		92BC3FEE0BAEE55B000DAB7F /* utils */ = {
			isa = PBXGroup;
			children = (
				9268578111F1435F00A28C33 /* copynpaste.cpp */,
				9268578211F1435F00A28C33 /* copynpaste.h */,
				9268578311F1435F00A28C33 /* mkdir.cpp */,
				9268578411F1435F00A28C33 /* mkdir.h */,
				9268578511F1435F00A28C33 /* specialfolder.cpp */,
				9268578611F1435F00A28C33 /* specialfolder.h */,
				92C636AF0FC5605300EE8D8D /* mathutils.h */,
				92C1198E0F8ED85E0048CA8D /* sha256.cpp */,
				92C1198F0F8ED85E0048CA8D /* sha256.h */,
				92C115E80F8EBFA60048CA8D /* stringutils.cpp */,
				92C115E90F8EBFA60048CA8D /* stringutils.h */,
				926A295A0F23BDB1005D6466 /* gettext.h */,
				926A295B0F23BDB1005D6466 /* mutex.h */,
				92BC3FEF0BAEE55B000DAB7F /* base64.cpp */,
				92BC3FF00BAEE55B000DAB7F /* base64.h */,
				92BC3FF10BAEE55B000DAB7F /* dtor.h */,
				92BC3FF40BAEE55B000DAB7F /* xml.cpp */,
				92BC3FF50BAEE55B000DAB7F /* xml.h */,
			);
			name = utils;
			path = src/utils;
			sourceTree = "<group>";
		};
		92C85CF211F28D2300AB20CA /* sprites */ = {
			isa = PBXGroup;
			children = (
				92C85CF411F28D2300AB20CA /* error.png */,
				92C85CF511F28D2300AB20CA /* error.xml */,
			);
			path = sprites;
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
		8D0C4E890486CD37000505A6 /* themanaworld */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = C0E91AC508A95435008D54AB /* Build configuration list for PBXNativeTarget "themanaworld" */;
			buildPhases = (
				8D0C4E8C0486CD37000505A6 /* Resources */,
				8D0C4E8F0486CD37000505A6 /* Sources */,
				8D0C4E910486CD37000505A6 /* Frameworks */,
				924A3A520C085C190066885E /* Copy Data Files */,
				924A3E540C085CAF0066885E /* Copy GUI Files */,
				924A40880C085FBD0066885E /* Copy Image Files */,
				924A42000C0861C70066885E /* Copy Help Files */,
				92EEA0090D2E20D100DDE300 /* Copy Frameworks */,
				9273BE3C0EF34050008E56E1 /* Copy Music Files */,
				926A29AA0F23CA6D005D6466 /* Copy Font Files */,
				922890C411F661D000AE53BB /* ShellScript */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = themanaworld;
			productInstallPath = "$(HOME)/Applications";
			productName = themanaworld;
			productReference = 508344B209E5C41E0093A071 /* The Mana World.app */;
			productType = "com.apple.product-type.application";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		20286C28FDCF999611CA2CEA /* Project object */ = {
			isa = PBXProject;
			buildConfigurationList = C0E91AC908A95435008D54AB /* Build configuration list for PBXProject "mana" */;
			compatibilityVersion = "Xcode 3.0";
			hasScannedForEncodings = 1;
			mainGroup = 20286C29FDCF999611CA2CEA /* themanaworld */;
			projectDirPath = "";
			projectRoot = "";
			targets = (
				8D0C4E890486CD37000505A6 /* themanaworld */,
			);
		};
/* End PBXProject section */

/* Begin PBXResourcesBuildPhase section */
		8D0C4E8C0486CD37000505A6 /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				9273BDFC0EF33DFD008E56E1 /* COPYING in Resources */,
				9273BDFF0EF33E1A008E56E1 /* AUTHORS in Resources */,
				9273BE000EF33E1A008E56E1 /* README in Resources */,
				92EA98B40FC5CB17003DC005 /* SDLMain.nib in Resources */,
				9268560011F141FD00A28C33 /* mana.icns in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXResourcesBuildPhase section */

/* Begin PBXShellScriptBuildPhase section */
		922890C411F661D000AE53BB /* ShellScript */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "#app\ninstall_name_tool -change /opt/local/lib/libphysfs.1.dylib @executable_path/../Frameworks/libphysfs.1.dylib \"${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/Contents/MacOS/${PRODUCT_NAME}\"\ninstall_name_tool -change /opt/local/lib/libintl.8.dylib @executable_path/../Frameworks/libintl.8.dylib \"${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/Contents/MacOS/${PRODUCT_NAME}\"\ninstall_name_tool -change /opt/local/lib/libSDL_gfx.13.dylib @executable_path/../Frameworks/libSDL_gfx.13.dylib \"${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/Contents/MacOS/${PRODUCT_NAME}\"";
		};
/* End PBXShellScriptBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
		8D0C4E8F0486CD37000505A6 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				92BC3FF60BAEE55B000DAB7F /* animatedsprite.cpp in Sources */,
				92BC3FF70BAEE55B000DAB7F /* being.cpp in Sources */,
				92BC3FF80BAEE55B000DAB7F /* beingmanager.cpp in Sources */,
				92BC3FFA0BAEE55B000DAB7F /* configuration.cpp in Sources */,
				92BC40050BAEE55B000DAB7F /* flooritemmanager.cpp in Sources */,
				92BC40060BAEE55B000DAB7F /* game.cpp in Sources */,
				92BC40070BAEE55B000DAB7F /* graphics.cpp in Sources */,
				92BC400C0BAEE55B000DAB7F /* buy.cpp in Sources */,
				92BC400D0BAEE55B000DAB7F /* buysell.cpp in Sources */,
				92BC40110BAEE55B000DAB7F /* chat.cpp in Sources */,
				92BC40160BAEE55B000DAB7F /* debugwindow.cpp in Sources */,
				92BC40170BAEE55B000DAB7F /* equipmentwindow.cpp in Sources */,
				92BC40180BAEE55B000DAB7F /* focushandler.cpp in Sources */,
				92BC401A0BAEE55B000DAB7F /* gui.cpp in Sources */,
				92BC401C0BAEE55B000DAB7F /* help.cpp in Sources */,
				92BC401E0BAEE55B000DAB7F /* inventorywindow.cpp in Sources */,
				92BC40220BAEE55B000DAB7F /* login.cpp in Sources */,
				92BC40240BAEE55B000DAB7F /* minimap.cpp in Sources */,
				92BC40250BAEE55B000DAB7F /* ministatus.cpp in Sources */,
				92BC402C0BAEE55B000DAB7F /* popupmenu.cpp in Sources */,
				92BC402F0BAEE55B000DAB7F /* register.cpp in Sources */,
				92BC40310BAEE55B000DAB7F /* sell.cpp in Sources */,
				92BC40320BAEE55B000DAB7F /* setup.cpp in Sources */,
				92BC40330BAEE55B000DAB7F /* setup_audio.cpp in Sources */,
				92BC40340BAEE55B000DAB7F /* setup_joystick.cpp in Sources */,
				92BC40350BAEE55B000DAB7F /* setup_video.cpp in Sources */,
				92BC403E0BAEE55B000DAB7F /* trade.cpp in Sources */,
				92BC403F0BAEE55B000DAB7F /* updatewindow.cpp in Sources */,
				92BC40410BAEE55B000DAB7F /* viewport.cpp in Sources */,
				92BC40440BAEE55B000DAB7F /* inventory.cpp in Sources */,
				92BC40450BAEE55B000DAB7F /* item.cpp in Sources */,
				92BC40460BAEE55B000DAB7F /* joystick.cpp in Sources */,
				92BC40470BAEE55B000DAB7F /* localplayer.cpp in Sources */,
				92BC40480BAEE55B000DAB7F /* log.cpp in Sources */,
				92BC40490BAEE55B000DAB7F /* main.cpp in Sources */,
				92BC404B0BAEE55B000DAB7F /* map.cpp in Sources */,
				92BC404C0BAEE55B000DAB7F /* monster.cpp in Sources */,
				92BC40570BAEE55B000DAB7F /* messagein.cpp in Sources */,
				92BC40580BAEE55B000DAB7F /* messageout.cpp in Sources */,
				92BC405F0BAEE55B000DAB7F /* npc.cpp in Sources */,
				92BC40600BAEE55B000DAB7F /* openglgraphics.cpp in Sources */,
				92BC406E0BAEE55B000DAB7F /* player.cpp in Sources */,
				92BC406F0BAEE55B000DAB7F /* action.cpp in Sources */,
				92BC40700BAEE55B000DAB7F /* ambientoverlay.cpp in Sources */,
				92BC40710BAEE55B000DAB7F /* animation.cpp in Sources */,
				92BC40740BAEE55B000DAB7F /* image.cpp in Sources */,
				92BC40750BAEE55B000DAB7F /* imagewriter.cpp in Sources */,
				92BC40760BAEE55B000DAB7F /* itemdb.cpp in Sources */,
				92BC40770BAEE55B000DAB7F /* iteminfo.cpp in Sources */,
				92BC40780BAEE55B000DAB7F /* mapreader.cpp in Sources */,
				92BC40790BAEE55B000DAB7F /* monsterdb.cpp in Sources */,
				92BC407A0BAEE55B000DAB7F /* monsterinfo.cpp in Sources */,
				92BC407B0BAEE55B000DAB7F /* music.cpp in Sources */,
				92BC407D0BAEE55B000DAB7F /* resource.cpp in Sources */,
				92BC407E0BAEE55B000DAB7F /* resourcemanager.cpp in Sources */,
				92BC40800BAEE55B000DAB7F /* soundeffect.cpp in Sources */,
				92BC40810BAEE55B000DAB7F /* spritedef.cpp in Sources */,
				92BC40830BAEE55B000DAB7F /* simpleanimation.cpp in Sources */,
				92BC40840BAEE55B000DAB7F /* sound.cpp in Sources */,
				92BC40850BAEE55B000DAB7F /* base64.cpp in Sources */,
				92BC40860BAEE55B000DAB7F /* xml.cpp in Sources */,
				92BC40E60BAEF54B000DAB7F /* SDLMain.m in Sources */,
				925350030BC12A3200115FD5 /* imageset.cpp in Sources */,
				924A39F20C0784280066885E /* animationparticle.cpp in Sources */,
				924A39F30C0784280066885E /* imageparticle.cpp in Sources */,
				924A39F40C0784280066885E /* particle.cpp in Sources */,
				924A39F50C0784280066885E /* particleemitter.cpp in Sources */,
				924A39F60C0784280066885E /* textparticle.cpp in Sources */,
				924A3A120C07A60B0066885E /* resizegrip.cpp in Sources */,
				92024D2F0CF1BD9E006B55CB /* keyboardconfig.cpp in Sources */,
				92024D3D0CF1BDF7006B55CB /* setup_keyboard.cpp in Sources */,
				92024E760CF1DCF6006B55CB /* imageloader.cpp in Sources */,
				92A4CC9E0D1C622E00CA28FB /* dye.cpp in Sources */,
				926F9CF80DB005FA00AACD26 /* itemshortcut.cpp in Sources */,
				92FD19BA0DDCE53400D14E5D /* setup_players.cpp in Sources */,
				922CD9580E3D00900074C50E /* npcdb.cpp in Sources */,
				922CD95F0E3D01080074C50E /* shopitem.cpp in Sources */,
				92037A1F0ED2037300D3712D /* text.cpp in Sources */,
				92037A200ED2037300D3712D /* textmanager.cpp in Sources */,
				9273BE080EF33FB3008E56E1 /* particlecontainer.cpp in Sources */,
				9273BE090EF33FB3008E56E1 /* statuseffect.cpp in Sources */,
				926A294A0F23BD88005D6466 /* layout.cpp in Sources */,
				926A294B0F23BD88005D6466 /* tab.cpp in Sources */,
				926A294C0F23BD88005D6466 /* tabbedarea.cpp in Sources */,
				926A29580F23BD9E005D6466 /* sdlinput.cpp in Sources */,
				926A29590F23BD9E005D6466 /* truetypefont.cpp in Sources */,
				92DD76470F267B3600B2B519 /* layouthelper.cpp in Sources */,
				92C1150E0F8EBB360048CA8D /* window.cpp in Sources */,
				92C115120F8EBB550048CA8D /* itempopup.cpp in Sources */,
				92C1151A0F8EBB830048CA8D /* listbox.cpp in Sources */,
				92C1151B0F8EBB830048CA8D /* scrollarea.cpp in Sources */,
				92C1151C0F8EBB830048CA8D /* slider.cpp in Sources */,
				92C115200F8EBBA90048CA8D /* emoteshortcut.cpp in Sources */,
				92C115280F8EBBD50048CA8D /* inttextfield.cpp in Sources */,
				92C115290F8EBBD50048CA8D /* popup.cpp in Sources */,
				92C1152A0F8EBBD50048CA8D /* textfield.cpp in Sources */,
				92C115360F8EBC450048CA8D /* browserbox.cpp in Sources */,
				92C115370F8EBC450048CA8D /* windowcontainer.cpp in Sources */,
				92C1153B0F8EBC730048CA8D /* chattab.cpp in Sources */,
				92C115440F8EBCB70048CA8D /* shortcutwindow.cpp in Sources */,
				92C115470F8EBCD00048CA8D /* passwordfield.cpp in Sources */,
				92C1154D0F8EBD000048CA8D /* checkbox.cpp in Sources */,
				92C1154E0F8EBD000048CA8D /* textbox.cpp in Sources */,
				92C115540F8EBD250048CA8D /* label.cpp in Sources */,
				92C115550F8EBD250048CA8D /* progressbar.cpp in Sources */,
				92C115590F8EBD490048CA8D /* net.cpp in Sources */,
				92C1159B0F8EBD900048CA8D /* emotedb.cpp in Sources */,
				92C115A20F8EBDB20048CA8D /* commandhandler.cpp in Sources */,
				92C115A30F8EBDB20048CA8D /* effectmanager.cpp in Sources */,
				92C115A40F8EBDB20048CA8D /* units.cpp in Sources */,
				92C115B70F8EBE450048CA8D /* palette.cpp in Sources */,
				92C115B90F8EBE450048CA8D /* recorder.cpp in Sources */,
				92C115BB0F8EBE450048CA8D /* speechbubble.cpp in Sources */,
				92C115BF0F8EBE5E0048CA8D /* channeltab.cpp in Sources */,
				92C115C60F8EBE950048CA8D /* whispertab.cpp in Sources */,
				92C115C90F8EBECE0048CA8D /* charcreatedialog.cpp in Sources */,
				92C115CD0F8EBF090048CA8D /* channelmanager.cpp in Sources */,
				92C115D20F8EBF1C0048CA8D /* colordb.cpp in Sources */,
				92C115D30F8EBF1C0048CA8D /* wallpaper.cpp in Sources */,
				92C115DB0F8EBF530048CA8D /* button.cpp in Sources */,
				92C115DC0F8EBF530048CA8D /* icon.cpp in Sources */,
				92C115DD0F8EBF530048CA8D /* radiobutton.cpp in Sources */,
				92C115EA0F8EBFA60048CA8D /* stringutils.cpp in Sources */,
				92C115EE0F8EBFC20048CA8D /* channel.cpp in Sources */,
				92C115F70F8EBFDD0048CA8D /* dropdown.cpp in Sources */,
				92C115FB0F8EBFF30048CA8D /* setup_colors.cpp in Sources */,
				92C115FF0F8EC0150048CA8D /* textpreview.cpp in Sources */,
				92A245C40F93626900B7719B /* desktop.cpp in Sources */,
				92A245C50F93626C00B7719B /* container.cpp in Sources */,
				92A245CC0F93635800B7719B /* npcpostdialog.cpp in Sources */,
				92C636BB0FC5663000EE8D8D /* flooritem.cpp in Sources */,
				92C636BC0FC5663000EE8D8D /* playerrelations.cpp in Sources */,
				92C636BD0FC5663000EE8D8D /* rotationalparticle.cpp in Sources */,
				92C636BE0FC5663000EE8D8D /* vector.cpp in Sources */,
				92C636D70FC5670700EE8D8D /* charselectdialog.cpp in Sources */,
				92C636D80FC5670700EE8D8D /* confirmdialog.cpp in Sources */,
				92C636D90FC5670700EE8D8D /* emotepopup.cpp in Sources */,
				92C636DA0FC5670700EE8D8D /* itemamount.cpp in Sources */,
				92C636DB0FC5670700EE8D8D /* npcdialog.cpp in Sources */,
				92C636DC0FC5670700EE8D8D /* okdialog.cpp in Sources */,
				92C636DD0FC5670700EE8D8D /* outfitwindow.cpp in Sources */,
				92C636DF0FC5670700EE8D8D /* windowmenu.cpp in Sources */,
				9268565211F142D500A28C33 /* avatar.cpp in Sources */,
				9268565311F142D500A28C33 /* client.cpp in Sources */,
				9268565411F142D500A28C33 /* party.cpp in Sources */,
				9268566811F142F100A28C33 /* beingpopup.cpp in Sources */,
				9268566911F142F100A28C33 /* connectiondialog.cpp in Sources */,
				9268566A11F142F100A28C33 /* socialwindow.cpp in Sources */,
				9268566B11F142F100A28C33 /* specialswindow.cpp in Sources */,
				9268566C11F142F100A28C33 /* textpopup.cpp in Sources */,
				9268566D11F142F100A28C33 /* theme.cpp in Sources */,
				9268566E11F142F100A28C33 /* userpalette.cpp in Sources */,
				9268566F11F142F100A28C33 /* worldselectdialog.cpp in Sources */,
				9268569711F1431300A28C33 /* avatarlistbox.cpp in Sources */,
				9268569811F1431300A28C33 /* emoteshortcutcontainer.cpp in Sources */,
				9268569911F1431300A28C33 /* flowcontainer.cpp in Sources */,
				9268569A11F1431300A28C33 /* itemcontainer.cpp in Sources */,
				9268569B11F1431300A28C33 /* itemlinkhandler.cpp in Sources */,
				9268569C11F1431300A28C33 /* itemshortcutcontainer.cpp in Sources */,
				9268569D11F1431300A28C33 /* playerbox.cpp in Sources */,
				9268569E11F1431300A28C33 /* progressindicator.cpp in Sources */,
				9268569F11F1431300A28C33 /* setuptab.cpp in Sources */,
				926856A011F1431300A28C33 /* shopitems.cpp in Sources */,
				926856A111F1431300A28C33 /* shoplistbox.cpp in Sources */,
				926856A211F1431300A28C33 /* shortcutcontainer.cpp in Sources */,
				926856A311F1431300A28C33 /* table.cpp in Sources */,
				926856A411F1431300A28C33 /* tablemodel.cpp in Sources */,
				926856A511F1431300A28C33 /* vertcontainer.cpp in Sources */,
				926856BB11F1433300A28C33 /* charhandler.cpp in Sources */,
				926856BC11F1433300A28C33 /* download.cpp in Sources */,
				9268573911F1433F00A28C33 /* adminhandler.cpp in Sources */,
				9268573A11F1433F00A28C33 /* beinghandler.cpp in Sources */,
				9268573B11F1433F00A28C33 /* buysellhandler.cpp in Sources */,
				9268573C11F1433F00A28C33 /* charserverhandler.cpp in Sources */,
				9268573D11F1433F00A28C33 /* chathandler.cpp in Sources */,
				9268573E11F1433F00A28C33 /* gamehandler.cpp in Sources */,
				9268573F11F1433F00A28C33 /* generalhandler.cpp in Sources */,
				9268574011F1433F00A28C33 /* guildtab.cpp in Sources */,
				9268574111F1433F00A28C33 /* partytab.cpp in Sources */,
				9268574211F1433F00A28C33 /* guildhandler.cpp in Sources */,
				9268574311F1433F00A28C33 /* inventoryhandler.cpp in Sources */,
				9268574411F1433F00A28C33 /* itemhandler.cpp in Sources */,
				9268574511F1433F00A28C33 /* loginhandler.cpp in Sources */,
				9268574611F1433F00A28C33 /* messagehandler.cpp in Sources */,
				9268574711F1433F00A28C33 /* messagein.cpp in Sources */,
				9268574811F1433F00A28C33 /* messageout.cpp in Sources */,
				9268574911F1433F00A28C33 /* network.cpp in Sources */,
				9268574A11F1433F00A28C33 /* npchandler.cpp in Sources */,
				9268574B11F1433F00A28C33 /* partyhandler.cpp in Sources */,
				9268574C11F1433F00A28C33 /* playerhandler.cpp in Sources */,
				9268574D11F1433F00A28C33 /* specialhandler.cpp in Sources */,
				9268574E11F1433F00A28C33 /* tradehandler.cpp in Sources */,
				9268577F11F1435200A28C33 /* ambientlayer.cpp in Sources */,
				9268578711F1435F00A28C33 /* copynpaste.cpp in Sources */,
				9268578811F1435F00A28C33 /* mkdir.cpp in Sources */,
				9268578911F1435F00A28C33 /* specialfolder.cpp in Sources */,
				9268581311F15F3900A28C33 /* adminhandler.cpp in Sources */,
				9268581411F15F3A00A28C33 /* beinghandler.cpp in Sources */,
				9268581511F15F3B00A28C33 /* buysellhandler.cpp in Sources */,
				9268581611F15F3C00A28C33 /* charhandler.cpp in Sources */,
				9268581711F15F3D00A28C33 /* chathandler.cpp in Sources */,
				9268581811F15F3E00A28C33 /* connection.cpp in Sources */,
				9268581911F15F3F00A28C33 /* effecthandler.cpp in Sources */,
				9268581A11F15F4000A28C33 /* gamehandler.cpp in Sources */,
				9268581B11F15F4000A28C33 /* generalhandler.cpp in Sources */,
				9268581C11F15F4200A28C33 /* guildhandler.cpp in Sources */,
				9268581D11F15F4300A28C33 /* internal.cpp in Sources */,
				9268581E11F15F4400A28C33 /* inventoryhandler.cpp in Sources */,
				9268581F11F15F4500A28C33 /* itemhandler.cpp in Sources */,
				9268582011F15F4600A28C33 /* loginhandler.cpp in Sources */,
				9268582111F15F4600A28C33 /* messagehandler.cpp in Sources */,
				9268582211F15F4700A28C33 /* messagein.cpp in Sources */,
				9268582311F15F4800A28C33 /* messageout.cpp in Sources */,
				9268582411F15F4A00A28C33 /* network.cpp in Sources */,
				9268582511F15F4A00A28C33 /* npchandler.cpp in Sources */,
				9268582611F15F4C00A28C33 /* partyhandler.cpp in Sources */,
				9268582711F15F4C00A28C33 /* playerhandler.cpp in Sources */,
				9268582811F15F4E00A28C33 /* specialhandler.cpp in Sources */,
				9268582911F15F4E00A28C33 /* stats.cpp in Sources */,
				9268582A11F15F5000A28C33 /* tradehandler.cpp in Sources */,
				9268583011F15F6800A28C33 /* changeemaildialog.cpp in Sources */,
				9268583111F15F6900A28C33 /* changepassworddialog.cpp in Sources */,
				9268583211F15F7100A28C33 /* quitdialog.cpp in Sources */,
				9268583311F15F7300A28C33 /* serverdialog.cpp in Sources */,
				9268583411F15F7600A28C33 /* skilldialog.cpp in Sources */,
				9268583511F15F7900A28C33 /* statuswindow.cpp in Sources */,
				9268583611F15F7B00A28C33 /* textdialog.cpp in Sources */,
				9268583711F15F7E00A28C33 /* unregisterdialog.cpp in Sources */,
				9268583A11F15FAC00A28C33 /* guild.cpp in Sources */,
				9268583B11F15FC200A28C33 /* position.cpp in Sources */,
				9268583C11F15FC900A28C33 /* sha256.cpp in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin XCBuildConfiguration section */
		C0E91AC608A95435008D54AB /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)";
				ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386";
				COPY_PHASE_STRIP = NO;
				DEAD_CODE_STRIPPING = YES;
				DEBUG_INFORMATION_FORMAT = dwarf;
				FRAMEWORK_SEARCH_PATHS = (
					"$(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1)",
					"$(FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_2)",
				);
				FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_1 = "\"$(SRCROOT)\"";
				FRAMEWORK_SEARCH_PATHS_QUOTED_FOR_TARGET_2 = "\"/System/Library/Frameworks\"";
				GCC_DEBUGGING_SYMBOLS = default;
				GCC_ENABLE_FIX_AND_CONTINUE = NO;
				GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
				GCC_OPTIMIZATION_LEVEL = s;
				GCC_PREPROCESSOR_DEFINITIONS = (
					EATHENA_SUPPORT,
					USE_OPENGL,
				);
				HEADER_SEARCH_PATHS = (
					/Library/Frameworks/SDL_ttf.framework/Headers,
					/Library/Frameworks/SDL_net.framework/Headers,
					/Library/Frameworks/SDL_image.framework/Headers,
					/Library/Frameworks/SDL_mixer.framework/Headers,
					guichan.framework/Headers,
					/Library/Frameworks/libpng.framework/Headers,
					/usr/include/libxml2,
					/Library/Frameworks/SDL.framework/Headers,
					/opt/local/include/SDL,
					/opt/local/include,
				);
				INFOPLIST_FILE = Info.plist;
				LIBRARY_SEARCH_PATHS = (
					/usr/lib,
					"\"$(SRCROOT)\"",
					/opt/local/lib,
				);
				MACOSX_DEPLOYMENT_TARGET = 10.5;
				OTHER_LDFLAGS = (
					"-lz",
					"-lxml2",
					"-lcurl",
					"-lenet",
				);
				PREBINDING = NO;
				PRESERVE_DEAD_CODE_INITS_AND_TERMS = YES;
				PRODUCT_NAME = "The Mana World";
				SDKROOT = "$(DEVELOPER_SDK_DIR)/MacOSX10.5.sdk";
				USER_HEADER_SEARCH_PATHS = src;
			};
			name = Debug;
		};
		C0E91AC708A95435008D54AB /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ARCHS = "$(ARCHS_STANDARD_32_64_BIT_PRE_XCODE_3_1)";
				ARCHS_STANDARD_32_64_BIT_PRE_XCODE_3_1 = "x86_64 i386 ppc";
				COPY_PHASE_STRIP = NO;
				DEAD_CODE_STRIPPING = NO;
				DEBUG_INFORMATION_FORMAT = dwarf;
				FRAMEWORK_SEARCH_PATHS = (
					"$(inherited)",
					"$(FRAMEWORK_SEARCH_PATHS_QUOTED_1)",
				);
				FRAMEWORK_SEARCH_PATHS_QUOTED_1 = "\"/System/Library/Frameworks\"";
				GCC_DEBUGGING_SYMBOLS = full;
				GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PREPROCESSOR_DEFINITIONS = (
					EATHENA_SUPPORT,
					USE_OPENGL,
				);
				GCC_PREPROCESSOR_DEFINITIONS_NOT_USED_IN_PRECOMPS = "";
				GCC_SYMBOLS_PRIVATE_EXTERN = YES;
				GCC_VERSION = 4.2;
				GCC_WARN_EFFECTIVE_CPLUSPLUS_VIOLATIONS = NO;
				HEADER_SEARCH_PATHS = (
					/Library/Frameworks/SDL_ttf.framework/Headers,
					/Library/Frameworks/SDL_net.framework/Headers,
					/Library/Frameworks/SDL_image.framework/Headers,
					/Library/Frameworks/SDL_mixer.framework/Headers,
					guichan.framework/Headers,
					/Library/Frameworks/libpng.framework/Headers,
					/usr/include/libxml2,
					/Library/Frameworks/SDL.framework/Headers,
					/opt/local/include/SDL,
					/opt/local/include,
				);
				INFOPLIST_FILE = Info.plist;
				INSTALL_PATH = "$(HOME)/Applications";
				LIBRARY_SEARCH_PATHS = (
					/usr/lib,
					"\"$(SRCROOT)\"",
					/opt/local/lib,
				);
				MACOSX_DEPLOYMENT_TARGET = 10.5;
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = (
					"-lz",
					"-lxml2",
					"-lcurl",
					"-lenet",
				);
				PREBINDING = NO;
				PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES;
				PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO;
				PRODUCT_NAME = "The Mana World";
				SDKROOT = "$(DEVELOPER_SDK_DIR)/MacOSX10.5.sdk";
				SEPARATE_STRIP = NO;
				SKIP_INSTALL = YES;
				USER_HEADER_SEARCH_PATHS = src;
			};
			name = Release;
		};
		C0E91ACA08A95435008D54AB /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				DEBUG_INFORMATION_FORMAT = dwarf;
				GCC_ENABLE_FIX_AND_CONTINUE = YES;
				GCC_OPTIMIZATION_LEVEL = 0;
				SDKROOT = "$(DEVELOPER_SDK_DIR)/MacOSX10.5.sdk";
				ZERO_LINK = YES;
			};
			name = Debug;
		};
		C0E91ACB08A95435008D54AB /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ARCHS = (
					ppc,
					i386,
				);
				DEBUG_INFORMATION_FORMAT = dwarf;
				GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
				GCC_OPTIMIZATION_LEVEL = 2;
				GCC_PREPROCESSOR_DEFINITIONS = "";
				SDKROOT = "$(DEVELOPER_SDK_DIR)/MacOSX10.5.sdk";
				SEPARATE_STRIP = YES;
			};
			name = Release;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		C0E91AC508A95435008D54AB /* Build configuration list for PBXNativeTarget "themanaworld" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				C0E91AC608A95435008D54AB /* Debug */,
				C0E91AC708A95435008D54AB /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		C0E91AC908A95435008D54AB /* Build configuration list for PBXProject "mana" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				C0E91ACA08A95435008D54AB /* Debug */,
				C0E91ACB08A95435008D54AB /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = 20286C28FDCF999611CA2CEA /* Project object */;
}