This repository was archived by the owner on Mar 20, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathResource.h
More file actions
1374 lines (1369 loc) · 60.7 KB
/
Resource.h
File metadata and controls
1374 lines (1369 loc) · 60.7 KB
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
/* Copyright (c) 2002-2012 Croteam Ltd.
This program is free software; you can redistribute it and/or modify
it under the terms of version 2 of the GNU General Public License as published by
the Free Software Foundation
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */
//{{NO_DEPENDENCIES}}
// Microsoft Developer Studio generated include file.
// Used by WorldEditor.rc
//
#define ID_LOAD_PREFERENCES 3
#define ID_SELECT_ALL 3
#define ID_SAVE_GAME_SETTINGS 3
#define ID_GENERATE_TERRAIN_BRUSH 3
#define ID_SAVE_PREFERENCES 4
#define ID_DESELECT_ALL 4
#define ID_RESTORE_GAME_SETTINGS 4
#define ID_SAVE_ANIMATION 4
#define ID_FEED_VOLUME 4
#define ID_LOAD_ANIMATION 5
#define ID_REVERT 5
#define ID_SAVE_AS_ANIMATION 6
#define ID_CLOSE 7
#define ID_ADD_ANIMATION 8
#define ID_DELETE_ANIMATION 9
#define IDD_ABOUTBOX 100
#define CG_IDD_BROWSEDIALOGBAR 102
#define CG_IDD_PROPERTYCOMBO 105
#define IDC_CUT_LINE 105
#define IDC_MIRROR 107
#define IDC_TE_HEIGHTMAP 108
#define IDC_TE_LAYER_PAINT 109
#define IDC_TE_ERASE 110
#define IDC_TE_SMOOTH 111
#define IDC_TE_RND_NOISE 112
#define IDC_TE_MIN 113
#define IDC_TE_MAX 114
#define IDC_TE_FLATTEN 115
#define IDC_TE_POSTERIZE 116
#define IDC_TE_FILTER 117
#define IDC_TE_PICK 118
#define IDC_TE_CONTINOUS_NOISE 119
#define IDC_TE_TILE_PAINTING 120
#define IDR_MAINFRAME 128
#define IDR_WEDTYPE 129
#define IDR_SELECTION_TOOLS 129
#define IDR_WORK_TOOLS 129
#define IDR_BROWSERPOPUP 130
#define IDS_DEFAULT_FONT 130
#define IDR_ICONS_STOCK 130
#define IDD_CREATE_VIRTUAL_DIRECTORY 131
#define IDR_VTREEPOPUP 131
#define IDR_PROJECTIONS 131
#define IDS_WED_ARIAL_FONT 131
#define IDR_WED_POPUP 132
#define IDR_CSG_TOOLS 132
#define IDR_ENTITY_POPUP 132
#define IDB_DIRECTORY_ICONS 139
#define CG_IDD_INFOWINDOW 143
#define IDD_PREFERENCES 145
#define IDD_REMOVE_WORKING_TEXTURE 147
#define IDD_TEST_MODE_DIALOG 148
#define IDD_CREATE_TEXTURE 148
#define IDD_CHOOSE_COLOR 149
#define IDD_PG_PRIMITIVE 150
#define IDD_PG_POSITION 152
#define IDD_RENDERING_PREFERENCES 154
#define IDD_SELECT_BY_NAME 156
#define IDD_BACKGROUND_SETTINGS 157
#define IDD_WORLD_SETTINGS 157
#define IDD_AUTO_DELTA_CSG 158
#define IDD_PG_GLOBAL 161
#define IDD_PROGRESS_DIALOG 162
#define IDD_PG_RENDERING_STATISTICS 163
#define IDD_PG_POLYGON 164
#define IDD_GAME_SETTINGS 165
#define IDR_SETTINGS_AND_UTILITY 166
#define IDR_VIEW_TOOLS 168
#define IDD_SELECT_PLAYER 177
#define IDD_DIALOG1 178
#define IDD_TREE_SHORTCUTS 180
#define IDD_PG_SECTOR 182
#define IDR_SHORTCUTS_POPUP 183
#define IDD_BROWSE_BY_CLASS 184
#define IDR_POLYGON_POPUP 184
#define IDD_FILE_REQUESTER 185
#define IDR_SECTOR_POPUP 185
#define IDD_TREE_SHORTCUTS1 186
#define IDR_CSG_PRIMITIVE_POPUP 186
#define IDD_LIGHT_ANIMATION_EDITOR 186
#define IDR_MIP_TOOLS 187
#define IDR_CSG_TEMPLATE_POPUP 187
#define IDD_PG_TEXTURE 195
#define IDR_THUMBNAIL_TEXTURE_POPUP 197
#define IDR_SHADOW_AND_TEXTURE 200
#define IDR_SHADOWS_AND_TEXTURE 200
#define IDR_SELECT_ENTITY 202
#define IDR_VIEW_TOOLS2 203
#define IDR_COLOR_BUTTON 204
#define IDD_NUMERIC_ALPHA 205
#define IDR_PRIMITIVE_SETTINGS 206
#define IDD_PG_SHADOW 206
#define IDR_ICON_CONUS 207
#define IDR_ICON_TORUS 208
#define IDR_ICON_SPIRAL_STAIRCASES 209
#define IDR_ICON_LINEAR_STAIRCASES 210
#define IDR_ICON_SPHERE 211
#define IDD_MIRROR_AND_STRETCH 211
#define IDR_ICON_TERRAIN 212
#define IDD_FILTER_POLYGON_SELECTION 212
#define IDR_ICON_ADD 213
#define IDR_INFO_POLYGON_POPUP 213
#define IDR_ICON_ADD_REVERSE 214
#define IDD_TIPOFTHEDAY 214
#define IDR_VERTEX_POPUP 214
#define IDR_ICON_REMOVE 215
#define IDB_TIPOFTHEDAY 215
#define IDR_ICON_REMOVE_REVERSE 216
#define IDD_DISPLACE_MAP_SIZE 216
#define IDR_ICON_SPLIT_SECTORS 217
#define IDR_ICON_SPLIT_POLYGONS 218
#define IDR_ICON_JOIN_LAYERS 219
#define IDR_ICON_ROOM 220
#define IDR_ICON_MATERIAL 221
#define IDR_ICON_INNER 222
#define IDR_ICON_OUTER 223
#define IDR_ICON_TOP_STAIRS 224
#define IDR_ICON_TOP_SLOPE 225
#define IDR_ICON_TOP_CEILING 226
#define IDR_ICON_BOTTOM_FLOOR 227
#define IDR_ICON_BOTTOM_SLOPE 228
#define IDR_ICON_BOTTOM_STAIRS 229
#define IDR_ICON_PANE_CSG 230
#define IDR_ICON_PANE_POLYGON 231
#define IDR_ICON_PANE_SECTOR 232
#define IDR_ICON_PANE_ENTITY 233
#define IDR_ICON_PANE_VERTEX 234
#define IDR_ICON_PANE_TERRAIN 235
#define IDR_STOCK 236
#define IDD_COMMENT 237
#define IDR_LINK_TREE_POPUP 237
#define IDR_TERRAIN_POPUP 238
#define IDD_LINK_TREE 241
#define IDD_FILTER_VERTEX_SELECTION 244
#define IDD_SNAP_VERTEX 245
#define IDD_ALLIGN_VERTICES 246
#define IDD_AUTO_TEXTURIZE 247
#define IDD_STRETCH_CHILD_OFFSET 248
#define IDD_DIALOG2 249
#define IDD_DIALOG3 250
#define IDD_PG_TERRAIN 251
#define IDD_EDIT_TERRAIN_BRUSH 252
#define IDD_EDIT_FLOAT 253
#define IDD_TERRAIN_SIZE 255
#define IDD_BCG_PICTURE_SIZE 255
#define IDD_TERRAIN_HEIGHTMAP_SIZE 256
#define IDD_EDIT_TERRAIN_LAYER 257
#define IDD_TE_OPTION_SETTINGS 258
#define IDD_TERRAIN_PROPERTIES 261
#define IDD_GENERATE_FBM 262
#define IDC_VIRTUALTREE 1000
#define IDC_LIST1 1000
#define IDC_BROWSEWND 1002
#define IDC_EDIT1 1003
#define IDC_TOP_VIEW_HEIGHT 1004
#define IDC_DIRECTORY_ICON_LIST 1005
#define IDC_FRONT_VIEW_HEIGHT 1005
#define IDC_RIGHT_VIEW_HEIGHT 1006
#define IDC_TOP_VIEW_CENTER_X 1007
#define IDC_TOP_VIEW_CENTER_Y 1008
#define IDW_BROWSER 1009
#define IDC_FRONT_VIEW_CENTER_X 1009
#define IDW_COLOR_PALETTE 1010
#define IDC_FRONT_VIEW_CENTER_Y 1010
#define IDC_PROPERTYCOMBO 1011
#define IDC_RIGHT_VIEW_CENTER_X 1011
#define IDW_ACTIVE_TEXTURE 1012
#define IDC_RIGHT_VIEW_CENTER_Y 1012
#define IDW_ANIMATION_FRAMES 1013
#define IDW_THUMBNAIL 1013
#define ID_OK_BUTTON 1014
#define IDW_TEST_EFFECT_TEXTURE 1014
#define IDC_BUTTON1 1015
#define IDC_BROWSE_FILE 1015
#define IDC_BROWSE_EFFECT_TEXTURE 1015
#define IDC_SETINGS_STORE 1015
#define IDC_BROWSE_HYPER_TEXTURE 1015
#define IDC_DISPLACE_BROWSE 1015
#define IDC_ALLIGN_X 1015
#define IDC_VIEW_NOISE_TEXTURE 1015
#define IDC_FBM_RANDOMIZE 1015
#define IDC_BUTTON2 1016
#define IDC_OK 1016
#define IDC_DELETE_MARKER 1016
#define IDC_SETINGS_RESTORE 1016
#define IDC_BROWSE_TOP_VIEW_PICTURE 1016
#define IDC_REMOVE_HYPER_TEXTURE 1016
#define IDC_DISPLACE_NONE 1016
#define IDC_NO_FILE 1016
#define IDC_ALLIGN_Y 1016
#define IDC_BROWSE_CONTINOUS_NOISE 1016
#define IDC_FBM_EXPORT 1016
#define IDC_BUTTON3 1017
#define IDC_BASE_VERTICES 1017
#define IDC_CANCEL 1017
#define IDC_DELETE_EFFECT_TEXTURE 1017
#define IDC_EDIT3 1017
#define IDC_BROWSE_FRONT_VIEW_PICTURE 1017
#define IDC_NO_TARGET 1017
#define IDC_ALLIGN_Z 1017
#define IDC_BROWSE_DISTRIBUTION_NOISE 1017
#define IDC_BUTTON4 1018
#define IDC_WIDTH 1018
#define IDC_SCROLL_RIGHT 1018
#define IDC_BROWSE_RIGHT_VIEW_PICTURE 1018
#define IDC_VIEW_DISTRIBUTION_NOISE_TEXTURE 1018
#define IDC_BUTTON5 1019
#define IDC_HEIGHT 1019
#define IDC_SCROLL_LEFT 1019
#define IDC_GENERATION_SETTINGS 1019
#define IDC_BUTTON6 1020
#define IDC_LENGHT 1020
#define IDC_SCROLL_PG_LEFT 1020
#define IDC_BUTTON7 1021
#define IDC_SHEARX 1021
#define IDC_SCROLL_PG_RIGHT 1021
#define IDC_BUTTON8 1022
#define IDC_SHEARZ 1022
#define IDC_EDIT2 1022
#define IDC_BUTTON9 1023
#define IDC_JOIN_ON_TOP 1023
#define IDC_BUTTON10 1024
#define IDC_CLOSED 1024
#define IDC_BUTTON11 1025
#define IDC_APPLY 1025
#define IDC_STRETCH 1025
#define IDC_STRETCH_X 1025
#define IDC_EDIT4 1025
#define IDC_STRETCH_U 1025
#define IDC_BUTTON12 1026
#define IDC_RENDERING_PREFS01 1026
#define IDC_STRETCH_Y 1026
#define IDC_EDIT5 1026
#define IDC_SHEAR_U 1026
#define IDC_SHEAR 1026
#define IDC_ROTATION_V 1026
#define IDC_BUTTON13 1027
#define IDC_RENDERING_PREFS02 1027
#define IDC_VERTEX_FILL_TYPE 1027
#define IDC_DIRECTIONAL_SHADOWS 1027
#define IDC_STRENGTH 1027
#define IDC_AUTO_CREATE_MIP_BRUSHES 1027
#define IDC_BUTTON14 1028
#define IDC_RENDERING_PREFS03 1028
#define IDC_EDGES_FILL_TYPE 1028
#define IDC_BUTTON15 1029
#define IDC_RENDERING_PREFS04 1029
#define IDC_POLYGON_FILL_TYPE 1029
#define IDC_BUTTON16 1030
#define IDC_RENDERING_PREFS05 1030
#define IDC_VERTEX_COLORS 1030
#define IDC_BUTTON17 1031
#define IDC_RENDERING_PREFS06 1031
#define IDC_BBOX 1031
#define IDC_BUTTON18 1032
#define IDC_RENDERING_PREFS07 1032
#define IDC_SHADOWS 1032
#define IDC_EDIT_HEADING 1032
#define IDC_BUTTON19 1033
#define IDC_RENDERING_PREFS08 1033
#define IDC_WIRE_FRAME 1033
#define IDC_EDIT_PITCH 1033
#define IDC_BUTTON20 1034
#define IDC_RENDERING_PREFS09 1034
#define IDC_HIDEN_LINES 1034
#define IDC_EDIT_BANKING 1034
#define IDC_BUTTON21 1035
#define IDC_TEXTURE_FILL_TYPE 1035
#define IDC_RENDERING_PREFS10 1035
#define IDC_STATIC_HEADING 1035
#define IDC_SELECTED_POLYGONS 1035
#define IDC_BUTTON22 1036
#define IDC_STATIC_PITCH 1036
#define IDC_SELECTED_SECTORS 1036
#define IDC_FLARE_FX 1036
#define IDC_BUTTON23 1037
#define IDC_STATIC_BANKING 1037
#define IDC_SELECTED_ENTITIES 1037
#define IDC_POLYGONS_IN_SECTORS 1037
#define IDC_APPLY_CLIP_FOR_ISOMETRIC 1037
#define IDC_BUTTON24 1038
#define IDC_EDIT_X 1038
#define IDC_EDGES_IN_SECTORS 1038
#define IDC_BUTTON25 1039
#define IDC_EDIT_Y 1039
#define IDC_VERTICES_IN_SECTORS 1039
#define IDC_BUTTON26 1040
#define IDC_EDIT_Z 1040
#define IDC_PLANES_IN_SECTORS 1040
#define IDC_BUTTON27 1041
#define IDC_STATIC_X 1041
#define IDC_API 1041
#define IDC_BUTTON28 1042
#define IDC_STATIC_Y 1042
#define IDC_TERRAIN_SELECTON_VISIBLE 1042
#define IDC_BUTTON29 1043
#define IDC_STATIC_Z 1043
#define IDC_RENDERING_RANGE 1043
#define IDC_TERRAIN_SELECTION_HIDDEN 1043
#define IDC_BUTTON30 1044
#define IDC_UNDO_LEVELS 1044
#define IDC_FAR_CLIP_PLANE 1044
#define IDC_BUTTON31 1045
#define IDC_USE_BCG_PICTURE 1045
#define IDC_CSG_PRECISSION 1045
#define IDC_BUTTON32 1046
#define IDC_CHECK1 1046
#define IDC_RENDER_EDITOR_MODELS 1046
#define IDC_IS_PORTAL 1046
#define IDC_USE_TEXTURE_FOR_BACKGROUND 1046
#define IDC_CLAMP_U 1046
#define IDC_SHOWTIPSATSTARTUP 1046
#define IDC_DISPLAY_VOLUME 1046
#define IDC_EDIT_DISPLACE_MIDPIXELSAMPLING 1046
#define IDC_LT_CLASS 1046
#define IDC_EXPAND_EDGES 1046
#define IDC_AUTO_GENERATE_LAYER_DISTRIBUTION 1046
#define IDC_ADD_NEGATIVE_VALUES 1046
#define IDC_TEXTURE_INFO 1047
#define IDC_AUTO_RENDERING_RANGE 1047
#define IDC_IS_PASSABLE 1047
#define IDC_CLAMP_V 1047
#define IDC_EDIT_DISPLACE_16BITRESOLUTION 1047
#define IDC_LT_PROPERTY 1047
#define IDC_DISPLAY_IMPORTANTS 1047
#define IDC_RANDOM_OFFSET 1047
#define ID_SECTOR_COLOR 1048
#define IDC_USE_TEXTURE_FOR_BCG 1048
#define IDC_REFLECTIVE 1048
#define IDC_STAIRS 1048
#define IDC_LT_NAME 1048
#define ID_SECTOR_COLOR2 1049
#define ID_POLYGON_COLOR 1049
#define ID_COLOR_OF_POLYGONS_IN_SECTORS 1049
#define ID_COMBINE_COLOR 1049
#define IDC_RENDER_FIELDS 1049
#define ID_VISIBILITY_FLAGS 1049
#define IDC_LT_WHO 1049
#define IDC_SHOOTTROUGH 1049
#define IDC_EASY 1050
#define IDC_IS_TRANSLUSCENT 1050
#define ID_SELECT_POLIGONS_IN_SECTORS 1050
#define IDC_AFTER_SHADOW 1050
#define IDC_RENDER_MIRRORS 1050
#define ID_CLASSIFICATION_FLAGS 1050
#define IDC_EDIT_SELECTION 1051
#define IDC_EDIT_ENUM 1051
#define IDC_INVISIBLE 1051
#define IDC_RENDER_FOG 1051
#define IDC_MEDIUM 1052
#define IDC_NORMAL 1052
#define IDC_RENDER_HAZE 1052
#define IDC_IS_RECEIVING_SHADOWS2 1052
#define IDC_DOUBLESIDED 1052
#define IDC_HARD 1053
#define IDC_HAS_DIRECTIONAL_SHADOWS2 1053
#define IDC_EXTREME 1054
#define IDC_CLAMP_TEXTURE 1054
#define IDC_SINGLE 1055
#define ID_SHADOW_COLOR 1055
#define IDC_CLAMP_U2 1055
#define IDC_COOPERATIVE 1056
#define IDC_IS_DETAIL 1056
#define IDC_DEATHMATCH 1057
#define IDC_IS_OLD_PORTAL 1057
#define IDC_EDIT_BOOL 1058
#define IDC_DYNAMIC_LIGHTS_ONLY2 1058
#define IDC_IS_OCCLUDER 1058
#define IDC_EDIT_STRING 1059
#define IDC_IF_SPIRAL 1059
#define IDC_NO_DYNAMIC_LIGHTS2 1059
#define IDC_IS_TRANSPARENT 1059
#define IDC_EDIT_FLOAT 1060
#define IDC_IF_OUTER 1060
#define IDC_HAS_PRECISE_SHADOWS2 1060
#define IDC_EDIT_FLOAT_RANGE 1061
#define IDC_EDIT_DESCRIPTION_T 1061
#define IDC_FLOAT_RANGE_T 1061
#define IDC_HAS_DIRECTIONAL_AMBIENT2 1061
#define IDC_EDIT_COLOR 1062
#define IDC_DARK_CORNERS2 1062
#define IDC_ENTITY_LIST 1063
#define IDC_CHOOSE_COLOR_T 1063
#define IDC_CLAMP_V2 1063
#define IDC_FILE_NAME_T 1064
#define IDC_REFLECTIVE2 1064
#define IDC_EASY_T 1065
#define IDC_AFTER_SHADOW2 1065
#define IDC_NORMAL_T 1066
#define IDC_HARD_T 1067
#define IDC_EXTREME_T 1068
#define IDC_SINGLE_T 1069
#define IDC_COOPERATIVE_T 1070
#define IDC_DEATHMATCH_T 1071
#define IDC_PICTURE_FILE_T 1072
#define IDC_EDIT_INDEX 1072
#define ID_REMOVE 1073
#define IDC_BACKGROUND_COLOR 1073
#define IDC_INDEX_RANGE_T 1073
#define IDC_EDIT_BBOX_MIN 1074
#define IDC_TOP_VIEW_PICTURE_T 1074
#define ID_LEAVE 1074
#define IDC_EDIT_BBOX_MAX 1075
#define IDC_FRONT_VIEW_PICTURE_T 1075
#define IDC_RENDERING_STATISTICS 1076
#define IDC_RIGHT_VIEW_PICTURE_T 1076
#define IDC_DIFFICULTY_1 1076
#define IDC_EDIT_U 1077
#define IDC_ADD_TO_BROWSER 1077
#define IDC_BACKDROP_OBJECT_T 1077
#define IDC_DIFFICULTY_1_T 1077
#define IDC_EDIT_V 1078
#define IDC_SOURCE_SIZE 1078
#define IDC_DIFFICULTY_2 1078
#define IDC_STATIC_U 1079
#define IDC_CREATED_SIZE 1079
#define IDC_DIFFICULTY_2_T 1079
#define IDC_DIFFICULTY_1_T2 1079
#define IDC_STATIC_V 1080
#define IDC_STATIC_STRETCH 1080
#define IDC_DIFFICULTY_3 1080
#define IDC_STATIC_ROTATION 1081
#define IDC_DIFFICULTY_3_T 1081
#define IDC_DIFFICULTY_2_T2 1081
#define IDC_SPIN1 1082
#define IDC_DIFFICULTY_4 1082
#define IDC_NO_OF_CLONES 1083
#define IDC_STRETCH_V 1083
#define IDC_DIFFICULTY_4_T 1083
#define IDC_DIFFICULTY_3_T2 1083
#define IDC_STATIC_SHEAR 1084
#define IDC_STATIC_ROTATION_SHEAR 1084
#define IDC_DIFFICULTY_5 1084
#define IDC_DIFFICULTY_5_T 1085
#define IDC_DIFFICULTY_4_T2 1085
#define IDC_GAME_MODE_1 1086
#define IDC_DIFFICULTY_5B 1086
#define IDC_PROGRESS_MESSAGE 1087
#define IDC_GAME_MODE_1_T 1087
#define IDC_DIFFICULTY_5_T2 1087
#define IDC_PROGRESS 1088
#define IDC_CREATED_TEXTURE_NAME_T 1088
#define IDC_GAME_MODE_2 1088
#define IDC_GAME_MODE_2_T 1089
#define IDC_GAME_MODE_1_T2 1089
#define IDC_MISSION_DESCRIPTION 1090
#define IDC_GAME_MODE_3 1090
#define IDC_MATERIAL_COMBO 1091
#define IDC_CLUSTER_SIZE_COMBO 1091
#define IDC_GAME_MODE_3_T 1091
#define IDC_GAME_MODE_2B 1091
#define IDC_STATIC_MATERIAL 1092
#define IDC_STATIC_CLUSTER_SIZE 1092
#define IDC_GAME_MODE_4 1092
#define IDC_GAME_MODE_2_T2 1092
#define IDC_FRICTION_COMBO 1093
#define IDC_GAME_MODE_4_T 1093
#define IDC_GAME_MODE_3B 1093
#define IDC_STATIC_FRICTION 1094
#define IDC_SURFACE_FRICTION 1094
#define IDC_GAME_MODE_5 1094
#define IDC_GAME_MODE_3_T2 1094
#define IDC_EFFECT_COMBO 1095
#define IDC_SURFACE_NAME_COMBO 1095
#define IDC_STATIC_SHADOW_BLEND 1095
#define IDC_STATIC_MIRROR 1095
#define IDC_GAME_MODE_5_T 1095
#define IDC_GAME_MODE_4B 1095
#define IDC_STATIC_EFFECT 1096
#define IDC_EFFECT_TEXTURE 1096
#define IDC_SHADOW_BLEND_COMBO 1096
#define IDC_MIRROR_COMBO 1096
#define IDC_GAME_MODE_6 1096
#define IDC_GAME_MODE_4_T2 1096
#define IDC_ILLUMINATION_COMBO 1097
#define IDC_GAME_MODE_6_T 1097
#define IDC_GAME_MODE_5B 1097
#define IDC_STATIC_PRETENDER_DISTANCE 1097
#define IDC_STATIC_ILLUMINATION 1098
#define IDC_EFFECT_NAME_COMBO 1098
#define IDC_GAME_MODE_5_T2 1098
#define IDC_LIGHT_ANIMATION_SPEED 1099
#define IDC_STATIC_SCROLL 1099
#define IDC_GAME_MODE_6B 1099
#define IDC_LIGHT_ANIMATION_NAME_COMBO 1100
#define IDC_SCROLL_COMBO 1100
#define IDC_GAME_MODE_6_T2 1100
#define IDC_LIGHT_ANIMATION_FRAMES 1101
#define IDC_HYPER_MAP_T 1101
#define IDC_STATIC_BLEND 1101
#define IDC_FRAMES_SPIN 1102
#define IDC_BLEND_TYPE 1102
#define IDC_ILLUMINATION_NAMES_COMBO 1103
#define IDC_LIGHT_ANIMATION_NAME 1103
#define IDC_CURRENT_FRAME 1105
#define IDC_FRAMES_AREA 1106
#define IDC_TEST_AREA 1107
#define IDC_AXIS_X 1108
#define IDC_EFFECT_TEXTURE_ANIMATION_COMBO 1109
#define IDC_AXIS_Y 1109
#define IDC_COMBO_AVAILABLE_PLAYERS 1109
#define IDC_TEST_EFFECT_TEXTURE 1110
#define IDC_AXIS_Z 1110
#define IDC_ENTITY_CLASS 1111
#define IDC_SHORTCUT01 1112
#define IDC_ENTITIES_IN_VOLUME_T 1113
#define IDC_SHORTCUT02 1113
#define IDC_SHORTCUT03 1114
#define IDC_R_OR_H 1114
#define IDC_SHORTCUT04 1115
#define IDC_G_OR_S 1115
#define IDC_SHORTCUT05 1116
#define IDC_B_OR_V 1116
#define IDC_SHORTCUT06 1117
#define IDC_ENTITY_CLASS_DESCRIPTION 1117
#define IDC_ENTITY_NAME 1117
#define IDC_SHORTCUT07 1118
#define IDC_PREFS_COPY 1118
#define IDC_ENTITY_DESCRIPTION 1118
#define IDC_SHORTCUT08 1119
#define IDC_PREFS_MAXIMIZE 1119
#define IDC_SHORTCUT09 1120
#define IDC_PREFS_UPDATE_ALLWAYS 1120
#define IDC_SHORTCUT10 1121
#define IDC_PREFS_AUTOMATIC_INFO 1121
#define IDC_PREFS_SET_DEFAULT_COLORS 1122
#define IDC_BOTTOM_SHAPE 1122
#define IDC_PAPER_COLOR 1123
#define IDC_PREFS_BINARY_GRID_BY_DEFAULT 1123
#define IDC_TOP_SHAPE 1123
#define IDC_INK_COLOR 1124
#define IDC_EDGES_COLORS 1124
#define IDC_EDIT1_T 1124
#define IDC_PREFS_SAVE_UNDO_FOR_DELETE 1124
#define IDC_POLYGON_COLORS 1125
#define IDC_EDIT2_T 1125
#define IDC_PREFS_AUTO_COLORIZE 1125
#define IDC_SELECTION_COLOR 1126
#define IDC_EDIT3_T 1126
#define IDC_PREFS_SHOW_ALL_ON_OPEN 1126
#define IDC_GRID_COLOR 1127
#define IDC_EDIT4_T 1127
#define IDC_PREFS_AUTO_UPDATE_DISPLACEMAP 1127
#define IDC_EDIT5_T 1128
#define IDC_PREFS_HIDE_SHADOWS_ON_START 1128
#define IDC_COMBO_WIN_BCG_TEXTURE 1129
#define IDC_WIDTH_T 1129
#define IDC_PREFS_AUTO_GENERATE_TD 1129
#define IDC_ADD_WORKING_TEXTURE 1130
#define IDC_LENGHT_T 1130
#define IDC_REMOVE_WORKING_TEXTURE 1131
#define IDC_HEIGHT_T 1131
#define IDC_WED_STARTUP_MODE 1132
#define IDC_CHANGE_APPLICATION_DISPLAY_MODE 1132
#define IDC_IF_ROOM 1132
#define IDC_FULL_SCREEN_MODE 1133
#define IDC_CHANGE_FULL_SCREEN_DISPLAY_MODE 1133
#define IDC_TOP_VIEW_WIDTH 1133
#define IDC_PRIMITIVE_HISTORY 1133
#define IDC_TEST_STARTUP_MODE 1134
#define IDC_FRONT_VIEW_WIDTH 1134
#define IDC_TEST_FULL_SCREEN_MODE 1135
#define IDC_RIGHT_VIEW_WIDTH 1135
#define IDC_BROWSE_BACKGROUND_PICTURE 1136
#define IDC_BROWSE_BACKDROP_OBJECT 1137
#define IDC_TEXTURE_FILE_T 1137
#define IDC_RADIO_TEXTURE 1138
#define IDC_TEXTURE_2 1139
#define IDC_TEXTURE_3 1140
#define IDC_OFFSET_U 1141
#define IDC_OFFSET_V 1142
#define IDC_ROTATION 1143
#define IDC_ROTATION_U 1143
#define IDC_BROWSE_TEXTURE 1144
#define IDC_REMOVE_TEXTURE 1145
#define IDC_STATIC_OFFSET 1146
#define IDC_PREVIEW_FRAME 1147
#define IDC_DISPLACE_FILE 1149
#define IDC_TEXTURE_DIM_T 1149
#define IDC_DISPLACE_T 1150
#define IDC_ANGLE3D_T 1151
#define ID_CENTER 1153
#define ID_DELETE_BROWSE_BY_CLASS 1153
#define IDC_STATIC_SHADOW_COLOR 1154
#define ID_SELECT_SECTORS 1154
#define IDC_ALPHA 1155
#define IDC_STATIC_CONTENT_TYPE_T 1156
#define IDC_CONTENT_TYPE_COMBO 1157
#define IDC_STATIC_SECTOR_NAME 1158
#define IDC_SECTOR_NAME 1159
#define IDC_AMBIENT_COLOR_T 1160
#define IDC_STATIC_FORCE_FIELD_T 1161
#define ID_APPLY 1161
#define IDC_FORCE_FIELD_COMBO 1162
#define IDC_MIRROR_NONE 1162
#define IDC_MIRROR_X 1163
#define IDC_STATIC_FOG_T 1163
#define IDC_FOG_COMBO 1164
#define IDC_IS_TRANSLUSCENT2 1164
#define IDC_STATIC_HAZE_T 1165
#define IDC_IS_PORTAL2 1165
#define IDC_MIRROR_Y 1166
#define IDC_HAZE_COMBO 1166
#define IDC_IS_PASSABLE2 1166
#define IDC_MIRROR_Z 1167
#define IDC_INVISIBLE2 1167
#define IDC_STATIC_GRADIENT_T 1167
#define IDC_STATIC_GRADIENT 1167
#define IDC_STATIC_ENVIRONMENT_TYPE_T 1167
#define IDC_IS_DETAIL2 1168
#define IDC_GRADIENT_COMBO 1168
#define IDC_STATIC_ENVIRONMENT_TYPE 1168
#define IDC_IS_OLD_PORTAL2 1169
#define IDC_IS_LIGHT_BEAM_PASSABLLE2 1170
#define IDC_NO_SHADOW2 1171
#define IDC_NO_PLANE_DIFFUSION2 1172
#define IDC_BCG_PICTURE_T 1173
#define IDC_IS_OCCLUDER2 1173
#define IDC_BROWSE_BCG_PICTURE 1174
#define IDC_WND_STARTUP_CFG 1175
#define IDC_NEXTTIP 1176
#define IDC_FLY_MODE_SPEED 1176
#define IDC_COMBO1 1178
#define IDC_PREVTIP 1178
#define IDC_COMBO2 1179
#define IDC_TIPTEXT 1179
#define IDC_EDIT_LEVEL_NAME 1180
#define IDC_GAME_MODE_1B 1181
#define IDC_DIFFICULTY_1B 1182
#define IDC_DIFFICULTY_2B 1183
#define IDC_DIFFICULTY_3B 1184
#define IDC_DIFFICULTY_4B 1185
#define IDC_EDIT_DISPLACE_X_SIZE 1186
#define IDC_EDIT_DISPLACE_Y_SIZE 1187
#define IDC_PRETENDER_DISTANCE 1187
#define IDC_EDIT_SS_PROJECT 1189
#define IDC_COMMENT 1190
#define IDC_MEMORY_FOR_UNDO 1190
#define IDC_STATIC_SOURCE_SAFE_PROJECT 1191
#define IDC_STATIC_SOURCE_SAFE_BORDER 1192
#define IDC_FILTER_CLUSTER_SIZE 1193
#define IDC_MISC_BORDER 1193
#define IDC_FILTER_CLUSTER_MEMORY 1194
#define ID_FLAGS_PROPERTY 1194
#define IDC_CSG_PRECISSION_T 1195
#define IDC_FILTER_POLYGON_SURFACE 1195
#define IDC_PLUGGINS 1196
#define IDC_FILTER_POLYGON_MIRROR 1196
#define IDC_PLUGGINS_T 1197
#define IDC_LINK_TREE 1198
#define IDC_SECTOR_INCLUDE 1199
#define IDC_SECTOR_EXCLUDE 1200
#define IDC_MIN_H 1200
#define IDC_MIN_P 1201
#define IDC_VTX_SNAP_X 1201
#define IDC_VTX_SNAP_Y 1202
#define IDC_MAX_H 1203
#define IDC_VTX_SNAP_Z 1203
#define IDC_MAX_P 1204
#define IDC_PRETENDER_TEXTURE_SIZE 1204
#define IDC_PRETENDER_TEXTURE_STYLE 1205
#define IDC_CHILD_STRETCH 1205
#define IDC_MIN_X 1206
#define IDC_MIN_Y 1207
#define IDC_MIN_Z 1208
#define IDC_MAX_X 1209
#define IDC_MAX_Y 1210
#define IDC_MAX_Z 1211
#define IDW_TERRAIN_INTERFACE 1212
#define IDC_FALLOFF 1212
#define IDC_HOTSPOT 1213
#define IDC_IMPORT_TERRAIN_BRUSH 1214
#define IDC_TRL_LAYER_NAME 1214
#define IDC_EDIT_FLOAT_T 1215
#define IDC_TRL_OFFSET_X 1215
#define IDC_TERRAIN_WIDTH 1216
#define IDC_TRL_OFFSET_Y 1216
#define IDC_TERRAIN_HEIGHT 1217
#define IDC_TRL_STRETCH_X 1217
#define IDC_TERRAIN_LENGTH 1218
#define IDC_TRL_STRETCH_Y 1218
#define IDC_HEIGHTMAP_WIDTH 1219
#define IDC_HEIGHTMAP_HEIGHT 1220
#define IDC_TRL_ROTATE_U 1221
#define IDC_TERRAIN_LOD_SWITCH 1221
#define IDC_TRL_ROTATE_V 1222
#define IDC_TERRAIN_FIRST_TOPMAP_LOD 1222
#define IDC_TRL_ALTITUDE_MIN 1223
#define IDC_TRL_ALTITUDE_MAX 1224
#define IDC_TRL_ALTITUDE_MIN_FADE 1225
#define IDC_TRL_ALTITUDE_MAX_FADE 1226
#define IDC_TRL_SLOPE_MIN 1227
#define IDC_TRL_SLOPE_MAX 1228
#define IDC_TRL_SLOPE_MIN_FADE 1229
#define IDC_TRL_SLOPE_MAX_FADE 1230
#define IDC_TRL_LAYER_COVERAGE 1231
#define IDC_TRL_ALTITUDE_MIN_NOISE 1232
#define IDC_TRL_ALTITUDE_MAX_NOISE 1233
#define IDC_APPLY_MIN_ALTITUDE_DISTRIBUTION 1234
#define IDC_APPLY_MAX_ALTITUDE_DISTRIBUTION 1235
#define IDC_PAINT_POWER 1235
#define IDC_TRL_COVERAGE_FADE 1236
#define IDC_SMOOTH_POWER 1236
#define IDC_TRL_SLOPE_MIN_NOISE 1237
#define IDC_EQUALIZE_VALUE 1237
#define IDC_TRL_SLOPE_MAX_NOISE 1238
#define IDC_POSTERIZE_STEP 1238
#define IDC_APPLY_MIN_SLOPE_DISTRIBUTION 1239
#define IDC_NOISE_STRENGTH 1239
#define IDC_APPLY_MAX_SLOPE_DISTRIBUTION 1240
#define IDC_FILTER_POWER 1241
#define IDC_FILTER_COMBO 1242
#define IDC_GENERATION_ALGORITHM 1243
#define IDC_CONTINOUS_NOISE_T 1245
#define IDC_DISTRIBUTION_NOISE_T 1246
#define IDC_SHADING_MAP 1246
#define IDC_SHADOW_MAP 1247
#define IDC_TERRAIN_PRETENDER 1248
#define IDC_SHADOW_MAP_T 1249
#define IDC_SHADING_MAP_T 1250
#define IDC_TERRAIN_PRETENDER_T 1251
#define IDC_HEIGHTIMAP_SIZE_T 1252
#define IDC_TERRAIN_HM_WIDTH 1253
#define IDC_TERRAIN_HM_HEIGHT 1254
#define IDC_TERRAIN_QUADS_PER_TILE 1255
#define IDC_TILE_PRETENDER 1256
#define IDC_TILE_PRETENDER_T 1257
#define IDC_FBM_OCTAVES 1257
#define IDC_TERRAIN_MEMORY_T 1258
#define IDC_FBM_OCTAVE_STEP 1258
#define IDC_LAYER_MEMORY_T 1259
#define IDC_FBM_MAX_ALTITUDE 1259
#define IDC_TERRAIN_EDGE_MEMORY_T 1260
#define IDC_FBM_OCTAVE_AMPLITUDE_DECREASE 1260
#define IDC_FBM_HIGH_FREQUENCY_STEP 1261
#define IDC_CT_OCTAVES_SPIN 1262
#define IDC_GLOBAL_PRETENDER 1263
#define IDC_BCG_PICTURE_SIZE 1264
#define IDC_STATIC_TERRAIN_BORDER 1264
#define IDC_TEXT_TERRAIN_HIDDEN 1265
#define IDC_TEXT_TERRAIN_VISIBLE 1266
#define IDC_TEXT_TERRAIN_MEMORY 1267
#define IDC_FBM_PREVIEW_FRAME 1284
#define IDC_IS_LIGHT_BEAM_PASSABLLE 11048
#define IDC_NO_SHADOW 11049
#define IDC_IS_RECEIVING_SHADOWS 11050
#define IDC_HAS_DIRECTIONAL_SHADOWS 11052
#define IDC_NO_PLANE_DIFFUSION 11054
#define IDC_DYNAMIC_LIGHTS_ONLY 11056
#define IDC_NO_DYNAMIC_LIGHTS 11057
#define IDC_HAS_PRECISE_SHADOWS 11058
#define IDC_HAS_DIRECTIONAL_AMBIENT 11059
#define IDC_DARK_CORNERS 11060
#define IDC_APPLY_GRADIENT 11061
#define ID_SAVE_VIRTUAL_TREE 32771
#define ID_LOAD_VIRTUAL_TREE 32772
#define ID_DELETE_DIRECTORY 32773
#define ID_INSERT_DIRECTORY 32774
#define ID_CREATE_DIRECTORY 32775
#define ID_INSERT_OBJECTS 32777
#define ID_RENAME_DIRECTORY 32778
#define ID_VIRTUAL_TREE 32779
#define ID_INSERT_ITEMS 32780
#define ID_SMALL_ICONS 32781
#define ID_BIG_ICONS 32782
#define ID_DELETE_ITEMS 32785
#define ID_MEDIUM_ICONS 32786
#define ID_SHOW_DESCRIPTION 32787
#define ID_SHOW_FILENAME 32788
#define ID_VIEW_INFOWINDOW 32790
#define ID_FILE_PREFERENCES 32791
#define ID_CHOOSE_COLOR 32792
#define ID_LOAD_BAR_STATUSES 32793
#define ID_CREATE_PRIMITIVE 32794
#define ID_SAVE_THUMBNAIL 32801
#define ID_ISOMETRIC_TOP 32802
#define ID_ISOMETRIC_BOTTOM 32803
#define ID_ISOMETRIC_RIGHT 32804
#define ID_ISOMETRIC_LEFT 32805
#define ID_ISOMETRIC_FRONT 32806
#define ID_ISOMETRIC_BACK 32807
#define ID_PERSPECTIVE 32808
#define ID_CSG_ADD_ROOMS 32809
#define ID_CSG_ADD_MATERIAL 32810
#define ID_CSG_REMOVE_MATERIAL 32811
#define ID_CSG_SPLIT_SECTORS 32813
#define ID_CSG_DESTINATION 32814
#define ID_CSG_CANCEL 32815
#define ID_GRID_ON_OFF 32817
#define ID_VIEW_CSGTOOLS 32818
#define ID_SHOW_ORIENTATION 32820
#define ID_ZOOM_MORE 32822
#define ID_ZOOM_LESS 32823
#define ID_MOVE_RIGHT 32824
#define ID_MOVE_LEFT 32825
#define ID_MOVE_UP 32826
#define ID_MOVE_DOWN 32827
#define ID_TOP 32828
#define ID_PROJECTION_TOP 32829
#define ID_PROJECTION_BOTTOM 32830
#define ID_PROJECTION_LEFT 32831
#define ID_PROJECTION_RIGHT 32832
#define ID_PROJECTION_FRONT 32833
#define ID_PROJECTION_BACK 32834
#define ID_PROJECTION_ISOMETRIC 32835
#define ID_IMPORT_LWO 32837
#define ID_MEASUREMENT_LENT 32838
#define ID_MEASUREMENT_TAPE 32839
#define ID_FRAME_RATE 32840
#define ID_BUFFER01 32841
#define ID_BUFFER02 32842
#define ID_BUFFER03 32843
#define ID_BUFFER04 32844
#define ID_BUFFER05 32845
#define ID_BUFFER06 32846
#define ID_BUFFER07 32847
#define ID_BUFFER08 32848
#define ID_BUFFER09 32849
#define ID_BUFFER10 32850
#define ID_EDIT_BUFFER01 32851
#define ID_EDIT_BUFFER02 32852
#define ID_EDIT_BUFFER03 32853
#define ID_EDIT_BUFFER04 32854
#define ID_EDIT_BUFFER05 32855
#define ID_EDIT_BUFFER06 32856
#define ID_EDIT_BUFFER07 32857
#define ID_EDIT_BUFFER08 32858
#define ID_EDIT_BUFFER09 32859
#define ID_EDIT_BUFFER10 32860
#define ID_TOGGLE_MODES 32862
#define ID_CIRCLE_MODES 32863
#define ID_SELECT_BY_NAME 32864
#define ID_VIEW_PROJECTIONS_BAR 32865
#define ID_VIEW_SELECTON_BAR 32866
#define ID_BCG_SETTINGS 32867
#define ID_VIEW_SELECTION 32868
#define ID_DELETE_ENTITY 32869
#define ID_DELETE_ENTITIES 32870
#define ID_COPY_TEXTURE 32871
#define ID_TAKE_SS 32872
#define ID_ENTITY_MODE 32873
#define ID_POLYGON_MODE 32874
#define ID_SECTOR_MODE 32875
#define ID_REMOVE_MATERIAL 32876
#define ID_JOIN_SECTORS 32877
#define ID_CSG_JOIN_SECTORS 32878
#define ID_TEST_GAME 32879
#define ID_AUTO_SNAP 32880
#define ID_CSG_ADD 32881
#define ID_CSG_REMOVE 32882
#define ID_SPLIT_POLYGONS 32883
#define ID_JOIN_POLYGONS 32884
#define ID_CSG_SPLIT_POLYGONS 32887
#define ID_CSG_JOIN_POLYGONS 32888
#define ID_AUTO_DELTA_PRIMITIVE 32890
#define ID_CLONE_CSG 32891
#define ID_CREATE_PRIMITIVE_POPUP 32892
#define ID_BUTTON32893 32893
#define ID_BUTTON32894 32894
#define ID_BUTTON32895 32895
#define ID_BUTTON32896 32896
#define ID_BUTTON32899 32899
#define ID_BUTTON32900 32900
#define ID_BUTTON32901 32901
#define ID_BUTTON32902 32902
#define ID_BUTTON32905 32905
#define ID_BUTTON32906 32906
#define ID_BUTTON32908 32908
#define ID_BUTTON32909 32909
#define ID_BUTTON32910 32910
#define ID_BUTTON32911 32911
#define ID_BUTTON32912 32912
#define ID_MEASURE_ON 32914
#define ID_BUTTON32916 32916
#define ID_BUTTON32917 32917
#define ID_WORLD_SETTINGS 32918
#define ID_SHOW_PANE_INFO 32919
#define ID_BUTTON32920 32920
#define ID_RESET_VIEWER 32921
#define ID_CREATE_TEXTURE 32922
#define ID_CALCULATESHADOWS 32923
#define ID_EDIT_COPY_MAPPING 32924
#define ID_EDIT_PASTE_MAPPING 32925
#define ID_GLOBAL_SETTINGS 32926
#define ID_GAME_SETTINGS 32928
#define ID_HIDE_SELECTED_SECTORS 32930
#define ID_SHOW_ALL_SECTORS 32931
#define ID_HIDE_UNSELECTED_SECTORS 32932
#define ID_BUTTON32933 32933
#define ID_BUTTON32934 32934
#define ID_BUTTON32935 32935
#define ID_RENDER_TARGETS 32936
#define ID_CALL_MODELER 32938
#define ID_CALL_TEXMAKER 32939
#define ID_VIEW_SETTINGS_AND_UTILITY_BAR 32940
#define ID_VIEW_VIEW_TOOLS_BAR 32941
#define ID_GAME_PLAYER 32943
#define ID_GAME_AUDIO 32944
#define ID_GAME_VIDEO 32945
#define ID_GAME_SELECT_PLAYER 32946
#define ID_SHADOWS_NONE 32947
#define ID_SHADOWS_NO_FX 32948
#define ID_SHADOWS_WITH_EFFECTS 32949
#define ID_SHADOWS_CIRCLE -32586
#define ID_SAVE_AS_VIRTUAL_TREE 32952
#define ID_BUTTON32953 32953
#define ID_MOVE_ANCHORED 32954
#define ID_PASTE_TEXTURE 32957
#define ID_BUTTON32961 32961
#define ID_BUTTON32963 32963
#define ID_BUTTON32964 32964
#define ID_CENTER_ENTITY 32966
#define ID_BROWSE_ENTITIES_MODE 32968
#define ID_NEXT_SELECTED_ENTITY 32970
#define ID_PREVIOUS_SELECTED_ENTITY 32973
#define ID_SCENE_STATISTICS 32974
#define ID_SCENE_RENDERING_TIME 32975
#define ID_RECREATE_TEXTURE 32976
#define ID_SELECT_ALL_IN_VOLUME 32977
#define ID_DROP_MARKER 32979
#define ID_TEST_CONNECTIONS 32980
#define ID_JOIN_LAYERS 32981
#define ID_ALIGN_VOLUME 32983
#define ID_SHOW_TREE_SHORTCUTS 32984
#define ID_MENU_SHORTCUT01 32985
#define ID_MENU_SHORTCUT02 32986
#define ID_MENU_SHORTCUT03 32987
#define ID_MENU_SHORTCUT04 32988
#define ID_MENU_SHORTCUT05 32989
#define ID_MENU_SHORTCUT06 32990
#define ID_MENU_SHORTCUT07 32991
#define ID_MENU_SHORTCUT08 32992
#define ID_MENU_SHORTCUT09 32993
#define ID_MENU_SHORTCUT10 32994
#define ID_STORE_MENU_SHORTCUT01 32995
#define ID_TAKE_SCREEN_SHOOT 32996
#define ID_STORE_MENU_SHORTCUT02 32996
#define ID_STORE_MENU_SHORTCUT03 32997
#define ID_STORE_MENU_SHORTCUT04 32998
#define ID_STORE_MENU_SHORTCUT05 32999
#define ID_STORE_MENU_SHORTCUT06 33000
#define ID_STORE_MENU_SHORTCUT07 33001
#define ID_STORE_MENU_SHORTCUT08 33002
#define ID_STORE_MENU_SHORTCUT09 33003
#define ID_STORE_MENU_SHORTCUT10 33004
#define ID_SELECT_BY_CLASS 33005
#define ID_CURRENT_VIEW_PROPERTIES 33007
#define ID_AUTO_MIP_LEVELING 33008
#define ID_DECADIC_GRID 33009
#define ID_ADD_MORE_PRECISE_MIP 33010
#define ID_ADD_ROUGHER_MIP_LEVEL 33011
#define ID_DELETE_MIP 33012
#define ID_CONSOLE 33015
#define ID_PREVIOUS_MIP 33016
#define ID_NEXT_MIP 33017
#define ID_PREVIOUS_MIP_BRUSH 33019
#define ID_NEXT_MIP_BRUSH 33020
#define ID_VIEW_MIP_TOOLS_BAR 33021
#define ID_WINDOW_CLOSE 33022
#define ID_TOOL_RECREATE_TEXTURE 33024
#define ID_CROSSROAD_FOR_C 33025
#define ID_SET_AS_CSG_TARGET 33027
#define ID_RECREATE_CURRENT_TEXTURE 33028
#define ID_COPY_MAPPING 33029
#define ID_KEY_COPY 33029
#define ID_PASTE_MAPPING 33030
#define ID_KEY_PASTE 33030
#define ID_CREATE_AND_ADD_TEXTURE 33031
#define ID_SELECT_POLYGONS 33033
#define ID_SELECT_POLYGONS_IN_SECTOR 33034
#define ID_SELECT_POLYGONS_IN_WORLD 33035
#define ID_FIND_TEXTURE 33036
#define ID_SELECT_BY_TEXTURE_IN_SECTOR 33037
#define ID_SELECT_BY_TEXTURE_ADJACENT 33038
#define ID_SELECT_POLYGONS_BY_TEXTURE_IN_SELECTED_SECTORS 33039
#define ID_SELECT_POLYGONS_BY_TEXTURE_IN_WORLD 33040
#define ID_SELECT_BY_TEXTURE_IN_SELECTED_SECTORS 33041
#define ID_SELECT_BY_TEXTURE_IN_WORLD 33042
#define ID_CSG_JOIN_ALL_POLYGONS 33044
#define ID_SELECT_BY_COLOR_IN_SECTOR 33045
#define ID_MAXIMIZE_VIEW 33046