-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathproject.pbxproj
1922 lines (1911 loc) · 171 KB
/
project.pbxproj
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
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 50;
objects = {
/* Begin PBXBuildFile section */
1F125FF60D91A4F0009099BE /* effect_glow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F125FF40D91A4EF009099BE /* effect_glow.cpp */; };
1F1CE869114F0B8200F30873 /* item_lists.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F1CE867114F0B8200F30873 /* item_lists.cpp */; };
1F22CC410DBAD57400411752 /* context_menu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F22CC3A0DBAD57400411752 /* context_menu.cpp */; };
1F22CC420DBAD57400411752 /* makeargv.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F22CC3D0DBAD57400411752 /* makeargv.c */; };
1F22CC430DBAD57400411752 /* text_aliases.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F22CC3F0DBAD57400411752 /* text_aliases.c */; };
1F29E84B1164D2C700320F7E /* quest_log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F1CE86A114F0BA300F30873 /* quest_log.cpp */; };
1F52AA240D6BCC0900CA2E5F /* calc.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F52AA170D6BCC0800CA2E5F /* calc.c */; };
1F52AA250D6BCC0900CA2E5F /* eye_candy_debugwin.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F52AA190D6BCC0800CA2E5F /* eye_candy_debugwin.c */; };
1F52AA260D6BCC0900CA2E5F /* optimizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F52AA1D0D6BCC0800CA2E5F /* optimizer.cpp */; };
1F52AA270D6BCC0900CA2E5F /* select.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F52AA1F0D6BCC0800CA2E5F /* select.cpp */; };
1F52AA280D6BCC0900CA2E5F /* skeletons.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F52AA200D6BCC0800CA2E5F /* skeletons.c */; };
1F52AA2C0D6BCC5000CA2E5F /* effect_missile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F52AA2A0D6BCC5000CA2E5F /* effect_missile.cpp */; };
1F608B630FA5CAD100FFD55C /* dds.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F608B5F0FA5CAD100FFD55C /* dds.c */; };
1F608B640FA5CAD100FFD55C /* ddsimage.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F608B610FA5CAD100FFD55C /* ddsimage.c */; };
1F608B690FA5CAF200FFD55C /* half.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F608B650FA5CAF200FFD55C /* half.c */; };
1F608B6A0FA5CAF200FFD55C /* normal.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F608B670FA5CAF200FFD55C /* normal.c */; };
1F744D970D19894900F655E9 /* missiles.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F744D950D19894900F655E9 /* missiles.c */; };
1F812BE50D033551008792A7 /* fontdef.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F8129370D033551008792A7 /* fontdef.c */; };
1F812BE70D033551008792A7 /* parser.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F81293A0D033551008792A7 /* parser.c */; };
1F812BE80D033551008792A7 /* symbols.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F81293C0D033551008792A7 /* symbols.c */; };
1F812BE90D033551008792A7 /* typesetter.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F81293F0D033551008792A7 /* typesetter.c */; };
1F812BEB0D033551008792A7 /* buddy.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F8129430D033551008792A7 /* buddy.c */; };
1F812BEC0D033551008792A7 /* cache.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F8129450D033551008792A7 /* cache.c */; };
1F812BED0D033551008792A7 /* cal.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F8129470D033551008792A7 /* cal.c */; };
1F812BEE0D033551008792A7 /* cal3d_wrapper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F8129490D033551008792A7 /* cal3d_wrapper.cpp */; };
1F812BF00D033551008792A7 /* chat.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F81294D0D033551008792A7 /* chat.c */; };
1F812BF10D033551008792A7 /* cluster.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F8129500D033551008792A7 /* cluster.c */; };
1F812BF20D033551008792A7 /* colors.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F8129520D033551008792A7 /* colors.c */; };
1F812BF40D033551008792A7 /* console.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F8129550D033551008792A7 /* console.c */; };
1F812BF50D033551008792A7 /* consolewin.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F8129570D033551008792A7 /* consolewin.c */; };
1F812BF60D033551008792A7 /* counters.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F8129590D033551008792A7 /* counters.c */; };
1F812BF70D033551008792A7 /* cursors.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F81295B0D033551008792A7 /* cursors.c */; };
1F812BFC0D033551008792A7 /* dialogues.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F8129620D033551008792A7 /* dialogues.c */; };
1F812C0A0D033551008792A7 /* draw_scene.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F8129730D033551008792A7 /* draw_scene.c */; };
1F812C130D033551008792A7 /* elconfig.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F8129800D033551008792A7 /* elconfig.c */; };
1F812C140D033551008792A7 /* elmemory.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F8129820D033551008792A7 /* elmemory.c */; };
1F812C150D033551008792A7 /* elwindows.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F8129840D033551008792A7 /* elwindows.c */; };
1F812C160D033551008792A7 /* encyclopedia.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F8129860D033551008792A7 /* encyclopedia.c */; };
1F812C170D033551008792A7 /* errors.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F8129880D033551008792A7 /* errors.c */; };
1F812C1A0D033551008792A7 /* events.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F81298C0D033551008792A7 /* events.c */; };
1F812C1B0D033551008792A7 /* extendedexception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F81298F0D033551008792A7 /* extendedexception.cpp */; };
1F812C1D0D033551008792A7 /* effect_bag.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F8129930D033551008792A7 /* effect_bag.cpp */; };
1F812C1E0D033551008792A7 /* effect_breath.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F8129950D033551008792A7 /* effect_breath.cpp */; };
1F812C1F0D033551008792A7 /* effect_campfire.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F8129970D033551008792A7 /* effect_campfire.cpp */; };
1F812C200D033551008792A7 /* effect_candle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F8129990D033551008792A7 /* effect_candle.cpp */; };
1F812C210D033551008792A7 /* effect_cloud.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F81299B0D033551008792A7 /* effect_cloud.cpp */; };
1F812C220D033551008792A7 /* effect_firefly.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F81299D0D033551008792A7 /* effect_firefly.cpp */; };
1F812C230D033551008792A7 /* effect_fountain.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F81299F0D033551008792A7 /* effect_fountain.cpp */; };
1F812C240D033551008792A7 /* effect_harvesting.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F8129A10D033551008792A7 /* effect_harvesting.cpp */; };
1F812C250D033551008792A7 /* effect_impact.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F8129A30D033551008792A7 /* effect_impact.cpp */; };
1F812C260D033551008792A7 /* effect_lamp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F8129A50D033551008792A7 /* effect_lamp.cpp */; };
1F812C270D033551008792A7 /* effect_mines.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F8129A70D033551008792A7 /* effect_mines.cpp */; };
1F812C280D033551008792A7 /* effect_ongoing.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F8129A90D033551008792A7 /* effect_ongoing.cpp */; };
1F812C290D033551008792A7 /* effect_selfmagic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F8129AB0D033551008792A7 /* effect_selfmagic.cpp */; };
1F812C2A0D033551008792A7 /* effect_smoke.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F8129AD0D033551008792A7 /* effect_smoke.cpp */; };
1F812C2B0D033551008792A7 /* effect_summon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F8129AF0D033551008792A7 /* effect_summon.cpp */; };
1F812C2C0D033551008792A7 /* effect_sword.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F8129B10D033551008792A7 /* effect_sword.cpp */; };
1F812C2D0D033551008792A7 /* effect_targetmagic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F8129B30D033551008792A7 /* effect_targetmagic.cpp */; };
1F812C2E0D033551008792A7 /* effect_teleporter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F8129B50D033551008792A7 /* effect_teleporter.cpp */; };
1F812C2F0D033551008792A7 /* effect_wind.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F8129B70D033551008792A7 /* effect_wind.cpp */; };
1F812C300D033551008792A7 /* eye_candy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F8129B90D033551008792A7 /* eye_candy.cpp */; };
1F812C310D033551008792A7 /* kepler_orbit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F8129BB0D033551008792A7 /* kepler_orbit.cpp */; };
1F812C320D033551008792A7 /* math_cache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F8129BD0D033551008792A7 /* math_cache.cpp */; };
1F812C330D033551008792A7 /* orbital_mover.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F8129BF0D033551008792A7 /* orbital_mover.cpp */; };
1F812CB00D033551008792A7 /* eye_candy_wrapper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F812A430D033551008792A7 /* eye_candy_wrapper.cpp */; };
1F812CB10D033551008792A7 /* filter.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812A450D033551008792A7 /* filter.c */; };
1F812CB30D033551008792A7 /* framebuffer.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812A490D033551008792A7 /* framebuffer.c */; };
1F812CB40D033551008792A7 /* frustum.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812A4B0D033551008792A7 /* frustum.c */; };
1F812CB50D033551008792A7 /* gamewin.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812A4C0D033551008792A7 /* gamewin.c */; };
1F812CB60D033551008792A7 /* gl_init.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812A4E0D033551008792A7 /* gl_init.c */; };
1F812CB70D033551008792A7 /* help.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812A510D033551008792A7 /* help.c */; };
1F812CB80D033551008792A7 /* highlight.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812A530D033551008792A7 /* highlight.c */; };
1F812CB90D033551008792A7 /* hud.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812A550D033551008792A7 /* hud.c */; };
1F812CBA0D033551008792A7 /* ignore.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812A570D033551008792A7 /* ignore.c */; };
1F812CBB0D033551008792A7 /* init.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812A590D033551008792A7 /* init.c */; };
1F812CBC0D033551008792A7 /* interface.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812A5B0D033551008792A7 /* interface.c */; };
1F812CBD0D033551008792A7 /* e3d_io.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812A5F0D033551008792A7 /* e3d_io.c */; };
1F812CBE0D033551008792A7 /* elc_io.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812A610D033551008792A7 /* elc_io.c */; };
1F812CC10D033551008792A7 /* elpathwrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812A680D033551008792A7 /* elpathwrapper.c */; };
1F812CC20D033551008792A7 /* map_io.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812A6A0D033551008792A7 /* map_io.c */; };
1F812CC30D033551008792A7 /* xmlcallbacks.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812A6D0D033551008792A7 /* xmlcallbacks.c */; };
1F812CC50D033551008792A7 /* items.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812A710D033551008792A7 /* items.c */; };
1F812CC70D033551008792A7 /* keys.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812A740D033551008792A7 /* keys.c */; };
1F812CC80D033551008792A7 /* knowledge.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812A760D033551008792A7 /* knowledge.c */; };
1F812CC90D033551008792A7 /* langselwin.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812A780D033551008792A7 /* langselwin.c */; };
1F812D340D033551008792A7 /* lights.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812AF70D033551008792A7 /* lights.c */; };
1F812D350D033551008792A7 /* list.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812AF90D033551008792A7 /* list.c */; };
1F812D360D033551008792A7 /* load_gl_extensions.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812AFB0D033551008792A7 /* load_gl_extensions.c */; };
1F812D370D033551008792A7 /* loading_win.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812AFD0D033551008792A7 /* loading_win.c */; };
1F812D380D033551008792A7 /* loginwin.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812AFF0D033551008792A7 /* loginwin.c */; };
1F812D390D033551008792A7 /* main.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B010D033551008792A7 /* main.c */; };
1F812D400D033551008792A7 /* manufacture.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B080D033551008792A7 /* manufacture.c */; };
1F812D410D033551008792A7 /* map.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B0A0D033551008792A7 /* map.c */; };
1F812D430D033551008792A7 /* mapwin.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B0D0D033551008792A7 /* mapwin.c */; };
1F812D450D033551008792A7 /* md5.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B100D033551008792A7 /* md5.c */; };
1F812D460D033551008792A7 /* mines.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B120D033551008792A7 /* mines.c */; };
1F812D470D033551008792A7 /* minimap.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B140D033551008792A7 /* minimap.c */; };
1F812D480D033551008792A7 /* misc.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B160D033551008792A7 /* misc.c */; };
1F812D4A0D033551008792A7 /* new_actors.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B1A0D033551008792A7 /* new_actors.c */; };
1F812D4B0D033551008792A7 /* new_character.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B1C0D033551008792A7 /* new_character.c */; };
1F812D4C0D033551008792A7 /* notepad.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B1E0D033551008792A7 /* notepad.c */; };
1F812D4D0D033551008792A7 /* openingwin.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B200D033551008792A7 /* openingwin.c */; };
1F812D4E0D033551008792A7 /* particles.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B220D033551008792A7 /* particles.c */; };
1F812D4F0D033551008792A7 /* paste.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B240D033551008792A7 /* paste.c */; };
1F812D500D033551008792A7 /* pathfinder.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B260D033551008792A7 /* pathfinder.c */; };
1F812D510D033551008792A7 /* amx.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B290D033551008792A7 /* amx.c */; };
1F812D520D033551008792A7 /* amxaux.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B2B0D033551008792A7 /* amxaux.c */; };
1F812D530D033551008792A7 /* amxcons.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B2D0D033551008792A7 /* amxcons.c */; };
1F812D540D033551008792A7 /* amxel.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B2F0D033551008792A7 /* amxel.c */; };
1F812D550D033551008792A7 /* amxfloat.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B310D033551008792A7 /* amxfloat.c */; };
1F812D560D033551008792A7 /* amxstring.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B330D033551008792A7 /* amxstring.c */; };
1F812D570D033551008792A7 /* elpawn.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B350D033551008792A7 /* elpawn.c */; };
1F812D600D033551008792A7 /* pm_log.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B430D033551008792A7 /* pm_log.c */; };
1F812D610D033551008792A7 /* popup.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B450D033551008792A7 /* popup.c */; };
1F812D630D033551008792A7 /* queue.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B490D033551008792A7 /* queue.c */; };
1F812D650D033551008792A7 /* reflection.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B4C0D033551008792A7 /* reflection.c */; };
1F812D660D033551008792A7 /* rules.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B4E0D033551008792A7 /* rules.c */; };
1F812D670D033551008792A7 /* sendvideoinfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B500D033551008792A7 /* sendvideoinfo.cpp */; };
1F812D680D033551008792A7 /* serverpopup.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B520D033551008792A7 /* serverpopup.c */; };
1F812D690D033551008792A7 /* servers.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B540D033551008792A7 /* servers.c */; };
1F812D6B0D033551008792A7 /* session.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B570D033551008792A7 /* session.c */; };
1F812D6E0D033551008792A7 /* noise.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B5E0D033551008792A7 /* noise.c */; };
1F812D6F0D033551008792A7 /* shader.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B600D033551008792A7 /* shader.c */; };
1F812D700D033551008792A7 /* shadows.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B620D033551008792A7 /* shadows.c */; };
1F812D710D033551008792A7 /* skills.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B640D033551008792A7 /* skills.c */; };
1F812D720D033551008792A7 /* sky.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B660D033551008792A7 /* sky.c */; };
1F812D730D033551008792A7 /* sort.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B680D033551008792A7 /* sort.c */; };
1F812D740D033551008792A7 /* sound.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B6A0D033551008792A7 /* sound.c */; };
1F812D750D033551008792A7 /* special_effects.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B6C0D033551008792A7 /* special_effects.c */; };
1F812D760D033551008792A7 /* spells.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B6E0D033551008792A7 /* spells.c */; };
1F812D770D033551008792A7 /* stats.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B700D033551008792A7 /* stats.c */; };
1F812D780D033551008792A7 /* storage.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B720D033551008792A7 /* storage.c */; };
1F812D790D033551008792A7 /* symbol_table.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B740D033551008792A7 /* symbol_table.c */; };
1F812D7A0D033551008792A7 /* tabs.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B760D033551008792A7 /* tabs.c */; };
1F812D7C0D033551008792A7 /* textures.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B7C0D033551008792A7 /* textures.c */; };
1F812D7D0D033551008792A7 /* tile_map.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B7E0D033551008792A7 /* tile_map.c */; };
1F812D7E0D033551008792A7 /* timers.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B800D033551008792A7 /* timers.c */; };
1F812D800D033551008792A7 /* trade.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B830D033551008792A7 /* trade.c */; };
1F812D810D033551008792A7 /* translate.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B850D033551008792A7 /* translate.c */; };
1F812D820D033551008792A7 /* update.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B870D033551008792A7 /* update.c */; };
1F812D830D033551008792A7 /* url.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B890D033551008792A7 /* url.c */; };
1F812D840D033551008792A7 /* weather.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B8C0D033551008792A7 /* weather.c */; };
1F812D850D033551008792A7 /* widgets.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B8E0D033551008792A7 /* widgets.c */; };
1F812D860D033551008792A7 /* xmlhelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F812B910D033551008792A7 /* xmlhelper.cpp */; };
1F812DA40D03511A008792A7 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1F812DA30D03511A008792A7 /* OpenGL.framework */; };
1F812DC70D03572D008792A7 /* OpenAL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1F812DC60D03572D008792A7 /* OpenAL.framework */; };
1F812DFA0D035D97008792A7 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1F812DF90D035D97008792A7 /* AudioToolbox.framework */; };
1F8F612D10CDC8CD007B270D /* emotes.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F8F612710CDC8CD007B270D /* emotes.c */; };
1F8F612E10CDC8CD007B270D /* hash.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F8F612910CDC8CD007B270D /* hash.c */; };
1F8F612F10CDC8CD007B270D /* multiplayer.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F8F612B10CDC8CD007B270D /* multiplayer.c */; };
1F8F613010CDC8CD007B270D /* text.c in Sources */ = {isa = PBXBuildFile; fileRef = 1F8F612C10CDC8CD007B270D /* text.c */; };
1FB7E40D143560CB002C4FEA /* elloggingwrapper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7E409143560CB002C4FEA /* elloggingwrapper.cpp */; };
1FB7E414143560DE002C4FEA /* hardwarebuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7E410143560DE002C4FEA /* hardwarebuffer.cpp */; };
1FB7E415143560DE002C4FEA /* logging.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7E412143560DE002C4FEA /* logging.cpp */; };
1FB7E43A143560EA002C4FEA /* 7zCrc.c in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7E417143560EA002C4FEA /* 7zCrc.c */; };
1FB7E43B143560EA002C4FEA /* 7zCrcOpt.c in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7E419143560EA002C4FEA /* 7zCrcOpt.c */; };
1FB7E43C143560EA002C4FEA /* Alloc.c in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7E41A143560EA002C4FEA /* Alloc.c */; };
1FB7E43D143560EA002C4FEA /* Bra.c in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7E41C143560EA002C4FEA /* Bra.c */; };
1FB7E43E143560EA002C4FEA /* Bra86.c in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7E41E143560EA002C4FEA /* Bra86.c */; };
1FB7E43F143560EA002C4FEA /* BraIA64.c in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7E41F143560EA002C4FEA /* BraIA64.c */; };
1FB7E440143560EA002C4FEA /* CpuArch.c in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7E420143560EA002C4FEA /* CpuArch.c */; };
1FB7E441143560EA002C4FEA /* Delta.c in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7E422143560EA002C4FEA /* Delta.c */; };
1FB7E442143560EA002C4FEA /* LzFind.c in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7E424143560EA002C4FEA /* LzFind.c */; };
1FB7E443143560EA002C4FEA /* Lzma2Dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7E427143560EA002C4FEA /* Lzma2Dec.c */; };
1FB7E444143560EA002C4FEA /* Lzma2Enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7E429143560EA002C4FEA /* Lzma2Enc.c */; };
1FB7E445143560EA002C4FEA /* LzmaDec.c in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7E42B143560EA002C4FEA /* LzmaDec.c */; };
1FB7E446143560EA002C4FEA /* LzmaEnc.c in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7E42D143560EA002C4FEA /* LzmaEnc.c */; };
1FB7E447143560EA002C4FEA /* Sha256.c in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7E430143560EA002C4FEA /* Sha256.c */; };
1FB7E448143560EA002C4FEA /* Xz.c in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7E433143560EA002C4FEA /* Xz.c */; };
1FB7E449143560EA002C4FEA /* XzCrc64.c in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7E435143560EA002C4FEA /* XzCrc64.c */; };
1FB7E44A143560EA002C4FEA /* XzDec.c in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7E437143560EA002C4FEA /* XzDec.c */; };
1FB7E44B143560EA002C4FEA /* XzEnc.c in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7E438143560EA002C4FEA /* XzEnc.c */; };
1FB7E44E14356236002C4FEA /* fileutil.c in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7E44C14356236002C4FEA /* fileutil.c */; };
1FC155580FE906160046D7FE /* user_menus.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FC155560FE906160046D7FE /* user_menus.cpp */; };
1FD61F5F0E2CCB560085FD81 /* effect_staff.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FD61F5D0E2CCB560085FD81 /* effect_staff.cpp */; };
7B0B8C9916982A1000D75AD9 /* icon_window.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7B0B8C9816982A1000D75AD9 /* icon_window.cpp */; };
7B0B8CB016AD61C000D75AD9 /* command_queue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7B0B8CAF16AD61C000D75AD9 /* command_queue.cpp */; };
7B0B8CB716CA78C000D75AD9 /* trade_log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7B0B8CB616CA78C000D75AD9 /* trade_log.cpp */; };
7B0B8CBA16CA78E800D75AD9 /* item_info.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7B0B8CB916CA78E800D75AD9 /* item_info.cpp */; };
7B0B8F1A1794171B00D75AD9 /* named_colours.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7B0B8F191794171B00D75AD9 /* named_colours.cpp */; };
7B0C5B50224007C900BCFE13 /* password_manager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7B0C5B4E224007C900BCFE13 /* password_manager.cpp */; };
7B0C5B51224007C900BCFE13 /* xor_cipher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7B0C5B4F224007C900BCFE13 /* xor_cipher.cpp */; };
7B57366820C80E4000C41C6E /* hud_misc_window.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B57366020C80E4000C41C6E /* hud_misc_window.c */; };
7B57366920C80E4000C41C6E /* hud_quickbar_window.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B57366220C80E4000C41C6E /* hud_quickbar_window.c */; };
7B57366A20C80E4000C41C6E /* hud_quickspells_window.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B57366420C80E4000C41C6E /* hud_quickspells_window.c */; };
7B57366B20C80E4000C41C6E /* hud_statsbar_window.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B57366620C80E4000C41C6E /* hud_statsbar_window.c */; };
7B80F34D187DA85B00C81403 /* hud_indicators.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7B80F34B187DA85B00C81403 /* hud_indicators.cpp */; };
7B80F34E187DA85B00C81403 /* hud_timer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7B80F34C187DA85B00C81403 /* hud_timer.cpp */; };
7BDF3E1A20D009CA007BE401 /* el_memory.c in Sources */ = {isa = PBXBuildFile; fileRef = 7BDF3E1820D009CA007BE401 /* el_memory.c */; };
D730263E244EE9FE00A6C002 /* data in Copy Files */ = {isa = PBXBuildFile; fileRef = D730263C244EE9FD00A6C002 /* data */; };
D730265B244F5C8800A6C002 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */; };
D7302670244F639300A6C002 /* SDL2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D7302669244F639200A6C002 /* SDL2.framework */; };
D7302671244F639300A6C002 /* SDL2.framework in Copy Frameworks into .app bundle */ = {isa = PBXBuildFile; fileRef = D7302669244F639200A6C002 /* SDL2.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
D7302672244F639300A6C002 /* SDL2_net.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D730266A244F639200A6C002 /* SDL2_net.framework */; };
D7302673244F639300A6C002 /* SDL2_net.framework in Copy Frameworks into .app bundle */ = {isa = PBXBuildFile; fileRef = D730266A244F639200A6C002 /* SDL2_net.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
D7302674244F639300A6C002 /* ogg.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D730266B244F639200A6C002 /* ogg.framework */; };
D7302675244F639300A6C002 /* ogg.framework in Copy Frameworks into .app bundle */ = {isa = PBXBuildFile; fileRef = D730266B244F639200A6C002 /* ogg.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
D7302676244F639300A6C002 /* cal3d.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D730266C244F639200A6C002 /* cal3d.framework */; };
D7302677244F639300A6C002 /* cal3d.framework in Copy Frameworks into .app bundle */ = {isa = PBXBuildFile; fileRef = D730266C244F639200A6C002 /* cal3d.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
D7302678244F639300A6C002 /* libpng.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D730266D244F639300A6C002 /* libpng.framework */; };
D7302679244F639300A6C002 /* libpng.framework in Copy Frameworks into .app bundle */ = {isa = PBXBuildFile; fileRef = D730266D244F639300A6C002 /* libpng.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
D730267A244F639300A6C002 /* SDL2_image.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D730266E244F639300A6C002 /* SDL2_image.framework */; };
D730267B244F639300A6C002 /* SDL2_image.framework in Copy Frameworks into .app bundle */ = {isa = PBXBuildFile; fileRef = D730266E244F639300A6C002 /* SDL2_image.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
D7436E7E24598A2100875ABE /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = D7436E7B2459829500875ABE /* Images.xcassets */; };
D7437F10245ABAD100875ABE /* vorbis.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D7437F0F245ABAD100875ABE /* vorbis.framework */; };
D7437F11245ABAD100875ABE /* vorbis.framework in Copy Frameworks into .app bundle */ = {isa = PBXBuildFile; fileRef = D7437F0F245ABAD100875ABE /* vorbis.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
D791C71525F9300700EB3011 /* books.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D791C71425F9300700EB3011 /* books.cpp */; };
D791C71725F930CF00EB3011 /* font.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D791C71625F930CF00EB3011 /* font.cpp */; };
D791C71C25F9321900EB3011 /* json_io.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D791C71B25F9321900EB3011 /* json_io.cpp */; };
D791C72325F9336F00EB3011 /* SDL2_ttf.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D791C72225F9336F00EB3011 /* SDL2_ttf.framework */; };
D791C72425F9336F00EB3011 /* SDL2_ttf.framework in Copy Frameworks into .app bundle */ = {isa = PBXBuildFile; fileRef = D791C72225F9336F00EB3011 /* SDL2_ttf.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
D7A653702B861224003E0B91 /* actors_list.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7A6536F2B861224003E0B91 /* actors_list.cpp */; };
D7A653732B861240003E0B91 /* invasion_window.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7A653712B86123F003E0B91 /* invasion_window.cpp */; };
D7F7BF9A26E8D7860077BE9C /* 3d_objects.c in Sources */ = {isa = PBXBuildFile; fileRef = D7F7BF8426E8D7850077BE9C /* 3d_objects.c */; };
D7F7BF9B26E8D7860077BE9C /* alphamap.c in Sources */ = {isa = PBXBuildFile; fileRef = D7F7BF8526E8D7850077BE9C /* alphamap.c */; };
D7F7BF9C26E8D7860077BE9C /* actor_init.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7F7BF8726E8D7850077BE9C /* actor_init.cpp */; };
D7F7BF9D26E8D7860077BE9C /* asc.c in Sources */ = {isa = PBXBuildFile; fileRef = D7F7BF8C26E8D7850077BE9C /* asc.c */; };
D7F7BF9E26E8D7860077BE9C /* bags.c in Sources */ = {isa = PBXBuildFile; fileRef = D7F7BF8E26E8D7850077BE9C /* bags.c */; };
D7F7BF9F26E8D7860077BE9C /* 2d_objects.c in Sources */ = {isa = PBXBuildFile; fileRef = D7F7BF9026E8D7860077BE9C /* 2d_objects.c */; };
D7F7BFA026E8D7860077BE9C /* actor_scripts.c in Sources */ = {isa = PBXBuildFile; fileRef = D7F7BF9226E8D7860077BE9C /* actor_scripts.c */; };
D7F7BFA126E8D7860077BE9C /* astrology.c in Sources */ = {isa = PBXBuildFile; fileRef = D7F7BF9326E8D7860077BE9C /* astrology.c */; };
D7F7BFA226E8D7860077BE9C /* bbox_tree.c in Sources */ = {isa = PBXBuildFile; fileRef = D7F7BF9526E8D7860077BE9C /* bbox_tree.c */; };
D7F7BFA326E8D7860077BE9C /* achievements.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7F7BF9726E8D7860077BE9C /* achievements.cpp */; };
D7F7BFA426E8D7860077BE9C /* actors.c in Sources */ = {isa = PBXBuildFile; fileRef = D7F7BF9926E8D7860077BE9C /* actors.c */; };
D7F7BFA826E8D7FF0077BE9C /* textpopup.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7F7BFA726E8D7FF0077BE9C /* textpopup.cpp */; };
D7F7BFAB26E8D8230077BE9C /* socket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7F7BFAA26E8D8230077BE9C /* socket.cpp */; };
D7F7BFAE26E8D8930077BE9C /* ipaddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7F7BFAC26E8D8930077BE9C /* ipaddress.cpp */; };
D7F7BFB126E8D8CC0077BE9C /* ext_protocol_shared.c in Sources */ = {isa = PBXBuildFile; fileRef = D7F7BFB026E8D8CC0077BE9C /* ext_protocol_shared.c */; };
D7F7BFB426E8D9120077BE9C /* cppwindows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7F7BFB226E8D9120077BE9C /* cppwindows.cpp */; };
D7F7BFB726E8D92A0077BE9C /* connection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7F7BFB626E8D92A0077BE9C /* connection.cpp */; };
D7F7BFB926E8DB990077BE9C /* OpenSSL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D7F7BFB826E8DB990077BE9C /* OpenSSL.framework */; };
D7F7BFBA26E8DB990077BE9C /* OpenSSL.framework in Copy Frameworks into .app bundle */ = {isa = PBXBuildFile; fileRef = D7F7BFB826E8DB990077BE9C /* OpenSSL.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
E18287A10EFFFC320046818E /* buffs.c in Sources */ = {isa = PBXBuildFile; fileRef = E182879E0EFFFC320046818E /* buffs.c */; };
E1914A6A1305B1A8004CD9C1 /* image.c in Sources */ = {isa = PBXBuildFile; fileRef = E1914A661305B1A8004CD9C1 /* image.c */; };
E1914A6B1305B1A8004CD9C1 /* image_loading.c in Sources */ = {isa = PBXBuildFile; fileRef = E1914A681305B1A8004CD9C1 /* image_loading.c */; };
E1DE78601330EE52005E7747 /* cal3d_io_wrapper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1DE78541330EE52005E7747 /* cal3d_io_wrapper.cpp */; };
E1DE78611330EE52005E7747 /* elfilewrapper.c in Sources */ = {isa = PBXBuildFile; fileRef = E1DE78571330EE52005E7747 /* elfilewrapper.c */; };
E1DE78621330EE52005E7747 /* ioapi.c in Sources */ = {isa = PBXBuildFile; fileRef = E1DE78581330EE52005E7747 /* ioapi.c */; };
E1DE78631330EE52005E7747 /* unzip.c in Sources */ = {isa = PBXBuildFile; fileRef = E1DE785A1330EE52005E7747 /* unzip.c */; };
E1DE78641330EE52005E7747 /* zip.c in Sources */ = {isa = PBXBuildFile; fileRef = E1DE785C1330EE52005E7747 /* zip.c */; };
E1DE78651330EE52005E7747 /* ziputil.c in Sources */ = {isa = PBXBuildFile; fileRef = E1DE785E1330EE52005E7747 /* ziputil.c */; };
E1DE786A1330EE79005E7747 /* custom_update.c in Sources */ = {isa = PBXBuildFile; fileRef = E1DE78661330EE79005E7747 /* custom_update.c */; };
E1DE786B1330EE79005E7747 /* new_update.c in Sources */ = {isa = PBXBuildFile; fileRef = E1DE78681330EE79005E7747 /* new_update.c */; };
/* End PBXBuildFile section */
/* Begin PBXCopyFilesBuildPhase section */
002F39FD09D0883400EBEB88 /* Copy Frameworks into .app bundle */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "";
dstSubfolderSpec = 10;
files = (
D791C72425F9336F00EB3011 /* SDL2_ttf.framework in Copy Frameworks into .app bundle */,
D7302679244F639300A6C002 /* libpng.framework in Copy Frameworks into .app bundle */,
D7302671244F639300A6C002 /* SDL2.framework in Copy Frameworks into .app bundle */,
D7302673244F639300A6C002 /* SDL2_net.framework in Copy Frameworks into .app bundle */,
D730267B244F639300A6C002 /* SDL2_image.framework in Copy Frameworks into .app bundle */,
D7302677244F639300A6C002 /* cal3d.framework in Copy Frameworks into .app bundle */,
D7F7BFBA26E8DB990077BE9C /* OpenSSL.framework in Copy Frameworks into .app bundle */,
D7437F11245ABAD100875ABE /* vorbis.framework in Copy Frameworks into .app bundle */,
D7302675244F639300A6C002 /* ogg.framework in Copy Frameworks into .app bundle */,
);
name = "Copy Frameworks into .app bundle";
runOnlyForDeploymentPostprocessing = 0;
};
1F812E7A0D03A896008792A7 /* Copy Files */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "";
dstSubfolderSpec = 7;
files = (
D730263E244EE9FE00A6C002 /* data in Copy Files */,
);
name = "Copy Files";
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = "<absolute>"; };
1F125FF40D91A4EF009099BE /* effect_glow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = effect_glow.cpp; sourceTree = "<group>"; };
1F125FF50D91A4EF009099BE /* effect_glow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = effect_glow.h; sourceTree = "<group>"; };
1F1CE867114F0B8200F30873 /* item_lists.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = item_lists.cpp; path = ../item_lists.cpp; sourceTree = SOURCE_ROOT; };
1F1CE868114F0B8200F30873 /* item_lists.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = item_lists.h; path = ../item_lists.h; sourceTree = SOURCE_ROOT; };
1F1CE86A114F0BA300F30873 /* quest_log.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = quest_log.cpp; path = ../quest_log.cpp; sourceTree = SOURCE_ROOT; };
1F22CC3A0DBAD57400411752 /* context_menu.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = context_menu.cpp; path = ../context_menu.cpp; sourceTree = SOURCE_ROOT; };
1F22CC3B0DBAD57400411752 /* context_menu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = context_menu.h; path = ../context_menu.h; sourceTree = SOURCE_ROOT; };
1F22CC3C0DBAD57400411752 /* dbuffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = dbuffer.h; path = ../dbuffer.h; sourceTree = SOURCE_ROOT; };
1F22CC3D0DBAD57400411752 /* makeargv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = makeargv.c; path = ../makeargv.c; sourceTree = SOURCE_ROOT; };
1F22CC3E0DBAD57400411752 /* makeargv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = makeargv.h; path = ../makeargv.h; sourceTree = SOURCE_ROOT; };
1F22CC3F0DBAD57400411752 /* text_aliases.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = text_aliases.c; path = ../text_aliases.c; sourceTree = SOURCE_ROOT; };
1F22CC400DBAD57400411752 /* text_aliases.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = text_aliases.h; path = ../text_aliases.h; sourceTree = SOURCE_ROOT; };
1F52AA170D6BCC0800CA2E5F /* calc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = calc.c; path = ../calc.c; sourceTree = SOURCE_ROOT; };
1F52AA180D6BCC0800CA2E5F /* calc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = calc.h; path = ../calc.h; sourceTree = SOURCE_ROOT; };
1F52AA190D6BCC0800CA2E5F /* eye_candy_debugwin.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = eye_candy_debugwin.c; path = ../eye_candy_debugwin.c; sourceTree = SOURCE_ROOT; };
1F52AA1B0D6BCC0800CA2E5F /* glext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = glext.h; path = ../glext.h; sourceTree = SOURCE_ROOT; };
1F52AA1D0D6BCC0800CA2E5F /* optimizer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = optimizer.cpp; path = ../optimizer.cpp; sourceTree = SOURCE_ROOT; };
1F52AA1E0D6BCC0800CA2E5F /* optimizer.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = optimizer.hpp; path = ../optimizer.hpp; sourceTree = SOURCE_ROOT; };
1F52AA1F0D6BCC0800CA2E5F /* select.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = select.cpp; path = ../select.cpp; sourceTree = SOURCE_ROOT; };
1F52AA200D6BCC0800CA2E5F /* skeletons.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = skeletons.c; path = ../skeletons.c; sourceTree = SOURCE_ROOT; };
1F52AA210D6BCC0800CA2E5F /* skeletons.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = skeletons.h; path = ../skeletons.h; sourceTree = SOURCE_ROOT; };
1F52AA220D6BCC0800CA2E5F /* threads.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = threads.h; path = ../threads.h; sourceTree = SOURCE_ROOT; };
1F52AA2A0D6BCC5000CA2E5F /* effect_missile.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = effect_missile.cpp; sourceTree = "<group>"; };
1F52AA2B0D6BCC5000CA2E5F /* effect_missile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = effect_missile.h; sourceTree = "<group>"; };
1F608B5F0FA5CAD100FFD55C /* dds.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = dds.c; path = ../dds.c; sourceTree = SOURCE_ROOT; };
1F608B600FA5CAD100FFD55C /* dds.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = dds.h; path = ../dds.h; sourceTree = SOURCE_ROOT; };
1F608B610FA5CAD100FFD55C /* ddsimage.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ddsimage.c; path = ../ddsimage.c; sourceTree = SOURCE_ROOT; };
1F608B620FA5CAD100FFD55C /* ddsimage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ddsimage.h; path = ../ddsimage.h; sourceTree = SOURCE_ROOT; };
1F608B650FA5CAF200FFD55C /* half.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = half.c; sourceTree = "<group>"; };
1F608B660FA5CAF200FFD55C /* half.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = half.h; sourceTree = "<group>"; };
1F608B670FA5CAF200FFD55C /* normal.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = normal.c; sourceTree = "<group>"; };
1F608B680FA5CAF200FFD55C /* normal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = normal.h; sourceTree = "<group>"; };
1F744D950D19894900F655E9 /* missiles.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = missiles.c; path = ../missiles.c; sourceTree = SOURCE_ROOT; };
1F744D960D19894900F655E9 /* missiles.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = missiles.h; path = ../missiles.h; sourceTree = SOURCE_ROOT; };
1F8129370D033551008792A7 /* fontdef.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = fontdef.c; sourceTree = "<group>"; };
1F8129380D033551008792A7 /* fontdef.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fontdef.h; sourceTree = "<group>"; };
1F81293A0D033551008792A7 /* parser.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = parser.c; sourceTree = "<group>"; };
1F81293B0D033551008792A7 /* parser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = parser.h; sourceTree = "<group>"; };
1F81293C0D033551008792A7 /* symbols.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = symbols.c; sourceTree = "<group>"; };
1F81293D0D033551008792A7 /* symbols.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = symbols.h; sourceTree = "<group>"; };
1F81293E0D033551008792A7 /* types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = types.h; sourceTree = "<group>"; };
1F81293F0D033551008792A7 /* typesetter.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = typesetter.c; sourceTree = "<group>"; };
1F8129400D033551008792A7 /* typesetter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = typesetter.h; sourceTree = "<group>"; };
1F8129420D033551008792A7 /* books.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = books.h; path = ../books.h; sourceTree = SOURCE_ROOT; };
1F8129430D033551008792A7 /* buddy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = buddy.c; path = ../buddy.c; sourceTree = SOURCE_ROOT; };
1F8129440D033551008792A7 /* buddy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = buddy.h; path = ../buddy.h; sourceTree = SOURCE_ROOT; };
1F8129450D033551008792A7 /* cache.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = cache.c; path = ../cache.c; sourceTree = SOURCE_ROOT; };
1F8129460D033551008792A7 /* cache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cache.h; path = ../cache.h; sourceTree = SOURCE_ROOT; };
1F8129470D033551008792A7 /* cal.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = cal.c; path = ../cal.c; sourceTree = SOURCE_ROOT; };
1F8129480D033551008792A7 /* cal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cal.h; path = ../cal.h; sourceTree = SOURCE_ROOT; };
1F8129490D033551008792A7 /* cal3d_wrapper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = cal3d_wrapper.cpp; path = ../cal3d_wrapper.cpp; sourceTree = SOURCE_ROOT; };
1F81294A0D033551008792A7 /* cal3d_wrapper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cal3d_wrapper.h; path = ../cal3d_wrapper.h; sourceTree = SOURCE_ROOT; };
1F81294B0D033551008792A7 /* cal_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cal_types.h; path = ../cal_types.h; sourceTree = SOURCE_ROOT; };
1F81294D0D033551008792A7 /* chat.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = chat.c; path = ../chat.c; sourceTree = SOURCE_ROOT; };
1F81294E0D033551008792A7 /* chat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = chat.h; path = ../chat.h; sourceTree = SOURCE_ROOT; };
1F81294F0D033551008792A7 /* client_serv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = client_serv.h; path = ../client_serv.h; sourceTree = SOURCE_ROOT; };
1F8129500D033551008792A7 /* cluster.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = cluster.c; path = ../cluster.c; sourceTree = SOURCE_ROOT; };
1F8129510D033551008792A7 /* cluster.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cluster.h; path = ../cluster.h; sourceTree = SOURCE_ROOT; };
1F8129520D033551008792A7 /* colors.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = colors.c; path = ../colors.c; sourceTree = SOURCE_ROOT; };
1F8129530D033551008792A7 /* colors.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = colors.h; path = ../colors.h; sourceTree = SOURCE_ROOT; };
1F8129550D033551008792A7 /* console.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = console.c; path = ../console.c; sourceTree = SOURCE_ROOT; };
1F8129560D033551008792A7 /* console.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = console.h; path = ../console.h; sourceTree = SOURCE_ROOT; };
1F8129570D033551008792A7 /* consolewin.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = consolewin.c; path = ../consolewin.c; sourceTree = SOURCE_ROOT; };
1F8129580D033551008792A7 /* consolewin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = consolewin.h; path = ../consolewin.h; sourceTree = SOURCE_ROOT; };
1F8129590D033551008792A7 /* counters.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = counters.c; path = ../counters.c; sourceTree = SOURCE_ROOT; };
1F81295A0D033551008792A7 /* counters.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = counters.h; path = ../counters.h; sourceTree = SOURCE_ROOT; };
1F81295B0D033551008792A7 /* cursors.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = cursors.c; path = ../cursors.c; sourceTree = SOURCE_ROOT; };
1F81295C0D033551008792A7 /* cursors.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cursors.h; path = ../cursors.h; sourceTree = SOURCE_ROOT; };
1F8129620D033551008792A7 /* dialogues.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = dialogues.c; path = ../dialogues.c; sourceTree = SOURCE_ROOT; };
1F8129630D033551008792A7 /* dialogues.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = dialogues.h; path = ../dialogues.h; sourceTree = SOURCE_ROOT; };
1F8129730D033551008792A7 /* draw_scene.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = draw_scene.c; path = ../draw_scene.c; sourceTree = SOURCE_ROOT; };
1F8129740D033551008792A7 /* draw_scene.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = draw_scene.h; path = ../draw_scene.h; sourceTree = SOURCE_ROOT; };
1F8129750D033551008792A7 /* e3d.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = e3d.h; path = ../e3d.h; sourceTree = SOURCE_ROOT; };
1F8129760D033551008792A7 /* e3d_object.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = e3d_object.h; path = ../e3d_object.h; sourceTree = SOURCE_ROOT; };
1F81297D0D033551008792A7 /* elc_private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = elc_private.h; path = ../elc_private.h; sourceTree = SOURCE_ROOT; };
1F8129800D033551008792A7 /* elconfig.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = elconfig.c; path = ../elconfig.c; sourceTree = SOURCE_ROOT; };
1F8129810D033551008792A7 /* elconfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = elconfig.h; path = ../elconfig.h; sourceTree = SOURCE_ROOT; };
1F8129820D033551008792A7 /* elmemory.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = elmemory.c; path = ../elmemory.c; sourceTree = SOURCE_ROOT; };
1F8129830D033551008792A7 /* elmemory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = elmemory.h; path = ../elmemory.h; sourceTree = SOURCE_ROOT; };
1F8129840D033551008792A7 /* elwindows.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = elwindows.c; path = ../elwindows.c; sourceTree = SOURCE_ROOT; };
1F8129850D033551008792A7 /* elwindows.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = elwindows.h; path = ../elwindows.h; sourceTree = SOURCE_ROOT; };
1F8129860D033551008792A7 /* encyclopedia.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = encyclopedia.c; path = ../encyclopedia.c; sourceTree = SOURCE_ROOT; };
1F8129870D033551008792A7 /* encyclopedia.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = encyclopedia.h; path = ../encyclopedia.h; sourceTree = SOURCE_ROOT; };
1F8129880D033551008792A7 /* errors.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = errors.c; path = ../errors.c; sourceTree = SOURCE_ROOT; };
1F8129890D033551008792A7 /* errors.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = errors.h; path = ../errors.h; sourceTree = SOURCE_ROOT; };
1F81298C0D033551008792A7 /* events.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = events.c; path = ../events.c; sourceTree = SOURCE_ROOT; };
1F81298D0D033551008792A7 /* events.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = events.h; path = ../events.h; sourceTree = SOURCE_ROOT; };
1F81298F0D033551008792A7 /* extendedexception.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = extendedexception.cpp; sourceTree = "<group>"; };
1F8129900D033551008792A7 /* extendedexception.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = extendedexception.hpp; sourceTree = "<group>"; };
1F8129930D033551008792A7 /* effect_bag.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = effect_bag.cpp; sourceTree = "<group>"; };
1F8129940D033551008792A7 /* effect_bag.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = effect_bag.h; sourceTree = "<group>"; };
1F8129950D033551008792A7 /* effect_breath.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = effect_breath.cpp; sourceTree = "<group>"; };
1F8129960D033551008792A7 /* effect_breath.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = effect_breath.h; sourceTree = "<group>"; };
1F8129970D033551008792A7 /* effect_campfire.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = effect_campfire.cpp; sourceTree = "<group>"; };
1F8129980D033551008792A7 /* effect_campfire.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = effect_campfire.h; sourceTree = "<group>"; };
1F8129990D033551008792A7 /* effect_candle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = effect_candle.cpp; sourceTree = "<group>"; };
1F81299A0D033551008792A7 /* effect_candle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = effect_candle.h; sourceTree = "<group>"; };
1F81299B0D033551008792A7 /* effect_cloud.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = effect_cloud.cpp; sourceTree = "<group>"; };
1F81299C0D033551008792A7 /* effect_cloud.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = effect_cloud.h; sourceTree = "<group>"; };
1F81299D0D033551008792A7 /* effect_firefly.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = effect_firefly.cpp; sourceTree = "<group>"; };
1F81299E0D033551008792A7 /* effect_firefly.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = effect_firefly.h; sourceTree = "<group>"; };
1F81299F0D033551008792A7 /* effect_fountain.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = effect_fountain.cpp; sourceTree = "<group>"; };
1F8129A00D033551008792A7 /* effect_fountain.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = effect_fountain.h; sourceTree = "<group>"; };
1F8129A10D033551008792A7 /* effect_harvesting.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = effect_harvesting.cpp; sourceTree = "<group>"; };
1F8129A20D033551008792A7 /* effect_harvesting.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = effect_harvesting.h; sourceTree = "<group>"; };
1F8129A30D033551008792A7 /* effect_impact.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = effect_impact.cpp; sourceTree = "<group>"; };
1F8129A40D033551008792A7 /* effect_impact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = effect_impact.h; sourceTree = "<group>"; };
1F8129A50D033551008792A7 /* effect_lamp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = effect_lamp.cpp; sourceTree = "<group>"; };
1F8129A60D033551008792A7 /* effect_lamp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = effect_lamp.h; sourceTree = "<group>"; };
1F8129A70D033551008792A7 /* effect_mines.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = effect_mines.cpp; sourceTree = "<group>"; };
1F8129A80D033551008792A7 /* effect_mines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = effect_mines.h; sourceTree = "<group>"; };
1F8129A90D033551008792A7 /* effect_ongoing.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = effect_ongoing.cpp; sourceTree = "<group>"; };
1F8129AA0D033551008792A7 /* effect_ongoing.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = effect_ongoing.h; sourceTree = "<group>"; };
1F8129AB0D033551008792A7 /* effect_selfmagic.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = effect_selfmagic.cpp; sourceTree = "<group>"; };
1F8129AC0D033551008792A7 /* effect_selfmagic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = effect_selfmagic.h; sourceTree = "<group>"; };
1F8129AD0D033551008792A7 /* effect_smoke.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = effect_smoke.cpp; sourceTree = "<group>"; };
1F8129AE0D033551008792A7 /* effect_smoke.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = effect_smoke.h; sourceTree = "<group>"; };
1F8129AF0D033551008792A7 /* effect_summon.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = effect_summon.cpp; sourceTree = "<group>"; };
1F8129B00D033551008792A7 /* effect_summon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = effect_summon.h; sourceTree = "<group>"; };
1F8129B10D033551008792A7 /* effect_sword.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = effect_sword.cpp; sourceTree = "<group>"; };
1F8129B20D033551008792A7 /* effect_sword.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = effect_sword.h; sourceTree = "<group>"; };
1F8129B30D033551008792A7 /* effect_targetmagic.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = effect_targetmagic.cpp; sourceTree = "<group>"; };
1F8129B40D033551008792A7 /* effect_targetmagic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = effect_targetmagic.h; sourceTree = "<group>"; };
1F8129B50D033551008792A7 /* effect_teleporter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = effect_teleporter.cpp; sourceTree = "<group>"; };
1F8129B60D033551008792A7 /* effect_teleporter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = effect_teleporter.h; sourceTree = "<group>"; };
1F8129B70D033551008792A7 /* effect_wind.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = effect_wind.cpp; sourceTree = "<group>"; };
1F8129B80D033551008792A7 /* effect_wind.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = effect_wind.h; sourceTree = "<group>"; };
1F8129B90D033551008792A7 /* eye_candy.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = eye_candy.cpp; sourceTree = "<group>"; };
1F8129BA0D033551008792A7 /* eye_candy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = eye_candy.h; sourceTree = "<group>"; };
1F8129BB0D033551008792A7 /* kepler_orbit.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = kepler_orbit.cpp; sourceTree = "<group>"; };
1F8129BC0D033551008792A7 /* kepler_orbit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = kepler_orbit.h; sourceTree = "<group>"; };
1F8129BD0D033551008792A7 /* math_cache.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = math_cache.cpp; sourceTree = "<group>"; };
1F8129BE0D033551008792A7 /* math_cache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = math_cache.h; sourceTree = "<group>"; };
1F8129BF0D033551008792A7 /* orbital_mover.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = orbital_mover.cpp; sourceTree = "<group>"; };
1F8129C00D033551008792A7 /* orbital_mover.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = orbital_mover.h; sourceTree = "<group>"; };
1F812A420D033551008792A7 /* types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = types.h; sourceTree = "<group>"; };
1F812A430D033551008792A7 /* eye_candy_wrapper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = eye_candy_wrapper.cpp; path = ../eye_candy_wrapper.cpp; sourceTree = SOURCE_ROOT; };
1F812A440D033551008792A7 /* eye_candy_wrapper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = eye_candy_wrapper.h; path = ../eye_candy_wrapper.h; sourceTree = SOURCE_ROOT; };
1F812A450D033551008792A7 /* filter.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = filter.c; path = ../filter.c; sourceTree = SOURCE_ROOT; };
1F812A460D033551008792A7 /* filter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = filter.h; path = ../filter.h; sourceTree = SOURCE_ROOT; };
1F812A480D033551008792A7 /* font.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = font.h; path = ../font.h; sourceTree = SOURCE_ROOT; };
1F812A490D033551008792A7 /* framebuffer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = framebuffer.c; path = ../framebuffer.c; sourceTree = SOURCE_ROOT; };
1F812A4A0D033551008792A7 /* framebuffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = framebuffer.h; path = ../framebuffer.h; sourceTree = SOURCE_ROOT; };
1F812A4B0D033551008792A7 /* frustum.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = frustum.c; path = ../frustum.c; sourceTree = SOURCE_ROOT; };
1F812A4C0D033551008792A7 /* gamewin.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = gamewin.c; path = ../gamewin.c; sourceTree = SOURCE_ROOT; };
1F812A4D0D033551008792A7 /* gamewin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = gamewin.h; path = ../gamewin.h; sourceTree = SOURCE_ROOT; };
1F812A4E0D033551008792A7 /* gl_init.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = gl_init.c; path = ../gl_init.c; sourceTree = SOURCE_ROOT; };
1F812A4F0D033551008792A7 /* gl_init.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = gl_init.h; path = ../gl_init.h; sourceTree = SOURCE_ROOT; };
1F812A510D033551008792A7 /* help.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = help.c; path = ../help.c; sourceTree = SOURCE_ROOT; };
1F812A520D033551008792A7 /* help.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = help.h; path = ../help.h; sourceTree = SOURCE_ROOT; };
1F812A530D033551008792A7 /* highlight.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = highlight.c; path = ../highlight.c; sourceTree = SOURCE_ROOT; };
1F812A540D033551008792A7 /* highlight.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = highlight.h; path = ../highlight.h; sourceTree = SOURCE_ROOT; };
1F812A550D033551008792A7 /* hud.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = hud.c; path = ../hud.c; sourceTree = SOURCE_ROOT; };
1F812A560D033551008792A7 /* hud.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = hud.h; path = ../hud.h; sourceTree = SOURCE_ROOT; };
1F812A570D033551008792A7 /* ignore.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ignore.c; path = ../ignore.c; sourceTree = SOURCE_ROOT; };
1F812A580D033551008792A7 /* ignore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ignore.h; path = ../ignore.h; sourceTree = SOURCE_ROOT; };
1F812A590D033551008792A7 /* init.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = init.c; path = ../init.c; sourceTree = SOURCE_ROOT; };
1F812A5A0D033551008792A7 /* init.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = init.h; path = ../init.h; sourceTree = SOURCE_ROOT; };
1F812A5B0D033551008792A7 /* interface.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = interface.c; path = ../interface.c; sourceTree = SOURCE_ROOT; };
1F812A5C0D033551008792A7 /* interface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = interface.h; path = ../interface.h; sourceTree = SOURCE_ROOT; };
1F812A5F0D033551008792A7 /* e3d_io.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = e3d_io.c; sourceTree = "<group>"; };
1F812A600D033551008792A7 /* e3d_io.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = e3d_io.h; sourceTree = "<group>"; };
1F812A610D033551008792A7 /* elc_io.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = elc_io.c; sourceTree = "<group>"; };
1F812A620D033551008792A7 /* elc_io.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = elc_io.h; sourceTree = "<group>"; };
1F812A670D033551008792A7 /* elfilewrapper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = elfilewrapper.h; sourceTree = "<group>"; };
1F812A680D033551008792A7 /* elpathwrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = elpathwrapper.c; sourceTree = "<group>"; };
1F812A690D033551008792A7 /* elpathwrapper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = elpathwrapper.h; sourceTree = "<group>"; };
1F812A6A0D033551008792A7 /* map_io.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = map_io.c; sourceTree = "<group>"; };
1F812A6B0D033551008792A7 /* map_io.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = map_io.h; sourceTree = "<group>"; };
1F812A6D0D033551008792A7 /* xmlcallbacks.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xmlcallbacks.c; sourceTree = "<group>"; };
1F812A6E0D033551008792A7 /* xmlcallbacks.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xmlcallbacks.h; sourceTree = "<group>"; };
1F812A710D033551008792A7 /* items.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = items.c; path = ../items.c; sourceTree = SOURCE_ROOT; };
1F812A720D033551008792A7 /* items.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = items.h; path = ../items.h; sourceTree = SOURCE_ROOT; };
1F812A740D033551008792A7 /* keys.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = keys.c; path = ../keys.c; sourceTree = SOURCE_ROOT; };
1F812A750D033551008792A7 /* keys.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = keys.h; path = ../keys.h; sourceTree = SOURCE_ROOT; };
1F812A760D033551008792A7 /* knowledge.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = knowledge.c; path = ../knowledge.c; sourceTree = SOURCE_ROOT; };
1F812A770D033551008792A7 /* knowledge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = knowledge.h; path = ../knowledge.h; sourceTree = SOURCE_ROOT; };
1F812A780D033551008792A7 /* langselwin.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = langselwin.c; path = ../langselwin.c; sourceTree = SOURCE_ROOT; };
1F812A790D033551008792A7 /* langselwin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = langselwin.h; path = ../langselwin.h; sourceTree = SOURCE_ROOT; };
1F812AF70D033551008792A7 /* lights.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = lights.c; path = ../lights.c; sourceTree = SOURCE_ROOT; };
1F812AF80D033551008792A7 /* lights.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = lights.h; path = ../lights.h; sourceTree = SOURCE_ROOT; };
1F812AF90D033551008792A7 /* list.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = list.c; path = ../list.c; sourceTree = SOURCE_ROOT; };
1F812AFA0D033551008792A7 /* list.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = list.h; path = ../list.h; sourceTree = SOURCE_ROOT; };
1F812AFB0D033551008792A7 /* load_gl_extensions.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = load_gl_extensions.c; path = ../load_gl_extensions.c; sourceTree = SOURCE_ROOT; };
1F812AFC0D033551008792A7 /* load_gl_extensions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = load_gl_extensions.h; path = ../load_gl_extensions.h; sourceTree = SOURCE_ROOT; };
1F812AFD0D033551008792A7 /* loading_win.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = loading_win.c; path = ../loading_win.c; sourceTree = SOURCE_ROOT; };
1F812AFE0D033551008792A7 /* loading_win.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = loading_win.h; path = ../loading_win.h; sourceTree = SOURCE_ROOT; };
1F812AFF0D033551008792A7 /* loginwin.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = loginwin.c; path = ../loginwin.c; sourceTree = SOURCE_ROOT; };
1F812B000D033551008792A7 /* loginwin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = loginwin.h; path = ../loginwin.h; sourceTree = SOURCE_ROOT; };
1F812B010D033551008792A7 /* main.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = main.c; path = ../main.c; sourceTree = SOURCE_ROOT; };
1F812B080D033551008792A7 /* manufacture.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = manufacture.c; path = ../manufacture.c; sourceTree = SOURCE_ROOT; };
1F812B090D033551008792A7 /* manufacture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = manufacture.h; path = ../manufacture.h; sourceTree = SOURCE_ROOT; };
1F812B0A0D033551008792A7 /* map.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = map.c; path = ../map.c; sourceTree = SOURCE_ROOT; };
1F812B0B0D033551008792A7 /* map.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = map.h; path = ../map.h; sourceTree = SOURCE_ROOT; };
1F812B0D0D033551008792A7 /* mapwin.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = mapwin.c; path = ../mapwin.c; sourceTree = SOURCE_ROOT; };
1F812B0E0D033551008792A7 /* mapwin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mapwin.h; path = ../mapwin.h; sourceTree = SOURCE_ROOT; };
1F812B100D033551008792A7 /* md5.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = md5.c; path = ../md5.c; sourceTree = SOURCE_ROOT; };
1F812B110D033551008792A7 /* md5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = md5.h; path = ../md5.h; sourceTree = SOURCE_ROOT; };
1F812B120D033551008792A7 /* mines.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = mines.c; path = ../mines.c; sourceTree = SOURCE_ROOT; };
1F812B130D033551008792A7 /* mines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mines.h; path = ../mines.h; sourceTree = SOURCE_ROOT; };
1F812B140D033551008792A7 /* minimap.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = minimap.c; path = ../minimap.c; sourceTree = SOURCE_ROOT; };
1F812B150D033551008792A7 /* minimap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = minimap.h; path = ../minimap.h; sourceTree = SOURCE_ROOT; };
1F812B160D033551008792A7 /* misc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = misc.c; path = ../misc.c; sourceTree = SOURCE_ROOT; };
1F812B170D033551008792A7 /* misc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = misc.h; path = ../misc.h; sourceTree = SOURCE_ROOT; };
1F812B190D033551008792A7 /* multiplayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = multiplayer.h; path = ../multiplayer.h; sourceTree = SOURCE_ROOT; };
1F812B1A0D033551008792A7 /* new_actors.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = new_actors.c; path = ../new_actors.c; sourceTree = SOURCE_ROOT; };
1F812B1B0D033551008792A7 /* new_actors.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = new_actors.h; path = ../new_actors.h; sourceTree = SOURCE_ROOT; };
1F812B1C0D033551008792A7 /* new_character.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = new_character.c; path = ../new_character.c; sourceTree = SOURCE_ROOT; };
1F812B1D0D033551008792A7 /* new_character.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = new_character.h; path = ../new_character.h; sourceTree = SOURCE_ROOT; };
1F812B1E0D033551008792A7 /* notepad.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = notepad.c; path = ../notepad.c; sourceTree = SOURCE_ROOT; };
1F812B1F0D033551008792A7 /* notepad.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = notepad.h; path = ../notepad.h; sourceTree = SOURCE_ROOT; };
1F812B200D033551008792A7 /* openingwin.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = openingwin.c; path = ../openingwin.c; sourceTree = SOURCE_ROOT; };
1F812B210D033551008792A7 /* openingwin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = openingwin.h; path = ../openingwin.h; sourceTree = SOURCE_ROOT; };
1F812B220D033551008792A7 /* particles.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = particles.c; path = ../particles.c; sourceTree = SOURCE_ROOT; };
1F812B230D033551008792A7 /* particles.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = particles.h; path = ../particles.h; sourceTree = SOURCE_ROOT; };
1F812B240D033551008792A7 /* paste.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = paste.c; path = ../paste.c; sourceTree = SOURCE_ROOT; };
1F812B250D033551008792A7 /* paste.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = paste.h; path = ../paste.h; sourceTree = SOURCE_ROOT; };
1F812B260D033551008792A7 /* pathfinder.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pathfinder.c; path = ../pathfinder.c; sourceTree = SOURCE_ROOT; };
1F812B270D033551008792A7 /* pathfinder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pathfinder.h; path = ../pathfinder.h; sourceTree = SOURCE_ROOT; };
1F812B290D033551008792A7 /* amx.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = amx.c; sourceTree = "<group>"; };
1F812B2A0D033551008792A7 /* amx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = amx.h; sourceTree = "<group>"; };
1F812B2B0D033551008792A7 /* amxaux.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = amxaux.c; sourceTree = "<group>"; };
1F812B2C0D033551008792A7 /* amxaux.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = amxaux.h; sourceTree = "<group>"; };
1F812B2D0D033551008792A7 /* amxcons.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = amxcons.c; sourceTree = "<group>"; };
1F812B2E0D033551008792A7 /* amxcons.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = amxcons.h; sourceTree = "<group>"; };
1F812B2F0D033551008792A7 /* amxel.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = amxel.c; sourceTree = "<group>"; };
1F812B300D033551008792A7 /* amxel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = amxel.h; sourceTree = "<group>"; };
1F812B310D033551008792A7 /* amxfloat.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = amxfloat.c; sourceTree = "<group>"; };
1F812B320D033551008792A7 /* amxfloat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = amxfloat.h; sourceTree = "<group>"; };
1F812B330D033551008792A7 /* amxstring.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = amxstring.c; sourceTree = "<group>"; };
1F812B340D033551008792A7 /* amxstring.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = amxstring.h; sourceTree = "<group>"; };
1F812B350D033551008792A7 /* elpawn.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = elpawn.c; sourceTree = "<group>"; };
1F812B360D033551008792A7 /* elpawn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = elpawn.h; sourceTree = "<group>"; };
1F812B370D033551008792A7 /* osdefs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = osdefs.h; sourceTree = "<group>"; };
1F812B380D033551008792A7 /* sclinux.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sclinux.h; sourceTree = "<group>"; };
1F812B420D033551008792A7 /* platform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = platform.h; path = ../platform.h; sourceTree = SOURCE_ROOT; };
1F812B430D033551008792A7 /* pm_log.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pm_log.c; path = ../pm_log.c; sourceTree = SOURCE_ROOT; };
1F812B440D033551008792A7 /* pm_log.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pm_log.h; path = ../pm_log.h; sourceTree = SOURCE_ROOT; };
1F812B450D033551008792A7 /* popup.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = popup.c; path = ../popup.c; sourceTree = SOURCE_ROOT; };
1F812B460D033551008792A7 /* popup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = popup.h; path = ../popup.h; sourceTree = SOURCE_ROOT; };
1F812B480D033551008792A7 /* questlog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = questlog.h; path = ../questlog.h; sourceTree = SOURCE_ROOT; };
1F812B490D033551008792A7 /* queue.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = queue.c; path = ../queue.c; sourceTree = SOURCE_ROOT; };
1F812B4A0D033551008792A7 /* queue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = queue.h; path = ../queue.h; sourceTree = SOURCE_ROOT; };
1F812B4C0D033551008792A7 /* reflection.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = reflection.c; path = ../reflection.c; sourceTree = SOURCE_ROOT; };
1F812B4D0D033551008792A7 /* reflection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = reflection.h; path = ../reflection.h; sourceTree = SOURCE_ROOT; };
1F812B4E0D033551008792A7 /* rules.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = rules.c; path = ../rules.c; sourceTree = SOURCE_ROOT; };
1F812B4F0D033551008792A7 /* rules.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = rules.h; path = ../rules.h; sourceTree = SOURCE_ROOT; };
1F812B500D033551008792A7 /* sendvideoinfo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = sendvideoinfo.cpp; path = ../sendvideoinfo.cpp; sourceTree = SOURCE_ROOT; };
1F812B510D033551008792A7 /* sendvideoinfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sendvideoinfo.h; path = ../sendvideoinfo.h; sourceTree = SOURCE_ROOT; };
1F812B520D033551008792A7 /* serverpopup.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = serverpopup.c; path = ../serverpopup.c; sourceTree = SOURCE_ROOT; };
1F812B530D033551008792A7 /* serverpopup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = serverpopup.h; path = ../serverpopup.h; sourceTree = SOURCE_ROOT; };
1F812B540D033551008792A7 /* servers.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = servers.c; path = ../servers.c; sourceTree = SOURCE_ROOT; };
1F812B550D033551008792A7 /* servers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = servers.h; path = ../servers.h; sourceTree = SOURCE_ROOT; };
1F812B570D033551008792A7 /* session.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = session.c; path = ../session.c; sourceTree = SOURCE_ROOT; };
1F812B580D033551008792A7 /* session.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = session.h; path = ../session.h; sourceTree = SOURCE_ROOT; };
1F812B5E0D033551008792A7 /* noise.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = noise.c; sourceTree = "<group>"; };
1F812B5F0D033551008792A7 /* noise.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = noise.h; sourceTree = "<group>"; };
1F812B600D033551008792A7 /* shader.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = shader.c; sourceTree = "<group>"; };
1F812B610D033551008792A7 /* shader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shader.h; sourceTree = "<group>"; };
1F812B620D033551008792A7 /* shadows.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = shadows.c; path = ../shadows.c; sourceTree = SOURCE_ROOT; };
1F812B630D033551008792A7 /* shadows.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = shadows.h; path = ../shadows.h; sourceTree = SOURCE_ROOT; };
1F812B640D033551008792A7 /* skills.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = skills.c; path = ../skills.c; sourceTree = SOURCE_ROOT; };
1F812B650D033551008792A7 /* skills.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = skills.h; path = ../skills.h; sourceTree = SOURCE_ROOT; };
1F812B660D033551008792A7 /* sky.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = sky.c; path = ../sky.c; sourceTree = SOURCE_ROOT; };
1F812B670D033551008792A7 /* sky.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sky.h; path = ../sky.h; sourceTree = SOURCE_ROOT; };
1F812B680D033551008792A7 /* sort.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = sort.c; path = ../sort.c; sourceTree = SOURCE_ROOT; };
1F812B690D033551008792A7 /* sort.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sort.h; path = ../sort.h; sourceTree = SOURCE_ROOT; };
1F812B6A0D033551008792A7 /* sound.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = sound.c; path = ../sound.c; sourceTree = SOURCE_ROOT; };
1F812B6B0D033551008792A7 /* sound.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sound.h; path = ../sound.h; sourceTree = SOURCE_ROOT; };
1F812B6C0D033551008792A7 /* special_effects.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = special_effects.c; path = ../special_effects.c; sourceTree = SOURCE_ROOT; };
1F812B6D0D033551008792A7 /* special_effects.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = special_effects.h; path = ../special_effects.h; sourceTree = SOURCE_ROOT; };
1F812B6E0D033551008792A7 /* spells.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = spells.c; path = ../spells.c; sourceTree = SOURCE_ROOT; };
1F812B6F0D033551008792A7 /* spells.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = spells.h; path = ../spells.h; sourceTree = SOURCE_ROOT; };
1F812B700D033551008792A7 /* stats.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = stats.c; path = ../stats.c; sourceTree = SOURCE_ROOT; };
1F812B710D033551008792A7 /* stats.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = stats.h; path = ../stats.h; sourceTree = SOURCE_ROOT; };
1F812B720D033551008792A7 /* storage.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = storage.c; path = ../storage.c; sourceTree = SOURCE_ROOT; };
1F812B730D033551008792A7 /* storage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = storage.h; path = ../storage.h; sourceTree = SOURCE_ROOT; };
1F812B740D033551008792A7 /* symbol_table.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = symbol_table.c; path = ../symbol_table.c; sourceTree = SOURCE_ROOT; };
1F812B750D033551008792A7 /* symbol_table.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = symbol_table.h; path = ../symbol_table.h; sourceTree = SOURCE_ROOT; };
1F812B760D033551008792A7 /* tabs.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tabs.c; path = ../tabs.c; sourceTree = SOURCE_ROOT; };
1F812B770D033551008792A7 /* tabs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tabs.h; path = ../tabs.h; sourceTree = SOURCE_ROOT; };
1F812B790D033551008792A7 /* el_shared_ptr.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = el_shared_ptr.hpp; sourceTree = "<group>"; };
1F812B7B0D033551008792A7 /* text.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = text.h; path = ../text.h; sourceTree = SOURCE_ROOT; };
1F812B7C0D033551008792A7 /* textures.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = textures.c; path = ../textures.c; sourceTree = SOURCE_ROOT; };
1F812B7D0D033551008792A7 /* textures.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = textures.h; path = ../textures.h; sourceTree = SOURCE_ROOT; };
1F812B7E0D033551008792A7 /* tile_map.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tile_map.c; path = ../tile_map.c; sourceTree = SOURCE_ROOT; };
1F812B7F0D033551008792A7 /* tiles.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tiles.h; path = ../tiles.h; sourceTree = SOURCE_ROOT; };
1F812B800D033551008792A7 /* timers.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = timers.c; path = ../timers.c; sourceTree = SOURCE_ROOT; };
1F812B810D033551008792A7 /* timers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = timers.h; path = ../timers.h; sourceTree = SOURCE_ROOT; };
1F812B830D033551008792A7 /* trade.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = trade.c; path = ../trade.c; sourceTree = SOURCE_ROOT; };
1F812B840D033551008792A7 /* trade.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = trade.h; path = ../trade.h; sourceTree = SOURCE_ROOT; };
1F812B850D033551008792A7 /* translate.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = translate.c; path = ../translate.c; sourceTree = SOURCE_ROOT; };
1F812B860D033551008792A7 /* translate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = translate.h; path = ../translate.h; sourceTree = SOURCE_ROOT; };
1F812B870D033551008792A7 /* update.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = update.c; path = ../update.c; sourceTree = SOURCE_ROOT; };
1F812B880D033551008792A7 /* update.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = update.h; path = ../update.h; sourceTree = SOURCE_ROOT; };
1F812B890D033551008792A7 /* url.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = url.c; path = ../url.c; sourceTree = SOURCE_ROOT; };
1F812B8A0D033551008792A7 /* url.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = url.h; path = ../url.h; sourceTree = SOURCE_ROOT; };
1F812B8B0D033551008792A7 /* vmath.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = vmath.h; path = ../vmath.h; sourceTree = SOURCE_ROOT; };
1F812B8C0D033551008792A7 /* weather.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = weather.c; path = ../weather.c; sourceTree = SOURCE_ROOT; };
1F812B8D0D033551008792A7 /* weather.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = weather.h; path = ../weather.h; sourceTree = SOURCE_ROOT; };
1F812B8E0D033551008792A7 /* widgets.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = widgets.c; path = ../widgets.c; sourceTree = SOURCE_ROOT; };
1F812B8F0D033551008792A7 /* widgets.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = widgets.h; path = ../widgets.h; sourceTree = SOURCE_ROOT; };
1F812B910D033551008792A7 /* xmlhelper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = xmlhelper.cpp; sourceTree = "<group>"; };
1F812B920D033551008792A7 /* xmlhelper.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = xmlhelper.hpp; sourceTree = "<group>"; };
1F812DA30D03511A008792A7 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = SDKs/MacOSX10.4u.sdk/System/Library/Frameworks/OpenGL.framework; sourceTree = DEVELOPER_DIR; };
1F812DC60D03572D008792A7 /* OpenAL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenAL.framework; path = SDKs/MacOSX10.4u.sdk/System/Library/Frameworks/OpenAL.framework; sourceTree = DEVELOPER_DIR; };
1F812DF90D035D97008792A7 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = SDKs/MacOSX10.4u.sdk/System/Library/Frameworks/AudioToolbox.framework; sourceTree = DEVELOPER_DIR; };
1F8F612710CDC8CD007B270D /* emotes.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = emotes.c; path = ../emotes.c; sourceTree = SOURCE_ROOT; };
1F8F612810CDC8CD007B270D /* emotes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = emotes.h; path = ../emotes.h; sourceTree = SOURCE_ROOT; };
1F8F612910CDC8CD007B270D /* hash.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = hash.c; path = ../hash.c; sourceTree = SOURCE_ROOT; };
1F8F612A10CDC8CD007B270D /* hash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = hash.h; path = ../hash.h; sourceTree = SOURCE_ROOT; };
1F8F612B10CDC8CD007B270D /* multiplayer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = multiplayer.c; path = ../multiplayer.c; sourceTree = SOURCE_ROOT; };
1F8F612C10CDC8CD007B270D /* text.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = text.c; path = ../text.c; sourceTree = SOURCE_ROOT; };
1FB7E409143560CB002C4FEA /* elloggingwrapper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = elloggingwrapper.cpp; path = ../elloggingwrapper.cpp; sourceTree = "<group>"; };
1FB7E40A143560CB002C4FEA /* elloggingwrapper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = elloggingwrapper.h; path = ../elloggingwrapper.h; sourceTree = "<group>"; };
1FB7E410143560DE002C4FEA /* hardwarebuffer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = hardwarebuffer.cpp; sourceTree = "<group>"; };
1FB7E411143560DE002C4FEA /* hardwarebuffer.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = hardwarebuffer.hpp; sourceTree = "<group>"; };
1FB7E412143560DE002C4FEA /* logging.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = logging.cpp; sourceTree = "<group>"; };
1FB7E413143560DE002C4FEA /* logging.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = logging.hpp; sourceTree = "<group>"; };
1FB7E417143560EA002C4FEA /* 7zCrc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = 7zCrc.c; sourceTree = "<group>"; };
1FB7E418143560EA002C4FEA /* 7zCrc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = 7zCrc.h; sourceTree = "<group>"; };
1FB7E419143560EA002C4FEA /* 7zCrcOpt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = 7zCrcOpt.c; sourceTree = "<group>"; };
1FB7E41A143560EA002C4FEA /* Alloc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Alloc.c; sourceTree = "<group>"; };
1FB7E41B143560EA002C4FEA /* Alloc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Alloc.h; sourceTree = "<group>"; };
1FB7E41C143560EA002C4FEA /* Bra.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Bra.c; sourceTree = "<group>"; };
1FB7E41D143560EA002C4FEA /* Bra.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Bra.h; sourceTree = "<group>"; };
1FB7E41E143560EA002C4FEA /* Bra86.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Bra86.c; sourceTree = "<group>"; };
1FB7E41F143560EA002C4FEA /* BraIA64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BraIA64.c; sourceTree = "<group>"; };
1FB7E420143560EA002C4FEA /* CpuArch.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CpuArch.c; sourceTree = "<group>"; };
1FB7E421143560EA002C4FEA /* CpuArch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CpuArch.h; sourceTree = "<group>"; };
1FB7E422143560EA002C4FEA /* Delta.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Delta.c; sourceTree = "<group>"; };
1FB7E423143560EA002C4FEA /* Delta.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Delta.h; sourceTree = "<group>"; };
1FB7E424143560EA002C4FEA /* LzFind.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = LzFind.c; sourceTree = "<group>"; };
1FB7E425143560EA002C4FEA /* LzFind.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LzFind.h; sourceTree = "<group>"; };
1FB7E426143560EA002C4FEA /* LzHash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LzHash.h; sourceTree = "<group>"; };
1FB7E427143560EA002C4FEA /* Lzma2Dec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Lzma2Dec.c; sourceTree = "<group>"; };
1FB7E428143560EA002C4FEA /* Lzma2Dec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Lzma2Dec.h; sourceTree = "<group>"; };
1FB7E429143560EA002C4FEA /* Lzma2Enc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Lzma2Enc.c; sourceTree = "<group>"; };
1FB7E42A143560EA002C4FEA /* Lzma2Enc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Lzma2Enc.h; sourceTree = "<group>"; };
1FB7E42B143560EA002C4FEA /* LzmaDec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = LzmaDec.c; sourceTree = "<group>"; };
1FB7E42C143560EA002C4FEA /* LzmaDec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LzmaDec.h; sourceTree = "<group>"; };
1FB7E42D143560EA002C4FEA /* LzmaEnc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = LzmaEnc.c; sourceTree = "<group>"; };
1FB7E42E143560EA002C4FEA /* LzmaEnc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LzmaEnc.h; sourceTree = "<group>"; };
1FB7E42F143560EA002C4FEA /* RotateDefs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RotateDefs.h; sourceTree = "<group>"; };
1FB7E430143560EA002C4FEA /* Sha256.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Sha256.c; sourceTree = "<group>"; };
1FB7E431143560EA002C4FEA /* Sha256.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Sha256.h; sourceTree = "<group>"; };
1FB7E432143560EA002C4FEA /* Types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Types.h; sourceTree = "<group>"; };
1FB7E433143560EA002C4FEA /* Xz.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Xz.c; sourceTree = "<group>"; };
1FB7E434143560EA002C4FEA /* Xz.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Xz.h; sourceTree = "<group>"; };
1FB7E435143560EA002C4FEA /* XzCrc64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = XzCrc64.c; sourceTree = "<group>"; };
1FB7E436143560EA002C4FEA /* XzCrc64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XzCrc64.h; sourceTree = "<group>"; };
1FB7E437143560EA002C4FEA /* XzDec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = XzDec.c; sourceTree = "<group>"; };
1FB7E438143560EA002C4FEA /* XzEnc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = XzEnc.c; sourceTree = "<group>"; };
1FB7E439143560EA002C4FEA /* XzEnc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XzEnc.h; sourceTree = "<group>"; };
1FB7E44C14356236002C4FEA /* fileutil.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = fileutil.c; sourceTree = "<group>"; };
1FB7E44D14356236002C4FEA /* fileutil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fileutil.h; sourceTree = "<group>"; };
1FC155560FE906160046D7FE /* user_menus.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = user_menus.cpp; path = ../user_menus.cpp; sourceTree = SOURCE_ROOT; };
1FC155570FE906160046D7FE /* user_menus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = user_menus.h; path = ../user_menus.h; sourceTree = SOURCE_ROOT; };
1FD61F5D0E2CCB560085FD81 /* effect_staff.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = effect_staff.cpp; sourceTree = "<group>"; };
1FD61F5E0E2CCB560085FD81 /* effect_staff.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = effect_staff.h; sourceTree = "<group>"; };
29B97324FDCFA39411CA2CEA /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = "<absolute>"; };
29B97325FDCFA39411CA2CEA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = "<absolute>"; };
7B0B8C9816982A1000D75AD9 /* icon_window.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = icon_window.cpp; path = ../icon_window.cpp; sourceTree = SOURCE_ROOT; };
7B0B8CAF16AD61C000D75AD9 /* command_queue.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = command_queue.cpp; path = ../command_queue.cpp; sourceTree = SOURCE_ROOT; };
7B0B8CB616CA78C000D75AD9 /* trade_log.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = trade_log.cpp; path = ../trade_log.cpp; sourceTree = SOURCE_ROOT; };
7B0B8CB916CA78E800D75AD9 /* item_info.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = item_info.cpp; path = ../item_info.cpp; sourceTree = SOURCE_ROOT; };
7B0B8F191794171B00D75AD9 /* named_colours.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = named_colours.cpp; path = ../named_colours.cpp; sourceTree = SOURCE_ROOT; };
7B0C5B4E224007C900BCFE13 /* password_manager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = password_manager.cpp; path = ../password_manager.cpp; sourceTree = SOURCE_ROOT; };
7B0C5B4F224007C900BCFE13 /* xor_cipher.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = xor_cipher.cpp; path = ../xor_cipher.cpp; sourceTree = SOURCE_ROOT; };
7B57365D20C80E4000C41C6E /* command_queue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = command_queue.h; path = ../command_queue.h; sourceTree = SOURCE_ROOT; };
7B57365E20C80E4000C41C6E /* command_queue.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = command_queue.hpp; path = ../command_queue.hpp; sourceTree = SOURCE_ROOT; };
7B57365F20C80E4000C41C6E /* hud_indicators.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = hud_indicators.h; path = ../hud_indicators.h; sourceTree = SOURCE_ROOT; };
7B57366020C80E4000C41C6E /* hud_misc_window.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = hud_misc_window.c; path = ../hud_misc_window.c; sourceTree = SOURCE_ROOT; };
7B57366120C80E4000C41C6E /* hud_misc_window.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = hud_misc_window.h; path = ../hud_misc_window.h; sourceTree = SOURCE_ROOT; };
7B57366220C80E4000C41C6E /* hud_quickbar_window.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = hud_quickbar_window.c; path = ../hud_quickbar_window.c; sourceTree = SOURCE_ROOT; };
7B57366320C80E4000C41C6E /* hud_quickbar_window.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = hud_quickbar_window.h; path = ../hud_quickbar_window.h; sourceTree = SOURCE_ROOT; };
7B57366420C80E4000C41C6E /* hud_quickspells_window.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = hud_quickspells_window.c; path = ../hud_quickspells_window.c; sourceTree = SOURCE_ROOT; };
7B57366520C80E4000C41C6E /* hud_quickspells_window.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = hud_quickspells_window.h; path = ../hud_quickspells_window.h; sourceTree = SOURCE_ROOT; };
7B57366620C80E4000C41C6E /* hud_statsbar_window.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = hud_statsbar_window.c; path = ../hud_statsbar_window.c; sourceTree = SOURCE_ROOT; };
7B57366720C80E4000C41C6E /* hud_statsbar_window.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = hud_statsbar_window.h; path = ../hud_statsbar_window.h; sourceTree = SOURCE_ROOT; };
7B80F34B187DA85B00C81403 /* hud_indicators.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = hud_indicators.cpp; path = ../hud_indicators.cpp; sourceTree = SOURCE_ROOT; };
7B80F34C187DA85B00C81403 /* hud_timer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = hud_timer.cpp; path = ../hud_timer.cpp; sourceTree = SOURCE_ROOT; };
7BDF3E1820D009CA007BE401 /* el_memory.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = el_memory.c; path = ../el_memory.c; sourceTree = SOURCE_ROOT; };
7BDF3E1920D009CA007BE401 /* el_memory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = el_memory.h; path = ../el_memory.h; sourceTree = SOURCE_ROOT; };
8D1107310486CEB800E47090 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
8D1107320486CEB800E47090 /* Eternal Lands.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Eternal Lands.app"; sourceTree = BUILT_PRODUCTS_DIR; };
D730263C244EE9FD00A6C002 /* data */ = {isa = PBXFileReference; lastKnownFileType = folder; name = data; path = "../../EL Development Assets/EL Data Files/data"; sourceTree = "<group>"; };
D7302641244F081F00A6C002 /* Eternal Lands.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = "Eternal Lands.entitlements"; sourceTree = "<group>"; };
D7302669244F639200A6C002 /* SDL2.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL2.framework; path = ../../../Library/Frameworks/SDL2.framework; sourceTree = "<group>"; };
D730266A244F639200A6C002 /* SDL2_net.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL2_net.framework; path = ../../../Library/Frameworks/SDL2_net.framework; sourceTree = "<group>"; };
D730266B244F639200A6C002 /* ogg.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ogg.framework; path = ../../../Library/Frameworks/ogg.framework; sourceTree = "<group>"; };
D730266C244F639200A6C002 /* cal3d.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = cal3d.framework; path = ../../../Library/Frameworks/cal3d.framework; sourceTree = "<group>"; };
D730266D244F639300A6C002 /* libpng.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = libpng.framework; path = ../../../Library/Frameworks/libpng.framework; sourceTree = "<group>"; };
D730266E244F639300A6C002 /* SDL2_image.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL2_image.framework; path = ../../../Library/Frameworks/SDL2_image.framework; sourceTree = "<group>"; };
D7436E7B2459829500875ABE /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = "Eternal Lands/Images.xcassets"; sourceTree = "<group>"; };
D7437F0C245AB82B00875ABE /* Vorbis.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Vorbis.framework; path = ../../../Library/Frameworks/Vorbis.framework; sourceTree = "<group>"; };
D7437F0F245ABAD100875ABE /* vorbis.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = vorbis.framework; path = ../../../Library/Frameworks/vorbis.framework; sourceTree = "<group>"; };
D791C71425F9300700EB3011 /* books.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = books.cpp; path = ../books.cpp; sourceTree = "<group>"; };
D791C71625F930CF00EB3011 /* font.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = font.cpp; path = ../font.cpp; sourceTree = "<group>"; };
D791C71825F9313A00EB3011 /* hud_timer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = hud_timer.h; path = ../hud_timer.h; sourceTree = "<group>"; };
D791C71925F9314D00EB3011 /* icon_window.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = icon_window.h; path = ../icon_window.h; sourceTree = "<group>"; };
D791C71A25F9320B00EB3011 /* item_info.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = item_info.h; path = ../item_info.h; sourceTree = "<group>"; };
D791C71B25F9321900EB3011 /* json_io.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = json_io.cpp; path = ../json_io.cpp; sourceTree = "<group>"; };
D791C71D25F9321F00EB3011 /* json_io.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = json_io.h; path = ../json_io.h; sourceTree = "<group>"; };
D791C71E25F9323F00EB3011 /* main.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = main.h; path = ../main.h; sourceTree = "<group>"; };
D791C71F25F9326D00EB3011 /* named_colours.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = named_colours.h; path = ../named_colours.h; sourceTree = "<group>"; };
D791C72025F9327D00EB3011 /* password_manager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = password_manager.h; path = ../password_manager.h; sourceTree = "<group>"; };
D791C72125F932ED00EB3011 /* trade_log.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = trade_log.h; path = ../trade_log.h; sourceTree = "<group>"; };
D791C72225F9336F00EB3011 /* SDL2_ttf.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SDL2_ttf.framework; path = ../../../Library/Frameworks/SDL2_ttf.framework; sourceTree = "<group>"; };
D791C74425F938F400EB3011 /* json.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = json.hpp; sourceTree = "<group>"; };
D7A6536E2B861224003E0B91 /* actors_list.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = actors_list.h; path = ../actors_list.h; sourceTree = "<group>"; };
D7A6536F2B861224003E0B91 /* actors_list.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = actors_list.cpp; path = ../actors_list.cpp; sourceTree = "<group>"; };
D7A653712B86123F003E0B91 /* invasion_window.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = invasion_window.cpp; path = ../invasion_window.cpp; sourceTree = "<group>"; };
D7A653722B86123F003E0B91 /* invasion_window.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = invasion_window.h; path = ../invasion_window.h; sourceTree = "<group>"; };
D7F7BF8426E8D7850077BE9C /* 3d_objects.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = 3d_objects.c; path = ../3d_objects.c; sourceTree = "<group>"; };
D7F7BF8526E8D7850077BE9C /* alphamap.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = alphamap.c; path = ../alphamap.c; sourceTree = "<group>"; };
D7F7BF8626E8D7850077BE9C /* astrology.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = astrology.h; path = ../astrology.h; sourceTree = "<group>"; };
D7F7BF8726E8D7850077BE9C /* actor_init.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = actor_init.cpp; path = ../actor_init.cpp; sourceTree = "<group>"; };
D7F7BF8826E8D7850077BE9C /* bags.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = bags.h; path = ../bags.h; sourceTree = "<group>"; };
D7F7BF8926E8D7850077BE9C /* 3d_objects.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = 3d_objects.h; path = ../3d_objects.h; sourceTree = "<group>"; };
D7F7BF8A26E8D7850077BE9C /* asc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = asc.h; path = ../asc.h; sourceTree = "<group>"; };
D7F7BF8B26E8D7850077BE9C /* actor_scripts.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = actor_scripts.h; path = ../actor_scripts.h; sourceTree = "<group>"; };
D7F7BF8C26E8D7850077BE9C /* asc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = asc.c; path = ../asc.c; sourceTree = "<group>"; };
D7F7BF8D26E8D7850077BE9C /* alphamap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = alphamap.h; path = ../alphamap.h; sourceTree = "<group>"; };
D7F7BF8E26E8D7850077BE9C /* bags.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = bags.c; path = ../bags.c; sourceTree = "<group>"; };
D7F7BF8F26E8D7850077BE9C /* actors.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = actors.h; path = ../actors.h; sourceTree = "<group>"; };
D7F7BF9026E8D7860077BE9C /* 2d_objects.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = 2d_objects.c; path = ../2d_objects.c; sourceTree = "<group>"; };
D7F7BF9126E8D7860077BE9C /* achievements.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = achievements.h; path = ../achievements.h; sourceTree = "<group>"; };
D7F7BF9226E8D7860077BE9C /* actor_scripts.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = actor_scripts.c; path = ../actor_scripts.c; sourceTree = "<group>"; };
D7F7BF9326E8D7860077BE9C /* astrology.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = astrology.c; path = ../astrology.c; sourceTree = "<group>"; };
D7F7BF9426E8D7860077BE9C /* bbox_tree.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = bbox_tree.h; path = ../bbox_tree.h; sourceTree = "<group>"; };
D7F7BF9526E8D7860077BE9C /* bbox_tree.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = bbox_tree.c; path = ../bbox_tree.c; sourceTree = "<group>"; };
D7F7BF9626E8D7860077BE9C /* 2d_objects.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = 2d_objects.h; path = ../2d_objects.h; sourceTree = "<group>"; };
D7F7BF9726E8D7860077BE9C /* achievements.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = achievements.cpp; path = ../achievements.cpp; sourceTree = "<group>"; };
D7F7BF9826E8D7860077BE9C /* actor_init.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = actor_init.h; path = ../actor_init.h; sourceTree = "<group>"; };
D7F7BF9926E8D7860077BE9C /* actors.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = actors.c; path = ../actors.c; sourceTree = "<group>"; };
D7F7BFA526E8D7BB0077BE9C /* xor_cipher.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; name = xor_cipher.hpp; path = ../xor_cipher.hpp; sourceTree = "<group>"; };
D7F7BFA626E8D7FE0077BE9C /* textpopup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = textpopup.h; path = ../textpopup.h; sourceTree = "<group>"; };
D7F7BFA726E8D7FF0077BE9C /* textpopup.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = textpopup.cpp; path = ../textpopup.cpp; sourceTree = "<group>"; };
D7F7BFA926E8D8230077BE9C /* socket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = socket.h; path = ../socket.h; sourceTree = "<group>"; };
D7F7BFAA26E8D8230077BE9C /* socket.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = socket.cpp; path = ../socket.cpp; sourceTree = "<group>"; };
D7F7BFAC26E8D8930077BE9C /* ipaddress.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ipaddress.cpp; path = ../ipaddress.cpp; sourceTree = "<group>"; };
D7F7BFAD26E8D8930077BE9C /* ipaddress.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ipaddress.h; path = ../ipaddress.h; sourceTree = "<group>"; };
D7F7BFAF26E8D8CC0077BE9C /* ext_protocol_shared.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ext_protocol_shared.h; path = ../ext_protocol_shared.h; sourceTree = "<group>"; };
D7F7BFB026E8D8CC0077BE9C /* ext_protocol_shared.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ext_protocol_shared.c; path = ../ext_protocol_shared.c; sourceTree = "<group>"; };
D7F7BFB226E8D9120077BE9C /* cppwindows.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = cppwindows.cpp; path = ../cppwindows.cpp; sourceTree = "<group>"; };
D7F7BFB326E8D9120077BE9C /* cppwindows.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cppwindows.h; path = ../cppwindows.h; sourceTree = "<group>"; };
D7F7BFB526E8D92A0077BE9C /* connection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = connection.h; path = ../connection.h; sourceTree = "<group>"; };
D7F7BFB626E8D92A0077BE9C /* connection.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = connection.cpp; path = ../connection.cpp; sourceTree = "<group>"; };
D7F7BFB826E8DB990077BE9C /* OpenSSL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenSSL.framework; path = ../../../Library/Frameworks/OpenSSL.framework; sourceTree = "<group>"; };
E182879E0EFFFC320046818E /* buffs.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = buffs.c; path = ../buffs.c; sourceTree = SOURCE_ROOT; };
E182879F0EFFFC320046818E /* buffs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = buffs.h; path = ../buffs.h; sourceTree = SOURCE_ROOT; };
E18287A00EFFFC320046818E /* eye_candy_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = eye_candy_types.h; path = ../eye_candy_types.h; sourceTree = SOURCE_ROOT; };
E1914A661305B1A8004CD9C1 /* image.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = image.c; path = ../image.c; sourceTree = SOURCE_ROOT; };
E1914A671305B1A8004CD9C1 /* image.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = image.h; path = ../image.h; sourceTree = SOURCE_ROOT; };
E1914A681305B1A8004CD9C1 /* image_loading.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = image_loading.c; path = ../image_loading.c; sourceTree = SOURCE_ROOT; };
E1914A691305B1A8004CD9C1 /* image_loading.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = image_loading.h; path = ../image_loading.h; sourceTree = SOURCE_ROOT; };
E1DE78541330EE52005E7747 /* cal3d_io_wrapper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = cal3d_io_wrapper.cpp; sourceTree = "<group>"; };
E1DE78551330EE52005E7747 /* cal3d_io_wrapper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cal3d_io_wrapper.h; sourceTree = "<group>"; };
E1DE78561330EE52005E7747 /* crypt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = crypt.h; sourceTree = "<group>"; };
E1DE78571330EE52005E7747 /* elfilewrapper.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = elfilewrapper.c; sourceTree = "<group>"; };
E1DE78581330EE52005E7747 /* ioapi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ioapi.c; sourceTree = "<group>"; };
E1DE78591330EE52005E7747 /* ioapi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ioapi.h; sourceTree = "<group>"; };
E1DE785A1330EE52005E7747 /* unzip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = unzip.c; sourceTree = "<group>"; };
E1DE785B1330EE52005E7747 /* unzip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unzip.h; sourceTree = "<group>"; };
E1DE785C1330EE52005E7747 /* zip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = zip.c; sourceTree = "<group>"; };
E1DE785D1330EE52005E7747 /* zip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = zip.h; sourceTree = "<group>"; };
E1DE785E1330EE52005E7747 /* ziputil.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ziputil.c; sourceTree = "<group>"; };
E1DE785F1330EE52005E7747 /* ziputil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ziputil.h; sourceTree = "<group>"; };
E1DE78661330EE79005E7747 /* custom_update.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = custom_update.c; path = ../custom_update.c; sourceTree = SOURCE_ROOT; };
E1DE78671330EE79005E7747 /* custom_update.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = custom_update.h; path = ../custom_update.h; sourceTree = SOURCE_ROOT; };
E1DE78681330EE79005E7747 /* new_update.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = new_update.c; path = ../new_update.c; sourceTree = SOURCE_ROOT; };
E1DE78691330EE79005E7747 /* new_update.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = new_update.h; path = ../new_update.h; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
8D11072E0486CEB800E47090 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
D7302670244F639300A6C002 /* SDL2.framework in Frameworks */,
D7437F10245ABAD100875ABE /* vorbis.framework in Frameworks */,
D730265B244F5C8800A6C002 /* Cocoa.framework in Frameworks */,
D7302676244F639300A6C002 /* cal3d.framework in Frameworks */,
D791C72325F9336F00EB3011 /* SDL2_ttf.framework in Frameworks */,
1F812DA40D03511A008792A7 /* OpenGL.framework in Frameworks */,
1F812DC70D03572D008792A7 /* OpenAL.framework in Frameworks */,
D7302674244F639300A6C002 /* ogg.framework in Frameworks */,
D7302678244F639300A6C002 /* libpng.framework in Frameworks */,
1F812DFA0D035D97008792A7 /* AudioToolbox.framework in Frameworks */,
D7F7BFB926E8DB990077BE9C /* OpenSSL.framework in Frameworks */,
D7302672244F639300A6C002 /* SDL2_net.framework in Frameworks */,
D730267A244F639300A6C002 /* SDL2_image.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */ = {
isa = PBXGroup;
children = (
1F812DC60D03572D008792A7 /* OpenAL.framework */,
1F812DA30D03511A008792A7 /* OpenGL.framework */,
1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */,
);
name = "Linked Frameworks";
sourceTree = "<group>";
};
1058C7A2FEA54F0111CA2CBB /* Other Frameworks */ = {
isa = PBXGroup;
children = (
1F812DF90D035D97008792A7 /* AudioToolbox.framework */,
29B97324FDCFA39411CA2CEA /* AppKit.framework */,
29B97325FDCFA39411CA2CEA /* Foundation.framework */,
);
name = "Other Frameworks";
sourceTree = "<group>";
};
19C28FACFE9D520D11CA2CBB /* Products */ = {
isa = PBXGroup;
children = (
8D1107320486CEB800E47090 /* Eternal Lands.app */,
);
name = Products;
sourceTree = "<group>";
};
1F8128D90D033520008792A7 /* elc */ = {
isa = PBXGroup;
children = (
D7F7BF9026E8D7860077BE9C /* 2d_objects.c */,
D7F7BF9626E8D7860077BE9C /* 2d_objects.h */,
D7F7BF8426E8D7850077BE9C /* 3d_objects.c */,
D7F7BF8926E8D7850077BE9C /* 3d_objects.h */,
D7F7BF9726E8D7860077BE9C /* achievements.cpp */,
D7F7BF9126E8D7860077BE9C /* achievements.h */,
D7F7BF8726E8D7850077BE9C /* actor_init.cpp */,
D7F7BF9826E8D7860077BE9C /* actor_init.h */,
D7F7BF9226E8D7860077BE9C /* actor_scripts.c */,
D7F7BF8B26E8D7850077BE9C /* actor_scripts.h */,
D7A6536F2B861224003E0B91 /* actors_list.cpp */,
D7A6536E2B861224003E0B91 /* actors_list.h */,
D7F7BF9926E8D7860077BE9C /* actors.c */,
D7F7BF8F26E8D7850077BE9C /* actors.h */,
D7F7BF8526E8D7850077BE9C /* alphamap.c */,
D7F7BF8D26E8D7850077BE9C /* alphamap.h */,
D7F7BF8C26E8D7850077BE9C /* asc.c */,
D7F7BF8A26E8D7850077BE9C /* asc.h */,
D7F7BF9326E8D7860077BE9C /* astrology.c */,
D7F7BF8626E8D7850077BE9C /* astrology.h */,
D7F7BF8E26E8D7850077BE9C /* bags.c */,
D7F7BF8826E8D7850077BE9C /* bags.h */,
D7F7BF9526E8D7860077BE9C /* bbox_tree.c */,
D7F7BF9426E8D7860077BE9C /* bbox_tree.h */,
1F8129360D033551008792A7 /* books */,
D791C71425F9300700EB3011 /* books.cpp */,
1F8129420D033551008792A7 /* books.h */,
1F8129430D033551008792A7 /* buddy.c */,
1F8129440D033551008792A7 /* buddy.h */,
E182879E0EFFFC320046818E /* buffs.c */,
E182879F0EFFFC320046818E /* buffs.h */,
1F8129450D033551008792A7 /* cache.c */,
1F8129460D033551008792A7 /* cache.h */,
1F81294B0D033551008792A7 /* cal_types.h */,
1F8129470D033551008792A7 /* cal.c */,
1F8129480D033551008792A7 /* cal.h */,
1F8129490D033551008792A7 /* cal3d_wrapper.cpp */,
1F81294A0D033551008792A7 /* cal3d_wrapper.h */,
1F52AA170D6BCC0800CA2E5F /* calc.c */,
1F52AA180D6BCC0800CA2E5F /* calc.h */,
1F81294D0D033551008792A7 /* chat.c */,
1F81294E0D033551008792A7 /* chat.h */,
1F81294F0D033551008792A7 /* client_serv.h */,
1F8129500D033551008792A7 /* cluster.c */,
1F8129510D033551008792A7 /* cluster.h */,
1F8129520D033551008792A7 /* colors.c */,
1F8129530D033551008792A7 /* colors.h */,
7B0B8CAF16AD61C000D75AD9 /* command_queue.cpp */,
7B57365D20C80E4000C41C6E /* command_queue.h */,
7B57365E20C80E4000C41C6E /* command_queue.hpp */,
D7F7BFB626E8D92A0077BE9C /* connection.cpp */,
D7F7BFB526E8D92A0077BE9C /* connection.h */,
1F8129550D033551008792A7 /* console.c */,
1F8129560D033551008792A7 /* console.h */,
1F8129570D033551008792A7 /* consolewin.c */,
1F8129580D033551008792A7 /* consolewin.h */,
1F22CC3A0DBAD57400411752 /* context_menu.cpp */,
1F22CC3B0DBAD57400411752 /* context_menu.h */,
1F8129590D033551008792A7 /* counters.c */,
1F81295A0D033551008792A7 /* counters.h */,
D7F7BFB226E8D9120077BE9C /* cppwindows.cpp */,
D7F7BFB326E8D9120077BE9C /* cppwindows.h */,
1F81295B0D033551008792A7 /* cursors.c */,
1F81295C0D033551008792A7 /* cursors.h */,
E1DE78661330EE79005E7747 /* custom_update.c */,
E1DE78671330EE79005E7747 /* custom_update.h */,
1F22CC3C0DBAD57400411752 /* dbuffer.h */,
1F608B5F0FA5CAD100FFD55C /* dds.c */,
1F608B600FA5CAD100FFD55C /* dds.h */,
1F608B610FA5CAD100FFD55C /* ddsimage.c */,
1F608B620FA5CAD100FFD55C /* ddsimage.h */,
1F8129620D033551008792A7 /* dialogues.c */,
1F8129630D033551008792A7 /* dialogues.h */,
1F8129730D033551008792A7 /* draw_scene.c */,
1F8129740D033551008792A7 /* draw_scene.h */,
1F8129760D033551008792A7 /* e3d_object.h */,
1F8129750D033551008792A7 /* e3d.h */,
7BDF3E1820D009CA007BE401 /* el_memory.c */,
7BDF3E1920D009CA007BE401 /* el_memory.h */,
1F81297D0D033551008792A7 /* elc_private.h */,
1F8129800D033551008792A7 /* elconfig.c */,
1F8129810D033551008792A7 /* elconfig.h */,
1FB7E409143560CB002C4FEA /* elloggingwrapper.cpp */,
1FB7E40A143560CB002C4FEA /* elloggingwrapper.h */,
1F8129820D033551008792A7 /* elmemory.c */,
1F8129830D033551008792A7 /* elmemory.h */,
1F8129840D033551008792A7 /* elwindows.c */,
1F8129850D033551008792A7 /* elwindows.h */,
1F8F612710CDC8CD007B270D /* emotes.c */,
1F8F612810CDC8CD007B270D /* emotes.h */,
1F8129860D033551008792A7 /* encyclopedia.c */,
1F8129870D033551008792A7 /* encyclopedia.h */,
1FB7E40F143560DE002C4FEA /* engine */,
1F8129880D033551008792A7 /* errors.c */,
1F8129890D033551008792A7 /* errors.h */,
1F81298C0D033551008792A7 /* events.c */,
1F81298D0D033551008792A7 /* events.h */,
1F81298E0D033551008792A7 /* exceptions */,
D7F7BFB026E8D8CC0077BE9C /* ext_protocol_shared.c */,
D7F7BFAF26E8D8CC0077BE9C /* ext_protocol_shared.h */,
1F8129920D033551008792A7 /* eye_candy */,
1F52AA190D6BCC0800CA2E5F /* eye_candy_debugwin.c */,
E18287A00EFFFC320046818E /* eye_candy_types.h */,
1F812A430D033551008792A7 /* eye_candy_wrapper.cpp */,
1F812A440D033551008792A7 /* eye_candy_wrapper.h */,
1F812A450D033551008792A7 /* filter.c */,
1F812A460D033551008792A7 /* filter.h */,
D791C71625F930CF00EB3011 /* font.cpp */,
1F812A480D033551008792A7 /* font.h */,
1F812A490D033551008792A7 /* framebuffer.c */,
1F812A4A0D033551008792A7 /* framebuffer.h */,
1F812A4B0D033551008792A7 /* frustum.c */,
1F812A4C0D033551008792A7 /* gamewin.c */,
1F812A4D0D033551008792A7 /* gamewin.h */,
1F812A4E0D033551008792A7 /* gl_init.c */,
1F812A4F0D033551008792A7 /* gl_init.h */,
1F52AA1B0D6BCC0800CA2E5F /* glext.h */,
1F8F612910CDC8CD007B270D /* hash.c */,
1F8F612A10CDC8CD007B270D /* hash.h */,
1F812A510D033551008792A7 /* help.c */,
1F812A520D033551008792A7 /* help.h */,
1F812A530D033551008792A7 /* highlight.c */,
1F812A540D033551008792A7 /* highlight.h */,
7B80F34B187DA85B00C81403 /* hud_indicators.cpp */,
7B57365F20C80E4000C41C6E /* hud_indicators.h */,
7B57366020C80E4000C41C6E /* hud_misc_window.c */,
7B57366120C80E4000C41C6E /* hud_misc_window.h */,
7B57366220C80E4000C41C6E /* hud_quickbar_window.c */,
7B57366320C80E4000C41C6E /* hud_quickbar_window.h */,
7B57366420C80E4000C41C6E /* hud_quickspells_window.c */,
7B57366520C80E4000C41C6E /* hud_quickspells_window.h */,
7B57366620C80E4000C41C6E /* hud_statsbar_window.c */,
7B57366720C80E4000C41C6E /* hud_statsbar_window.h */,
7B80F34C187DA85B00C81403 /* hud_timer.cpp */,
D791C71825F9313A00EB3011 /* hud_timer.h */,
1F812A550D033551008792A7 /* hud.c */,
1F812A560D033551008792A7 /* hud.h */,
7B0B8C9816982A1000D75AD9 /* icon_window.cpp */,
D791C71925F9314D00EB3011 /* icon_window.h */,
1F812A570D033551008792A7 /* ignore.c */,
1F812A580D033551008792A7 /* ignore.h */,
E1914A681305B1A8004CD9C1 /* image_loading.c */,
E1914A691305B1A8004CD9C1 /* image_loading.h */,
E1914A661305B1A8004CD9C1 /* image.c */,
E1914A671305B1A8004CD9C1 /* image.h */,
1F812A590D033551008792A7 /* init.c */,
1F812A5A0D033551008792A7 /* init.h */,
1F812A5B0D033551008792A7 /* interface.c */,
1F812A5C0D033551008792A7 /* interface.h */,
D7A653712B86123F003E0B91 /* invasion_window.cpp */,
D7A653722B86123F003E0B91 /* invasion_window.h */,
1F812A5D0D033551008792A7 /* io */,
D7F7BFAC26E8D8930077BE9C /* ipaddress.cpp */,
D7F7BFAD26E8D8930077BE9C /* ipaddress.h */,
7B0B8CB916CA78E800D75AD9 /* item_info.cpp */,
D791C71A25F9320B00EB3011 /* item_info.h */,
1F1CE867114F0B8200F30873 /* item_lists.cpp */,
1F1CE868114F0B8200F30873 /* item_lists.h */,
1F812A710D033551008792A7 /* items.c */,
1F812A720D033551008792A7 /* items.h */,
D791C71B25F9321900EB3011 /* json_io.cpp */,
D791C71D25F9321F00EB3011 /* json_io.h */,
1F812A740D033551008792A7 /* keys.c */,
1F812A750D033551008792A7 /* keys.h */,
1F812A760D033551008792A7 /* knowledge.c */,
1F812A770D033551008792A7 /* knowledge.h */,
1F812A780D033551008792A7 /* langselwin.c */,
1F812A790D033551008792A7 /* langselwin.h */,
1F812AF70D033551008792A7 /* lights.c */,
1F812AF80D033551008792A7 /* lights.h */,
1F812AF90D033551008792A7 /* list.c */,
1F812AFA0D033551008792A7 /* list.h */,
1F812AFB0D033551008792A7 /* load_gl_extensions.c */,
1F812AFC0D033551008792A7 /* load_gl_extensions.h */,
1F812AFD0D033551008792A7 /* loading_win.c */,
1F812AFE0D033551008792A7 /* loading_win.h */,
1F812AFF0D033551008792A7 /* loginwin.c */,
1F812B000D033551008792A7 /* loginwin.h */,
1F812B010D033551008792A7 /* main.c */,
D791C71E25F9323F00EB3011 /* main.h */,
1F22CC3D0DBAD57400411752 /* makeargv.c */,