-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunctions_c.html
More file actions
1103 lines (1100 loc) · 52.9 KB
/
functions_c.html
File metadata and controls
1103 lines (1100 loc) · 52.9 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.14"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>ManiaScript Reference: Class Members</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
$(document).ready(initResizable);
/* @license-end */</script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">ManiaScript Reference
 <span id="projectnumber">2019-05</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.14 -->
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
var searchBox = new SearchBox("searchBox", "search",false,'Search');
/* @license-end */
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
/* @license-end */</script>
<div id="main-nav"></div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
$(document).ready(function(){initNavTree('functions_c.html','');});
/* @license-end */
</script>
<div id="doc-content">
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="contents">
<div class="textblock">Here is a list of all class members with links to the classes they belong to:</div>
<h3><a id="index_c"></a>- c -</h3><ul>
<li>Callback
: <a class="el" href="struct_c_xml_rpc_event.html#ac5c8386cb8b1da7f28209fd9feb361a5a88a7c8b27f6de4d6eeb6ba293292c551">CXmlRpcEvent</a>
</li>
<li>CallbackArray
: <a class="el" href="struct_c_xml_rpc_event.html#ac5c8386cb8b1da7f28209fd9feb361a5a6cefff748ae7011eba8a768fb41731f9">CXmlRpcEvent</a>
</li>
<li>Camera0
: <a class="el" href="struct_c_map_editor_plugin_event.html#a4c735d4b86e22b5eb6954ee00c8015f4a49ac420f0916d46b823677f133a71e74">CMapEditorPluginEvent</a>
</li>
<li>Camera1
: <a class="el" href="struct_c_map_editor_plugin_event.html#a4c735d4b86e22b5eb6954ee00c8015f4a30460bb812215f05f5a362f13acbf930">CMapEditorPluginEvent</a>
</li>
<li>Camera3
: <a class="el" href="struct_c_map_editor_plugin_event.html#a4c735d4b86e22b5eb6954ee00c8015f4a50d59f5cfa7379ee38702cfc585602ca">CMapEditorPluginEvent</a>
</li>
<li>Camera7
: <a class="el" href="struct_c_map_editor_plugin_event.html#a4c735d4b86e22b5eb6954ee00c8015f4a6c4c5aafb14dcfaf872289b6b9498914">CMapEditorPluginEvent</a>
</li>
<li>Camera9
: <a class="el" href="struct_c_map_editor_plugin_event.html#a4c735d4b86e22b5eb6954ee00c8015f4a399a43314a20029d43db2066f26dea27">CMapEditorPluginEvent</a>
</li>
<li>CameraButtonOff
: <a class="el" href="struct_c_editor_event.html#a991b45df4bb1de4750259553e55ab9b6a8a70addc4bf156469aa894a1968b8835">CEditorEvent</a>
</li>
<li>CameraButtonOn
: <a class="el" href="struct_c_editor_event.html#a991b45df4bb1de4750259553e55ab9b6a2c9e562cc6dc2087f5260cd60daca670">CEditorEvent</a>
</li>
<li>CameraDown
: <a class="el" href="struct_c_map_editor_plugin_event.html#a4c735d4b86e22b5eb6954ee00c8015f4ac0c6d54941b0c394264cb811353ab724">CMapEditorPluginEvent</a>
</li>
<li>CameraEatingInputsScript
: <a class="el" href="struct_c_editor_mesh.html#a8cf872fb79f411044b7c2ed05d0660cc">CEditorMesh</a>
</li>
<li>CameraHAngle
: <a class="el" href="struct_c_map_editor_plugin.html#ad8e55042b39b10fa5293ec548b0a5323">CMapEditorPlugin</a>
</li>
<li>CameraLeft
: <a class="el" href="struct_c_map_editor_plugin_event.html#a4c735d4b86e22b5eb6954ee00c8015f4ac353cb828cf7fe0d81fc9879ef3ff7d3">CMapEditorPluginEvent</a>
</li>
<li>CameraPosition
: <a class="el" href="struct_c_map_editor_plugin.html#a896dddf3f6f7fd307cd1f8562feba77e">CMapEditorPlugin</a>
</li>
<li>CameraRight
: <a class="el" href="struct_c_map_editor_plugin_event.html#a4c735d4b86e22b5eb6954ee00c8015f4a716a8a6183aed63412344318662e4a57">CMapEditorPluginEvent</a>
</li>
<li>CameraTargetPosition
: <a class="el" href="struct_c_map_editor_plugin.html#a3d8b252eadea280d55ad715aecda6c7a">CMapEditorPlugin</a>
</li>
<li>CameraToTargetDistance
: <a class="el" href="struct_c_map_editor_plugin.html#a1314fdb58f0ac045a783319097c175a9">CMapEditorPlugin</a>
</li>
<li>CameraTransitionDuration
: <a class="el" href="struct_c_badge_editor.html#aaa54ebb84a316893b6a3f71a8522ae62">CBadgeEditor</a>
</li>
<li>CameraUp
: <a class="el" href="struct_c_map_editor_plugin_event.html#a4c735d4b86e22b5eb6954ee00c8015f4a3c866f6975ca3af7e7429b0bf06a6b5b">CMapEditorPluginEvent</a>
</li>
<li>CameraVAngle
: <a class="el" href="struct_c_map_editor_plugin.html#a479d91f17bc7663ab0ed32459985161c">CMapEditorPlugin</a>
</li>
<li>CameraZoomNext
: <a class="el" href="struct_c_map_editor_plugin_event.html#a4c735d4b86e22b5eb6954ee00c8015f4a87ef0716499b93998b1d304cc65d1593">CMapEditorPluginEvent</a>
</li>
<li>Campaign_Get()
: <a class="el" href="struct_c_data_file_mgr.html#a897088dbfd2d16de3b7a49c3a5a985ea">CDataFileMgr</a>
</li>
<li>Campaign_GetBuddiesMapRecord()
: <a class="el" href="struct_c_score_mgr.html#af9c7d726bcedb1ad87cebe1b2efbbee3">CScoreMgr</a>
</li>
<li>Campaign_GetBuddiesMapRecordsComparison()
: <a class="el" href="struct_c_score_mgr.html#ad333cf06ab49ecfa37c82495d37d7023">CScoreMgr</a>
</li>
<li>Campaign_GetBuddyMapRecordsComparison()
: <a class="el" href="struct_c_score_mgr.html#a2cc151078316c0838dcf237701fc33b3">CScoreMgr</a>
</li>
<li>Campaign_GetMultiAsyncLevel()
: <a class="el" href="struct_c_score_mgr.html#a048b1b35321376746c575e0a69900e04">CScoreMgr</a>
</li>
<li>Campaign_GetMultiAsyncLevelCount()
: <a class="el" href="struct_c_score_mgr.html#a763b193725765a0d660e3f450cc93adc">CScoreMgr</a>
</li>
<li>Campaign_GetOpponentRecords()
: <a class="el" href="struct_c_score_mgr.html#a82e113891ad6b5dfe69e584907a468e0">CScoreMgr</a>
</li>
<li>Campaign_GetSkillPoints()
: <a class="el" href="struct_c_score_mgr.html#ac150bfb6384e2f19ed722fc301b7aef4">CScoreMgr</a>
</li>
<li>Campaign_IsBuddiesMapRecordDirty()
: <a class="el" href="struct_c_score_mgr.html#ade84cd7c9648aff27d768ddde453beef">CScoreMgr</a>
</li>
<li>CampaignId
: <a class="el" href="struct_c_campaign.html#acb1441e99028a95275f5f963efbebb6f">CCampaign</a>
</li>
<li>CampaignLeaderBoard_GetPlayerCount()
: <a class="el" href="struct_c_score_mgr.html#a1aff9a4efa21dac3d47175f12a4dd7da">CScoreMgr</a>
</li>
<li>CampaignLeaderBoard_GetPlayerList()
: <a class="el" href="struct_c_score_mgr.html#aacd25267cfaf543e90b469bb5d0ea26c">CScoreMgr</a>
</li>
<li>CampaignLeaderBoard_GetPlayerRanking()
: <a class="el" href="struct_c_score_mgr.html#a7824959fe1dbdecf44a3ccc53af172e2">CScoreMgr</a>
</li>
<li>CampaignMedalsCurrent
: <a class="el" href="struct_c_station.html#ac81c5276cdb1564109008c1baee05dd7">CStation</a>
</li>
<li>CampaignMedalsMax
: <a class="el" href="struct_c_station.html#a553a20e5c3cf1eca101c2536a416cc07">CStation</a>
</li>
<li>CampaignMedalsRanking
: <a class="el" href="struct_c_station.html#a3388a911930f2972dd8813b53f9a8b10">CStation</a>
</li>
<li>Campaigns
: <a class="el" href="struct_c_data_file_mgr.html#a04a7e179401d257995f27dbaff20b9aa">CDataFileMgr</a>
</li>
<li>Cancel
: <a class="el" href="struct_c_mania_app_event.html#a11e3f587759eee4fe3c87d9584a4d7a6a2ec4a115031f760179fdc29ae2496f23">CManiaAppEvent</a>
, <a class="el" href="struct_c_ml_script_event.html#a37c233ecfe65713310c257e0a53d54e6a8e29100c2a4dd8e21d035fad3fbb2f14">CMlScriptEvent</a>
, <a class="el" href="struct_c_task_result.html#abde707fdaf46dad1653de82ca4126258">CTaskResult</a>
</li>
<li>CanChangeAvatar
: <a class="el" href="struct_c_user_v2_profile.html#ae60bb0fadaf78dd7b478299439d99b7a">CUserV2Profile</a>
</li>
<li>CanChangeGroups
: <a class="el" href="struct_c_user_v2_profile.html#ae69b93400888f5f50e4d938c0f306a71">CUserV2Profile</a>
</li>
<li>CanChangeNickName
: <a class="el" href="struct_c_user_v2_profile.html#a29d7fededc7b88517a26e93199debb10">CUserV2Profile</a>
</li>
<li>CanChangePassword
: <a class="el" href="struct_c_user_v2_profile.html#af92ff1cf5b90f60bab67583a753f4886">CUserV2Profile</a>
</li>
<li>CanChangeSkin
: <a class="el" href="struct_c_user_v2_profile.html#ab3fcc8c6fe0b95e6459bcc68f2385b5a">CUserV2Profile</a>
</li>
<li>CanChangeZone
: <a class="el" href="struct_c_user_v2_profile.html#a79c2854f90ba01ef0596adbba3db98aa">CUserV2Profile</a>
</li>
<li>CanHaveAnchor
: <a class="el" href="struct_c_block.html#a15c90972fb704def77d8b48599e6ed2d">CBlock</a>
</li>
<li>CanPlaceBlock()
: <a class="el" href="struct_c_map_editor_plugin.html#af121c0aa567a075b32807e3a58abe679">CMapEditorPlugin</a>
</li>
<li>CanPlaceBlock_NoDestruction()
: <a class="el" href="struct_c_map_editor_plugin.html#a2974f3df01638bd88ab5fd379a631b89">CMapEditorPlugin</a>
</li>
<li>CanPlaceMacroblock()
: <a class="el" href="struct_c_map_editor_plugin.html#a7dfd3b316b66e4fc8dd859b9cf4190c6">CMapEditorPlugin</a>
</li>
<li>CanPlaceMacroblock_NoDestruction()
: <a class="el" href="struct_c_map_editor_plugin.html#a86a0f4c023a7c3e471b3e716e1f75e38">CMapEditorPlugin</a>
</li>
<li>CanPlaceMacroblock_NoTerrain()
: <a class="el" href="struct_c_map_editor_plugin.html#a81e98a758c5472987dcd39bd32c17e65">CMapEditorPlugin</a>
</li>
<li>CanPlaceRoadBlocks()
: <a class="el" href="struct_c_map_editor_plugin.html#a22d99f5adc3503227111506b9065e571">CMapEditorPlugin</a>
</li>
<li>CanPlaceTerrainBlocks()
: <a class="el" href="struct_c_map_editor_plugin.html#a6109c6e5d215c1b7db35578c93f22dac">CMapEditorPlugin</a>
</li>
<li>CanPublishFiles
: <a class="el" href="struct_c_title_control.html#a3d53b64d79060f7cbc40c4e74d0e9b81">CTitleControl</a>
</li>
<li>CanRespawnPlayer()
: <a class="el" href="struct_c_sm_mode.html#a8d2fcec83a37f4a3ad867287bf4ae866">CSmMode</a>
</li>
<li>Capture
: <a class="el" href="struct_c_ml_script_ingame.html#a03f99561065dc005e6eeb89489e1d302a327c8527d91ba030930822f77bc77420">CMlScriptIngame</a>
, <a class="el" href="struct_c_u_i_config.html#adbe295669674a531f7a99442f36ae8cfaee9b31d8bac989ea666b4f4e069d961d">CUIConfig</a>
</li>
<li>Captured
: <a class="el" href="struct_c_sm_block_pole.html#ad86606d1622e0fe39aecb43242bf66d1">CSmBlockPole</a>
, <a class="el" href="struct_c_sm_map_gauge.html#ac8ae8693812c7b4f3c539610d38ead98">CSmMapGauge</a>
</li>
<li>CapturedLandmark
: <a class="el" href="struct_c_sm_player.html#ab2318090a580d2f8951cbda860e724aa">CSmPlayer</a>
</li>
<li>CardinalDirections
: <a class="el" href="struct_c_block.html#a71f82ed508c3a5c7d2e2d975991bfb75">CBlock</a>
, <a class="el" href="struct_c_map_editor_plugin.html#a6e0ac52ee0ab64b0df1d01aeed483053">CMapEditorPlugin</a>
</li>
<li>CenteredBar
: <a class="el" href="struct_c_ml_gauge.html#a9310d14d07de0d803533f0c4fb5604e5">CMlGauge</a>
</li>
<li>CenterSpringIntensity
: <a class="el" href="struct_c_vehicle_settings.html#abfeaabd105cb83c5a790907b87c2baf6">CVehicleSettings</a>
</li>
<li>ChallengeEditor
: <a class="el" href="struct_c_title_control.html#a85476bbdda32f803352f933025a9c589aff84e4145a09fa7f1a3f811a6ecb2641">CTitleControl</a>
</li>
<li>ChallengeNames
: <a class="el" href="struct_c_server_info.html#a067d067d2470b80edd64e79e4f26c954">CServerInfo</a>
</li>
<li>ChangeImageUrl()
: <a class="el" href="struct_c_ml_quad.html#add8b0e55843334cea3f9d43b54f6b5a8">CMlQuad</a>
</li>
<li>Chaos
: <a class="el" href="struct_c_editor_mesh.html#abc85e532d322099837fe77712c2fd90ca5e66f93cec93375eb8274414b67692ef">CEditorMesh</a>
</li>
<li>CharPressed
: <a class="el" href="struct_c_ml_script_event.html#ae7233319a32860aad010d35457c089fc">CMlScriptEvent</a>
</li>
<li>Chat
: <a class="el" href="struct_c_u_i_config.html#aeca36d227222274a17ec48dbc0f06c4da7173c1c3844738af668f2c0ce0fa6b66">CUIConfig</a>
</li>
<li>ChatCommand
: <a class="el" href="struct_c_server_plugin_event.html#a8c500907f6d8ee82888eb35cec35ac8da26c27b9ae6014cb57335dff4b6f402dc">CServerPluginEvent</a>
</li>
<li>ChatCommandData
: <a class="el" href="struct_c_server_plugin_event.html#a5727f495a0bc8fe9b92cefc5e3d40730">CServerPluginEvent</a>
</li>
<li>ChatCommandType
: <a class="el" href="struct_c_server_plugin_event.html#af01096fe7642717157ab5590d4eea5a4">CServerPluginEvent</a>
</li>
<li>ChatMessage
: <a class="el" href="struct_c_server_plugin_event.html#a8c500907f6d8ee82888eb35cec35ac8dac66d2eaaf1ed45c23303305053267edc">CServerPluginEvent</a>
</li>
<li>ChatText
: <a class="el" href="struct_c_server_plugin_event.html#a7614744df270fb6cfd4ed3631bbbe922">CServerPluginEvent</a>
</li>
<li>Cheats_Reset()
: <a class="el" href="struct_c_tm_mode.html#af74f038fcddf1bf7a34028cb1c8872e3">CTmMode</a>
</li>
<li>Checkpoint
: <a class="el" href="struct_c_audio_manager.html#a68189bafad245a73f063c39f871b1f7ea2f88ab20557007566179c8554b92bac4">CAudioManager</a>
, <a class="el" href="struct_c_block_model.html#a38143764f437576c59c72aa948fa0daba3f671bf982a3f9a257a8b90f83b64de8">CBlockModel</a>
, <a class="el" href="struct_c_ml_script_ingame.html#a03f99561065dc005e6eeb89489e1d302a9bf3165d739d67f87aec2d7918259a88">CMlScriptIngame</a>
, <a class="el" href="struct_c_u_i_config.html#adbe295669674a531f7a99442f36ae8cfa853b2aa1588ff9b8b43e757f0730208b">CUIConfig</a>
</li>
<li>CheckpointInLap
: <a class="el" href="struct_c_tm_mode_event.html#a2df3e83f2eebfd17b143d2dee602af73">CTmModeEvent</a>
, <a class="el" href="struct_c_tm_race_client_event.html#a5ebf0aa5f277485c6db029107d8bd00b">CTmRaceClientEvent</a>
</li>
<li>CheckpointInRace
: <a class="el" href="struct_c_tm_mode_event.html#a68aa1fb75fafcf4e05ae3e50e2d49f55">CTmModeEvent</a>
, <a class="el" href="struct_c_tm_race_client_event.html#a63183448e33ba9e979bf41885b70fb9f">CTmRaceClientEvent</a>
</li>
<li>Checkpoints
: <a class="el" href="struct_c_tm_result.html#afdc0e08e53ede972a4eac159b8e8e46c">CTmResult</a>
</li>
<li>CheckpointsProgress
: <a class="el" href="struct_c_tm_result.html#a86cd4051657fa8fba601bf8f5723241ea34f9548738edb9827f4ddb4b47b7f869">CTmResult</a>
</li>
<li>Children
: <a class="el" href="struct_c_mode_vehicle_manager.html#ac0a7d6209b172e2d2c91d2c68b32be4da4cf68cf0d19e8c857cb43202c225bc45">CModeVehicleManager</a>
, <a class="el" href="struct_c_parsing_node.html#accc10011c3ae5d40d5733478a59a8d43">CParsingNode</a>
</li>
<li>Chrono
: <a class="el" href="struct_c_editor_module.html#a2f7873156c745148df4f05fc2b57c8c1ab65a494d857f562729d3b1727e6a70ab">CEditorModule</a>
, <a class="el" href="struct_c_module_playground_hud.html#a391104e9c60c8976849dec643d74d132">CModulePlaygroundHud</a>
, <a class="el" href="struct_c_u_i_config_event.html#a62066118dcfb3d3f20ce4388dce7409ca3018827a7ebb44237cf95467e0116800">CUIConfigEvent</a>
</li>
<li>CircIn
: <a class="el" href="struct_c_anim_manager.html#a166e6c79ac8754c37a72cf73f3acfc56a59f1acd5793578ae976faea67a394468">CAnimManager</a>
</li>
<li>CircInOut
: <a class="el" href="struct_c_anim_manager.html#a166e6c79ac8754c37a72cf73f3acfc56ac16b86c304d89eb27b51a2dac6e0f977">CAnimManager</a>
</li>
<li>CircOut
: <a class="el" href="struct_c_anim_manager.html#a166e6c79ac8754c37a72cf73f3acfc56a6973763bf41a3dda2d013686c2ce21d8">CAnimManager</a>
</li>
<li>City
: <a class="el" href="struct_c_team.html#a7a7f2657f513fd049d6d9a8c17e6d7ad">CTeam</a>
</li>
<li>Clan
: <a class="el" href="struct_c_map_bot_path.html#af2d2bae3579907f66d744b77817a5122">CMapBotPath</a>
, <a class="el" href="struct_c_ml_gauge.html#a79ae3e0f290fd66ac9c54cf27c229462">CMlGauge</a>
, <a class="el" href="struct_c_mode_vehicle.html#a7b6934a9c8476c3f3a15af684e266020">CModeVehicle</a>
, <a class="el" href="struct_c_sm_base.html#abaf1d451f9495defc2b2d9c2a9f357c8">CSmBase</a>
, <a class="el" href="struct_c_sm_gauge.html#afbbd4af51fe93b24dcd9c60df19a6442">CSmGauge</a>
, <a class="el" href="struct_c_sm_map_base.html#a2db9dbf482502380074d57d81f7eead2">CSmMapBase</a>
, <a class="el" href="struct_c_sm_map_gate.html#a9609cf535a9493c1183c7cf66a004344">CSmMapGate</a>
, <a class="el" href="struct_c_sm_map_gauge.html#a616225cb6daa412bc9e05d142ccd2efc">CSmMapGauge</a>
</li>
<li>Clan1Score
: <a class="el" href="struct_c_tm_mode.html#ae90b5fde3e0f4b3bfa7a7955e73e24df">CTmMode</a>
</li>
<li>Clan2Score
: <a class="el" href="struct_c_tm_mode.html#abea85b522ed62baf720be5823a373e3d">CTmMode</a>
</li>
<li>ClanScores
: <a class="el" href="struct_c_sm_ml_script_ingame.html#af7600fbb41689f93009d98d2348566a9">CSmMlScriptIngame</a>
, <a class="el" href="struct_c_sm_mode.html#a7df7426c006fd5b67a837ada45f38fdb">CSmMode</a>
, <a class="el" href="struct_c_tm_ml_script_ingame.html#a6bbbf3c2c16a999e57fd19263b0b8f82">CTmMlScriptIngame</a>
, <a class="el" href="struct_c_tm_mode.html#a3635e0306b475df5ef91da9559ecd0ab">CTmMode</a>
</li>
<li>ClansNbAlive
: <a class="el" href="struct_c_sm_mode.html#a05fdba72c680594c766bb1b151b21797">CSmMode</a>
</li>
<li>ClansNbDead
: <a class="el" href="struct_c_sm_mode.html#a07cb03f0f927700e47ea3bf5e49107b6">CSmMode</a>
</li>
<li>ClansNbPlayers
: <a class="el" href="struct_c_sm_mode.html#a9f0528c9276a6327c309b4c8ec3b6b10">CSmMode</a>
, <a class="el" href="struct_c_tm_mode.html#af63e9b3c8bd2b786a706db0b855e7a3f">CTmMode</a>
</li>
<li>ClansNbPlayersAlive
: <a class="el" href="struct_c_sm_mode.html#a15aee3d71209e6dc2992abe2afd68705">CSmMode</a>
</li>
<li>ClansNbTotal
: <a class="el" href="struct_c_sm_mode.html#a62c216e3b503d2da992990e45fe89a25">CSmMode</a>
, <a class="el" href="struct_c_tm_mode.html#a49c32ed34ca930d6d84503fc2346a349">CTmMode</a>
</li>
<li>ClassicMapEditor
: <a class="el" href="struct_c_map_editor_plugin_event.html#a4c735d4b86e22b5eb6954ee00c8015f4afa822051eadde6043c6f0bb4cd613ece">CMapEditorPluginEvent</a>
</li>
<li>Clear()
: <a class="el" href="struct_c_sm_score.html#a35fbe82d00fa680f5338ebbe3f1bdb50">CSmScore</a>
, <a class="el" href="struct_c_tm_score.html#a5dd66d1869c2d3980aabfeeb20522fc5">CTmScore</a>
</li>
<li>ClearAllDelayedSoundsEvents()
: <a class="el" href="struct_c_audio_manager.html#a61431ceb42efd0a09b411c76f9889b35">CAudioManager</a>
</li>
<li>ClearClips()
: <a class="el" href="struct_c_block_clip_list.html#a56b4637480453ee2c7175a21ceef7a82">CBlockClipList</a>
</li>
<li>ClearLayerManialinkAction()
: <a class="el" href="struct_c_u_i_config.html#a53f3c173e77834f21c682cf14f9b8d5d">CUIConfig</a>
</li>
<li>ClearMapMetadata()
: <a class="el" href="struct_c_map_type.html#a181117e0a4f1dd340efd97b78d2fc06c">CMapType</a>
</li>
<li>ClearMessages()
: <a class="el" href="struct_c_u_i_config.html#a3e5d32e9b80c33b6182138b5e807987d">CUIConfig</a>
</li>
<li>ClearRumble()
: <a class="el" href="struct_c_input_pad.html#a0991ff7af7682a9885f238a3b16b8174">CInputPad</a>
</li>
<li>ClearScores()
: <a class="el" href="struct_c_sm_mode.html#a49318b535446bdba40d3a68f8405adb2">CSmMode</a>
</li>
<li>ClearScriptMetadata()
: <a class="el" href="struct_c_macroblock_model.html#ad2f8cfce83e0933d7e77804ea45da8a2">CMacroblockModel</a>
</li>
<li>Client
: <a class="el" href="struct_c_server_plugin_event.html#a783c1bd7ef134795a75e289f41914f9d">CServerPluginEvent</a>
</li>
<li>Client_ComputeMinimap
: <a class="el" href="struct_c_server_plugin.html#a5cc618b0cd912b9a88070ea2c7209d8f">CServerPlugin</a>
</li>
<li>ClientConnected
: <a class="el" href="struct_c_server_plugin_event.html#a8c500907f6d8ee82888eb35cec35ac8da37109c5fa7f28726b767e1c8d0e2e6b3">CServerPluginEvent</a>
</li>
<li>ClientDisconnected
: <a class="el" href="struct_c_server_plugin_event.html#a8c500907f6d8ee82888eb35cec35ac8dad5082082f600a5cb13cb7efa6fa30175">CServerPluginEvent</a>
</li>
<li>ClientManiaAppUrl
: <a class="el" href="struct_c_mode.html#a34193b3a0e1a7828506a429ae014acdc">CMode</a>
</li>
<li>Clients
: <a class="el" href="struct_c_server_plugin.html#a8e19e29a676c7d9a1baa0bc4ab6b7bb1">CServerPlugin</a>
</li>
<li>ClientTitleVersion
: <a class="el" href="struct_c_client.html#a20ac89a0d1ec2433ec4ee3cfc5b6b69f">CClient</a>
</li>
<li>ClientUI
: <a class="el" href="struct_c_mania_app_playground_common.html#a6037b1e2f261105912f5453f7a07e0c0">CManiaAppPlaygroundCommon</a>
, <a class="el" href="struct_c_ml_script_ingame.html#ac6074eac6d796989a1d52f0bfe1d3fa3">CMlScriptIngame</a>
</li>
<li>ClientVersion
: <a class="el" href="struct_c_client.html#a2b812cb99eb05adbfb7ab2d22fbf09c6">CClient</a>
</li>
<li>Clip
: <a class="el" href="struct_c_ml_quad.html#a66ce971ec6287e81c095e77c9e79474eaa2dbf59509c5ce0fee6bc2a92eb776d0">CMlQuad</a>
</li>
<li>ClipboardSet()
: <a class="el" href="struct_c_system_platform.html#a60186c9bf2d1097ccc563c963ea8616b">CSystemPlatform</a>
</li>
<li>ClipId
: <a class="el" href="struct_c_block_clip.html#a2c003a6ac7df295649a80ec955c525db">CBlockClip</a>
</li>
<li>ClipList
: <a class="el" href="struct_c_macroblock_instance.html#a612ba5d3db3deaff2eb3f2885e9e42ff">CMacroblockInstance</a>
</li>
<li>Clips
: <a class="el" href="struct_c_block_clip_list.html#a9d5cd505834e7a54a3536067b38df8a2">CBlockClipList</a>
, <a class="el" href="struct_c_block_unit_model.html#a4885b379851b18f7051fed675b535dc0">CBlockUnitModel</a>
</li>
<li>ClipWindowActive
: <a class="el" href="struct_c_ml_frame.html#a57699f940f49cb6856015c703f734958">CMlFrame</a>
</li>
<li>ClipWindowRelativePosition
: <a class="el" href="struct_c_ml_frame.html#adca759dcb831c3e98ea710f2fcc0e220">CMlFrame</a>
</li>
<li>ClipWindowSize
: <a class="el" href="struct_c_ml_frame.html#a55664b0f23fa42c654a028ff194934d5">CMlFrame</a>
</li>
<li>Closed
: <a class="el" href="struct_c_any_editor_plugin.html#a95a551f512ffb756b4e602487a395688aec2ffe998693a8b37f3e3d082d4de17a">CAnyEditorPlugin</a>
, <a class="el" href="struct_c_editor_mesh.html#aa0f449d9a0a06a79d13bc56a997a4efcad6691ecec1e1875138dcefd8a5295de1">CEditorMesh</a>
</li>
<li>CloseInGameMenu()
: <a class="el" href="struct_c_ml_script_ingame.html#a9b6b60c901312e5a1bc2343591067a48">CMlScriptIngame</a>
</li>
<li>CloseScoresTable()
: <a class="el" href="struct_c_ml_script_ingame.html#a47fdc067b19125fed0c2839930011bda">CMlScriptIngame</a>
</li>
<li>CloseUVEditor
: <a class="el" href="struct_c_editor_event.html#a991b45df4bb1de4750259553e55ab9b6a4f3803d6c051d40c04704bc81a90c0cc">CEditorEvent</a>
</li>
<li>ClubLink
: <a class="el" href="struct_c_user.html#af9715aa01eaf27d180c4d1c75b436667">CUser</a>
</li>
<li>ClubLinkUrl
: <a class="el" href="struct_c_team.html#afc2eb37722c929e674b5f743dcba3a1f">CTeam</a>
</li>
<li>CollectionGroundY
: <a class="el" href="struct_c_map_editor_plugin.html#a724e4ab3f4d9bc0b06193e9d94b49452">CMapEditorPlugin</a>
</li>
<li>CollectionName
: <a class="el" href="struct_c_map.html#a98f558cb01514a2efd1e7b5894e48cdc">CMap</a>
, <a class="el" href="struct_c_map_info.html#afa1488051418d1eedae44d4b6eaf4cc0">CMapInfo</a>
</li>
<li>CollectionSquareHeight
: <a class="el" href="struct_c_map_editor_plugin.html#abf85aa921d747da4b475ad2e1f313ca4">CMapEditorPlugin</a>
</li>
<li>CollectionSquareSize
: <a class="el" href="struct_c_map_editor_plugin.html#a980ff9485e1d0fd76978d670c2ed9994">CMapEditorPlugin</a>
</li>
<li>Color
: <a class="el" href="struct_c_ml_gauge.html#a55ce3a43f0182e1887389ccf7cd00bb7">CMlGauge</a>
, <a class="el" href="struct_c_ml_graph_curve.html#affce2465f0a90491fc5852f3232abc3b">CMlGraphCurve</a>
, <a class="el" href="struct_c_user.html#a0395644ce5f0509f39f69a7fe7079b42">CUser</a>
</li>
<li>Colorize
: <a class="el" href="struct_c_ml_quad.html#a0fa376b9aedec8f78b6082986d8c79b5">CMlQuad</a>
</li>
<li>ColorizedName
: <a class="el" href="struct_c_team.html#a94a0c30ff4cba1f1bb0754a63b946b40">CTeam</a>
</li>
<li>ColorPrimary
: <a class="el" href="struct_c_team.html#a2e9a08a08a72aad45b0b50020907141d">CTeam</a>
</li>
<li>ColorSecondary
: <a class="el" href="struct_c_team.html#ae95a78007bc96a5bbdfe4ad0f3eb18ea">CTeam</a>
</li>
<li>ColorText
: <a class="el" href="struct_c_team.html#a81eea9a70111459b0a46be0b64b85ae6">CTeam</a>
</li>
<li>Combo
: <a class="el" href="struct_c_ml_script_ingame.html#a03f99561065dc005e6eeb89489e1d302aca3d59549524b793f4508ad6621fb07f">CMlScriptIngame</a>
, <a class="el" href="struct_c_tm_mode_event.html#a110c25567d633d7e718aa3e2a26f8a2f">CTmModeEvent</a>
, <a class="el" href="struct_c_u_i_config.html#adbe295669674a531f7a99442f36ae8cfa499013f525cf541c532d9b8117c57433">CUIConfig</a>
</li>
<li>CommandName
: <a class="el" href="struct_c_sm_mode_event.html#a227f464b1fe4c68a10a9122e4992d89f">CSmModeEvent</a>
, <a class="el" href="struct_c_tm_mode_event.html#a92947bd86586e0f2986c30be96ba9a0b">CTmModeEvent</a>
</li>
<li>CommandValueBoolean
: <a class="el" href="struct_c_sm_mode_event.html#af2266da17af143c5abc7317b10a27663">CSmModeEvent</a>
, <a class="el" href="struct_c_tm_mode_event.html#a7f39d66869b3bd454fcad406659f6d55">CTmModeEvent</a>
</li>
<li>CommandValueInteger
: <a class="el" href="struct_c_sm_mode_event.html#a8fd85beba4a553a85007731e9edb4f54">CSmModeEvent</a>
, <a class="el" href="struct_c_tm_mode_event.html#ae16e1877246bd6b418602eb63720bd60">CTmModeEvent</a>
</li>
<li>CommandValueReal
: <a class="el" href="struct_c_sm_mode_event.html#a840a0de615a8baa08a3d0d868f615ca1">CSmModeEvent</a>
, <a class="el" href="struct_c_tm_mode_event.html#ab01419bedea79352d632a87500608f85">CTmModeEvent</a>
</li>
<li>CommandValueText
: <a class="el" href="struct_c_sm_mode_event.html#af167393c0e34d686ee2ba93df6fa96ef">CSmModeEvent</a>
, <a class="el" href="struct_c_tm_mode_event.html#a939cfc12ba9cc89606f7e383a8ccb656">CTmModeEvent</a>
</li>
<li>Comment
: <a class="el" href="struct_c_server_info.html#a725b047ad715659fe00a4ff0cbab7d69">CServerInfo</a>
</li>
<li>Comments
: <a class="el" href="struct_c_map.html#ad5b33765ae3e1c1f4400b027937371a6">CMap</a>
, <a class="el" href="struct_c_map_info.html#ae909b16e8d6a3f68ef6cfea071d93e76">CMapInfo</a>
</li>
<li>Compare()
: <a class="el" href="struct_c_tm_result.html#a7c8af7b7413230aa8a5390c86b3ab01a">CTmResult</a>
</li>
<li>CompatibleMapTypes
: <a class="el" href="struct_c_task_result___mode_info.html#a322796db083f83be06bd1155be5416dc">CTaskResult_ModeInfo</a>
</li>
<li>ComponentLayer
: <a class="el" href="struct_c_module_menu_component.html#a887249cabd993a110ae94fb17fc2ae95">CModuleMenuComponent</a>
</li>
<li>Components
: <a class="el" href="struct_c_module_menu_layer.html#ad9627e96136bb9072d70eeceba3c9596">CModuleMenuLayer</a>
</li>
<li>Compose_Array_Close()
: <a class="el" href="struct_c_parsing_manager.html#a857ddfe2e047b88026eb2fce001306d1">CParsingManager</a>
</li>
<li>Compose_Array_Open()
: <a class="el" href="struct_c_parsing_manager.html#acaa57fc902d1e16819fb6a1557c5c07a">CParsingManager</a>
</li>
<li>Compose_Attribute()
: <a class="el" href="struct_c_parsing_manager.html#a49f1b783f81614e28ef443d39872bfe2">CParsingManager</a>
</li>
<li>Compose_Destroy()
: <a class="el" href="struct_c_parsing_manager.html#a3475e5815a0d0208bae3c86ec3b2e0ec">CParsingManager</a>
</li>
<li>Compose_End()
: <a class="el" href="struct_c_parsing_manager.html#a7db1b9296a7ab3e73c3286ede7f32d39">CParsingManager</a>
</li>
<li>Compose_GetResult()
: <a class="el" href="struct_c_parsing_manager.html#a95e826b9a850515535214a264fc043de">CParsingManager</a>
</li>
<li>Compose_Node_Close()
: <a class="el" href="struct_c_parsing_manager.html#a1fe6710849efc4fec070243c9c2ca23d">CParsingManager</a>
</li>
<li>Compose_Node_Open()
: <a class="el" href="struct_c_parsing_manager.html#a6d7c7ae2e2f5c44a5dea6792ee9e40c4">CParsingManager</a>
</li>
<li>Compose_Start_Json()
: <a class="el" href="struct_c_parsing_manager.html#a8eabb7e0c2fe225ad76dba059e42a015">CParsingManager</a>
</li>
<li>Compose_Start_Xml()
: <a class="el" href="struct_c_parsing_manager.html#a9a0eb699588c515811ed204f9d69aed0">CParsingManager</a>
</li>
<li>Compose_Value()
: <a class="el" href="struct_c_parsing_manager.html#a73098ac9bf806c1074222728ac0bcb87">CParsingManager</a>
</li>
<li>ComputeHeight()
: <a class="el" href="struct_c_ml_label.html#a32bd47ab9c8960a6215ef0ea4bd26dc7">CMlLabel</a>
</li>
<li>ComputeShadows()
: <a class="el" href="struct_c_map_editor_plugin.html#ad2caacef5d00cb3fc9a2216d48695fa6">CMapEditorPlugin</a>
</li>
<li>ComputeWidth()
: <a class="el" href="struct_c_ml_label.html#adbd10ca96e0756c8191ef9ba5f33695f">CMlLabel</a>
</li>
<li>Consumable1
: <a class="el" href="struct_c_sm_mode.html#a0db40aa4cad21ff7acfb15363031b302a96ec52240f975c659e0dd143f464c135">CSmMode</a>
, <a class="el" href="struct_c_sm_mode_event.html#a64c617aa1d78e9f5c58b194031224082aff46a3596249e4b7399023ef7d2dd2e0">CSmModeEvent</a>
</li>
<li>Consumable2
: <a class="el" href="struct_c_sm_mode.html#a0db40aa4cad21ff7acfb15363031b302a6512c9c642114574f06ea3bece293a74">CSmMode</a>
, <a class="el" href="struct_c_sm_mode_event.html#a64c617aa1d78e9f5c58b194031224082ab50770d16f451c440ba7eed82ffca27e">CSmModeEvent</a>
</li>
<li>Context
: <a class="el" href="struct_c_task_result___map_record.html#a3484867b4b3126a4ad9f4ba0b0fd44e3">CTaskResult_MapRecord</a>
</li>
<li>Context_IsActive()
: <a class="el" href="struct_c_editor_main_plugin.html#a939d1b7bc18f17a6efcfa2639ad31e37">CEditorMainPlugin</a>
</li>
<li>Context_SetActive()
: <a class="el" href="struct_c_editor_main_plugin.html#ad214aeb3c53487e7d78bc3e01fc94c50">CEditorMainPlugin</a>
</li>
<li>ContextAdd()
: <a class="el" href="struct_c_module_playground_hud_model.html#a74fe5502ad609de9038ee8b6d91ec336">CModulePlaygroundHudModel</a>
</li>
<li>ContextId
: <a class="el" href="struct_c_sm_action_event.html#a13c4dd6b32d6135682bf6585bc014e7f">CSmActionEvent</a>
</li>
<li>ContextRemove()
: <a class="el" href="struct_c_module_playground_hud_model.html#a2b1811f526e37a5d629af9a50802fb19">CModulePlaygroundHudModel</a>
</li>
<li>ContextSetId()
: <a class="el" href="struct_c_module_playground_hud_model.html#acbe52c3d9ea29efa019b3e909f67e2a3">CModulePlaygroundHudModel</a>
</li>
<li>ContextsIds
: <a class="el" href="struct_c_module_playground_hud_model.html#acd23d3f1126ee90385f0183992844c4a">CModulePlaygroundHudModel</a>
</li>
<li>Control
: <a class="el" href="struct_c_ml_script_event.html#a9bbfc12003b31931f8937e2397861ac2">CMlScriptEvent</a>
</li>
<li>ControlClasses
: <a class="el" href="struct_c_ml_control.html#a6e2852bfacccd44d555bd6e1fc798f5b">CMlControl</a>
</li>
<li>ControlCoef
: <a class="el" href="struct_c_tm_ml_player.html#a32f0b6bed4478b8c3837132892020fdc">CTmMlPlayer</a>
, <a class="el" href="struct_c_tm_player.html#a557817ca43daad310404577045d901ab">CTmPlayer</a>
</li>
<li>ControlId
: <a class="el" href="struct_c_ml_control.html#a6b8e9390651d3c17ceaa90df1494c4ab">CMlControl</a>
, <a class="el" href="struct_c_ml_script_event.html#a58496661f26a67810d2d6ed105d4342d">CMlScriptEvent</a>
</li>
<li>ControllerId
: <a class="el" href="struct_c_input_pad.html#a81cf328886c3e23f4317833c36045797">CInputPad</a>
</li>
<li>Controls
: <a class="el" href="struct_c_ml_frame.html#a51b41d7e6f5385f4b09f07c42d4a5c52">CMlFrame</a>
</li>
<li>Cooldown
: <a class="el" href="struct_c_action_interface.html#addffac003023f3766aa477f77df198eb">CActionInterface</a>
, <a class="el" href="struct_c_sm_action.html#a446d543f04ffdb199640cee158ea4c7b">CSmAction</a>
</li>
<li>Cooldown_IsReady()
: <a class="el" href="struct_c_sm_action.html#a016880205c3b2005369c71a8a6850863">CSmAction</a>
</li>
<li>Cooldown_Start()
: <a class="el" href="struct_c_sm_action.html#a79bd48c3df7804cd1d3dc92eebab0da4">CSmAction</a>
</li>
<li>CooldownStartTime
: <a class="el" href="struct_c_action_interface.html#a1dd9d56ca2acd09e7ff713d2eb1d45cf">CActionInterface</a>
</li>
<li>CoopCheckpointCurController
: <a class="el" href="struct_c_tm_ml_player.html#abce4cfc007d4155d62e4f72e0723b270">CTmMlPlayer</a>
</li>
<li>CoopSymbiosysPercentTotal
: <a class="el" href="struct_c_tm_ml_player.html#a29adcece1e3e5ab6c48a52566171392b">CTmMlPlayer</a>
</li>
<li>Coord
: <a class="el" href="struct_c_block.html#a1da00af61e7275b7b67e5c4987266868">CBlock</a>
, <a class="el" href="struct_c_block_clip.html#a99087d2f54ad3ee66f4e84329892edb9">CBlockClip</a>
, <a class="el" href="struct_c_macroblock_instance.html#a26878afb2cd2dd414bc537601da35a4c">CMacroblockInstance</a>
</li>
<li>CoordsMax
: <a class="el" href="struct_c_ml_graph.html#ab1cb269faa0978ebf887154ae19daf3e">CMlGraph</a>
</li>
<li>CoordsMin
: <a class="el" href="struct_c_ml_graph.html#a4c4502c52b21dd7d091e06c2ad823b58">CMlGraph</a>
</li>
<li>CopperPrice
: <a class="el" href="struct_c_map.html#a85f1394430608079d0e90c7c214ba4c0">CMap</a>
, <a class="el" href="struct_c_map_info.html#aa2eba22c725c2fade7ca491f7bb5c8c9">CMapInfo</a>
</li>
<li>Copy()
: <a class="el" href="struct_c_editor_mesh.html#a7523e3e8555035379b66ec52cc3f4ebc">CEditorMesh</a>
</li>
<li>CopyPaste
: <a class="el" href="struct_c_map_editor_plugin.html#a588b4a11b38fdde8d041e9c055d098bfa338814421ee8ed5dbc48a67c57c69c7b">CMapEditorPlugin</a>
</li>
<li>CopyPaste_AddOrSubSelection()
: <a class="el" href="struct_c_map_editor_plugin.html#a4d443c92b3c8339db8d56efd08254114">CMapEditorPlugin</a>
</li>
<li>CopyPaste_Copy()
: <a class="el" href="struct_c_map_editor_plugin.html#a158ce28fbca57d4513dbfa00ae6ee23a">CMapEditorPlugin</a>
</li>
<li>CopyPaste_Cut()
: <a class="el" href="struct_c_map_editor_plugin.html#a76047424a7f0242fad1781c41dd9f061">CMapEditorPlugin</a>
</li>
<li>CopyPaste_Remove()
: <a class="el" href="struct_c_map_editor_plugin.html#aaf7ff0527532809a23715f496c128700">CMapEditorPlugin</a>
</li>
<li>CopyPaste_ResetSelection()
: <a class="el" href="struct_c_map_editor_plugin.html#a4fc05667c94a7485e997f83c2e4055d2">CMapEditorPlugin</a>
</li>
<li>CopyPaste_SelectAll()
: <a class="el" href="struct_c_map_editor_plugin.html#a6cc635f1c2a9bd723244118de5b55b98">CMapEditorPlugin</a>
</li>
<li>CopyPaste_Symmetrize()
: <a class="el" href="struct_c_map_editor_plugin.html#a0627bd8292d2ade71924deeab9c03d15">CMapEditorPlugin</a>
</li>
<li>CopyServerLinkToClipBoard()
: <a class="el" href="struct_c_ml_script_ingame.html#ac7fd3683936ece2a9a340a9bc2c6ef23">CMlScriptIngame</a>
</li>
<li>CopyVoxels()
: <a class="el" href="struct_c_editor_mesh.html#a59e3f35eff6e4de735b6365b267a3f77">CEditorMesh</a>
</li>
<li>Corkscrew
: <a class="el" href="struct_c_tm_ml_player.html#a477970c1f9ef2d9a294bff1ea2edf227abe7916e2179dd039ff57f64187558768">CTmMlPlayer</a>
, <a class="el" href="struct_c_tm_mode_event.html#ac9740bcb1c7d12ee789cb98aba09d9faa203f39153ebadb69bd82489969cb2575">CTmModeEvent</a>
</li>
<li>Count
: <a class="el" href="struct_c_task_result___natural_leader_board_info_list.html#a659aa42e3db898ce3e6b7a43f643a09e">CTaskResult_NaturalLeaderBoardInfoList</a>
, <a class="el" href="struct_c_task_result___real_leader_board_info_list.html#a40d4ba384fc6d3d22e8c8c9b55e5019e">CTaskResult_RealLeaderBoardInfoList</a>
</li>
<li>Countdown
: <a class="el" href="struct_c_audio_manager.html#a68189bafad245a73f063c39f871b1f7ea9808ce3924397dfeaf171bba267c74ea">CAudioManager</a>
</li>
<li>CountDown
: <a class="el" href="struct_c_tm_mode.html#a87cacebe33a75308051c0471368c8d05a4b0fd8a2980f5e849c0b22a758f06782">CTmMode</a>
</li>
<li>CountdownCoord
: <a class="el" href="struct_c_u_i_config.html#ad6cf10d1b1f0f53bcaec6cbb5da4b1db">CUIConfig</a>
</li>
<li>CountdownEndTime
: <a class="el" href="struct_c_u_i_config.html#a10ff8e6de6ba970d9beea81a0e1e64ff">CUIConfig</a>
</li>
<li>CountryFlagUrl
: <a class="el" href="struct_c_user.html#a1529db151c3e889c0e820bbd7dbb80bf">CUser</a>
</li>
<li>Create()
: <a class="el" href="struct_c_parsing_manager.html#a3bdadcb2b9a6f9b1ef61bcf763edcb9d">CParsingManager</a>
</li>
<li>CreateAndAddClip()
: <a class="el" href="struct_c_block_clip_list.html#a0fcc3a0b3a3936ea6af66f94353542b0">CBlockClipList</a>
</li>
<li>CreateBotPlayer()
: <a class="el" href="struct_c_sm_mode.html#a460d0bdcc0d449dcdd7959d191654949">CSmMode</a>
</li>
<li>CreatedWithPartyEditor
: <a class="el" href="struct_c_map_info.html#a678cbac771d5727d3628dfce4abeb7cc">CMapInfo</a>
</li>
<li>CreatedWithSimpleEditor
: <a class="el" href="struct_c_map_info.html#aae84ebbbb33a259d3c919b5789e03ef0">CMapInfo</a>
</li>
<li>CreateFixedClipList()
: <a class="el" href="struct_c_map_editor_plugin.html#a2668750ba5efca1a8c1f3171ba7bc82e">CMapEditorPlugin</a>
</li>
<li>CreateFrameClipList()
: <a class="el" href="struct_c_map_editor_plugin.html#a96ea13ff403d03181a9ba874cfaf532e">CMapEditorPlugin</a>
</li>
<li>CreateGet()
: <a class="el" href="struct_c_http_manager.html#a2dd784250d9e2027fc49eb07d3e18940">CHttpManager</a>
</li>
<li>CreateMacroblockInstance()
: <a class="el" href="struct_c_map_editor_plugin.html#abed00a27365f5da1940c8e569e4c6124">CMapEditorPlugin</a>
</li>
<li>CreateMusic()
: <a class="el" href="struct_c_audio_manager.html#ab292a8285ddf155c523cec597cf40528">CAudioManager</a>
</li>
<li>CreatePost()
: <a class="el" href="struct_c_http_manager.html#a4ac0b5e57abd363e2c11aa71879da565">CHttpManager</a>
</li>
<li>CreatePostFile()
: <a class="el" href="struct_c_http_manager.html#adceaf508877f901c949693f1a7aba2c6">CHttpManager</a>
</li>
<li>CreateServer()
: <a class="el" href="struct_c_title_control.html#ad6337f8ce4775e4f6677eba92318e81d">CTitleControl</a>
</li>
<li>CreateSound()
: <a class="el" href="struct_c_audio_manager.html#a69f6d45178e548e7fded8b3da55d9c79">CAudioManager</a>
</li>
<li>CreateVideo()
: <a class="el" href="struct_c_video_manager.html#a9d0177133f35c4f2eb96cbeaf387fab9">CVideoManager</a>
</li>
<li>Creation
: <a class="el" href="struct_c_editor_mesh.html#a6714e5bf21b474ab2bdf740405c3dd3babded02af5327f2f4712e061b6b4391d6">CEditorMesh</a>
</li>
<li>CreationElemsCount
: <a class="el" href="struct_c_editor_mesh.html#af9f9386c339bb0bf74112919384e6c77">CEditorMesh</a>
</li>
<li>CreatorId
: <a class="el" href="struct_c_pack_creator_pack.html#adf667227f4fa649119c1aabdf6fcd442">CPackCreatorPack</a>
</li>
<li>Cubic
: <a class="el" href="struct_c_editor_mesh.html#a7547cc34ad474355f44babec40d2c8b3ab9d41cdbef27d40ee3b056f2bf76b847">CEditorMesh</a>
</li>
<li>CubicIn
: <a class="el" href="struct_c_anim_manager.html#a166e6c79ac8754c37a72cf73f3acfc56ab78b3319eeecf76d5ff36d6c12f6e828">CAnimManager</a>
</li>
<li>CubicInOut
: <a class="el" href="struct_c_anim_manager.html#a166e6c79ac8754c37a72cf73f3acfc56aa2a7b350d504f67e76caa8cf6ad22b2a">CAnimManager</a>
</li>
<li>CubicOut
: <a class="el" href="struct_c_anim_manager.html#a166e6c79ac8754c37a72cf73f3acfc56a966bb1c833c401fe7c9ba5db7f3aaef3">CAnimManager</a>
</li>
<li>CurAmmo
: <a class="el" href="struct_c_sm_player.html#a675b66abf87713119a1d0e9562586a09">CSmPlayer</a>
</li>
<li>CurAmmoMax
: <a class="el" href="struct_c_sm_player.html#a2901bf47b8cf2b53727dccfd5975240a">CSmPlayer</a>
</li>
<li>CurAmmoUnit
: <a class="el" href="struct_c_sm_player.html#a0ebc4841dfd45e5d6acc5e17eb31689a">CSmPlayer</a>
</li>
<li>CurCheckpointLapTime
: <a class="el" href="struct_c_tm_ml_player.html#a558211b182da3b4fe3ae6036220d2b91">CTmMlPlayer</a>
</li>
<li>CurCheckpointRaceTime
: <a class="el" href="struct_c_tm_ml_player.html#a3963a07789bbd2377d2386bafd467ef5">CTmMlPlayer</a>
</li>
<li>CurLap
: <a class="el" href="struct_c_tm_ml_player.html#ad0d40130363194be4e52366e2222d4ce">CTmMlPlayer</a>
, <a class="el" href="struct_c_tm_player.html#a68addaf70440f3ab8b87084d0309fc7f">CTmPlayer</a>
</li>
<li>CurMap
: <a class="el" href="struct_c_ml_browser.html#a355df55aa48f4e455db31205752e05f1">CMlBrowser</a>
</li>
<li>CurMapIndex
: <a class="el" href="struct_c_server_plugin.html#a36dc02025859f8479282b529993dc445">CServerPlugin</a>
</li>
<li>CurPlayerCamera
: <a class="el" href="struct_c_tm_ml_script_ingame.html#a29b18645f484894747e2484d6ad0810d">CTmMlScriptIngame</a>
</li>
<li>CurRace
: <a class="el" href="struct_c_tm_ml_player.html#a6aa8e5971f8be8b9f1a3dd26af60128a">CTmMlPlayer</a>
, <a class="el" href="struct_c_tm_player.html#ada614548a826350184bc406f69e21ec3">CTmPlayer</a>
</li>
<li>CurRaceContinuousRank
: <a class="el" href="struct_c_tm_ml_player.html#ab1b51af3bb168bb260f8f22628fb35bc">CTmMlPlayer</a>
</li>
<li>CurrentClan
: <a class="el" href="struct_c_sm_player.html#a5e46508b511d1a69b5bb5307ef47a98e">CSmPlayer</a>
, <a class="el" href="struct_c_tm_ml_player.html#a745405b507158a2b36c01b77d912e69c">CTmMlPlayer</a>
, <a class="el" href="struct_c_tm_player.html#acf86603b6f4c550dbb3f8f16c2259596">CTmPlayer</a>
</li>
<li>CurrentInteraction
: <a class="el" href="struct_c_editor_mesh.html#a7eda5daf503636246fa476081d52ebc6">CEditorMesh</a>
</li>
<li>CurrentLocalDate
: <a class="el" href="struct_c_system_platform.html#a23d8a30f1e00b3dc0b21b5971301d269">CSystemPlatform</a>
</li>
<li>CurrentLocalDateText
: <a class="el" href="struct_c_system_platform.html#a4745e3287b1258bc37d526846a34112c">CSystemPlatform</a>
</li>
<li>CurrentNbLaps
: <a class="el" href="struct_c_tm_ml_player.html#aaa750a7dec575551bee7096d65518a9a">CTmMlPlayer</a>
, <a class="el" href="struct_c_tm_player.html#a5baa30024f0afae33e9046dfc6e3a979">CTmPlayer</a>
</li>
<li>CurrentPack
: <a class="el" href="struct_c_pack_creator.html#a22e5d4f47f540fff304537b03162e007">CPackCreator</a>
</li>
<li>CurrentServerDesc
: <a class="el" href="struct_c_ml_script_ingame.html#ab985518d90821a6ef750a9dca19faedf">CMlScriptIngame</a>
</li>
<li>CurrentServerJoinLink
: <a class="el" href="struct_c_ml_script_ingame.html#a824ff94d9655e649e71979512ac5ad5b">CMlScriptIngame</a>
</li>
<li>CurrentServerLogin
: <a class="el" href="struct_c_ml_script_ingame.html#a1af61038ed7d54a4df0a9537a685882e">CMlScriptIngame</a>
</li>
<li>CurrentServerModeName
: <a class="el" href="struct_c_ml_script_ingame.html#a995bc4391be3f5ee766305d6904d3d09">CMlScriptIngame</a>
</li>
<li>CurrentServerName
: <a class="el" href="struct_c_ml_script_ingame.html#a348e5f4e77337dc0e22a4f0b1aa90860">CMlScriptIngame</a>
</li>
<li>CurrentShadowsQuality
: <a class="el" href="struct_c_map_editor_plugin.html#a8e6a76dcbbd70f4510feace300b5b3da">CMapEditorPlugin</a>
</li>
<li>CurrentTime
: <a class="el" href="struct_c_ml_script.html#af02596abb5307d987df80bee5d9a8ad0">CMlScript</a>
</li>
<li>CurrentTimezone
: <a class="el" href="struct_c_system_platform.html#a7259c69480f1403c255fad49eab12750">CSystemPlatform</a>
</li>
<li>CursorBlockModel
: <a class="el" href="struct_c_map_editor_plugin.html#aca921e37fbb257675269c4c7fed1d622">CMapEditorPlugin</a>
</li>
<li>CursorBrightnessFactor
: <a class="el" href="struct_c_map_editor_plugin.html#ab9ebf31483918ba1f4c0d173834df1a8">CMapEditorPlugin</a>
</li>
<li>CursorChange
: <a class="el" href="struct_c_map_editor_plugin_event.html#a01feeb2cc5bc4ea76858c05d14354e3da772b6492f99c70b03068d672ee860b4c">CMapEditorPluginEvent</a>
</li>
<li>CursorCoord
: <a class="el" href="struct_c_map_editor_plugin.html#a03cf5a9a7bdbe4cae03a624f0c4255ac">CMapEditorPlugin</a>
</li>
<li>CursorDelete
: <a class="el" href="struct_c_map_editor_plugin_event.html#a4c735d4b86e22b5eb6954ee00c8015f4aa01da768ef0639078f8d3dd3c34b6f8d">CMapEditorPluginEvent</a>
</li>
<li>CursorDir
: <a class="el" href="struct_c_map_editor_plugin.html#a9dc64e52eae742a4b4ad39ff4ec2a391">CMapEditorPlugin</a>
</li>
<li>CursorDown
: <a class="el" href="struct_c_map_editor_plugin_event.html#a4c735d4b86e22b5eb6954ee00c8015f4a039ff38e7e1990816a30a04f5489d206">CMapEditorPluginEvent</a>
</li>
<li>CursorLeft
: <a class="el" href="struct_c_map_editor_plugin_event.html#a4c735d4b86e22b5eb6954ee00c8015f4ae8418bb7703fac3ab0d7cd0242a3d29d">CMapEditorPluginEvent</a>
</li>
<li>CursorLower
: <a class="el" href="struct_c_map_editor_plugin_event.html#a4c735d4b86e22b5eb6954ee00c8015f4a7d99ef03b61cff1f32048447a28ad771">CMapEditorPluginEvent</a>
</li>
<li>CursorMacroblockModel
: <a class="el" href="struct_c_map_editor_plugin.html#a638da3ce03a31ebdde322ce73bdf5047">CMapEditorPlugin</a>
</li>
<li>CursorPick
: <a class="el" href="struct_c_map_editor_plugin_event.html#a4c735d4b86e22b5eb6954ee00c8015f4a68195f6fbb8dd223389446ae0ccb196a">CMapEditorPluginEvent</a>
</li>
<li>CursorPlace
: <a class="el" href="struct_c_map_editor_plugin_event.html#a4c735d4b86e22b5eb6954ee00c8015f4a74746bb3c48c2537be8ffea360013a8e">CMapEditorPluginEvent</a>
</li>
<li>CursorRaise
: <a class="el" href="struct_c_map_editor_plugin_event.html#a4c735d4b86e22b5eb6954ee00c8015f4a47644ecddde430e19cb1dcd33fcc1f61">CMapEditorPluginEvent</a>
</li>
<li>CursorRight
: <a class="el" href="struct_c_map_editor_plugin_event.html#a4c735d4b86e22b5eb6954ee00c8015f4a11517a00150a1a160ba7adf1577bd016">CMapEditorPluginEvent</a>
</li>
<li>CursorSelectionBegin
: <a class="el" href="struct_c_map_editor_plugin_event.html#a01feeb2cc5bc4ea76858c05d14354e3da4e6f3dd84febdadba7ec22c04cb32043">CMapEditorPluginEvent</a>
</li>
<li>CursorSelectionEnd
: <a class="el" href="struct_c_map_editor_plugin_event.html#a01feeb2cc5bc4ea76858c05d14354e3dabf1eca22e6806879643dc46cea6de649">CMapEditorPluginEvent</a>
</li>
<li>CursorTerrainBlockModel
: <a class="el" href="struct_c_map_editor_plugin.html#a7de502b92f4b636fd1382d64c7e41c3e">CMapEditorPlugin</a>
</li>
<li>CursorTurn
: <a class="el" href="struct_c_map_editor_plugin_event.html#a4c735d4b86e22b5eb6954ee00c8015f4a81a05aaa27d850d39da323e39a61e37f">CMapEditorPluginEvent</a>
</li>
<li>CursorTurnSlightly
: <a class="el" href="struct_c_map_editor_plugin_event.html#a4c735d4b86e22b5eb6954ee00c8015f4ab47d82ef9246343dd5fdde4016f839e0">CMapEditorPluginEvent</a>
</li>
<li>CursorTurnSlightlyAntiClockwise
: <a class="el" href="struct_c_map_editor_plugin_event.html#a4c735d4b86e22b5eb6954ee00c8015f4a51acd9fb0c5b4a1c75721e594bfdfa65">CMapEditorPluginEvent</a>
</li>
<li>CursorUp
: <a class="el" href="struct_c_map_editor_plugin_event.html#a4c735d4b86e22b5eb6954ee00c8015f4ac284cb82441540d6fa432668e3d70c66">CMapEditorPluginEvent</a>
</li>
<li>CurTriggerIndex
: <a class="el" href="struct_c_tm_ml_player.html#ab799c07e73c1aef79c1c7f0fdc79b79a">CTmMlPlayer</a>
, <a class="el" href="struct_c_tm_player.html#a32f510347adcb928460eaaab74cd5033">CTmPlayer</a>
</li>
<li>Curve2D
: <a class="el" href="struct_c_editor_mesh.html#a7547cc34ad474355f44babec40d2c8b3a5696bd5fd989b8f8af87a4d5d1120b59">CEditorMesh</a>
</li>
<li>Curve2DPolygon()
: <a class="el" href="struct_c_editor_mesh.html#a80769e541e7c7129a84e83ce42dc0330">CEditorMesh</a>
</li>
<li>Curves
: <a class="el" href="struct_c_ml_graph.html#abdc79cf3e3d909cdea8ac47f8ef3d284">CMlGraph</a>
</li>
<li>CurWeapon
: <a class="el" href="struct_c_sm_player.html#a514127a0284a44c84d55f8b122cc9a43">CSmPlayer</a>
</li>
<li>Custom1
: <a class="el" href="struct_c_ml_script_ingame.html#a03f99561065dc005e6eeb89489e1d302a4456789c0aec2eff1cb20f0992192e22">CMlScriptIngame</a>
, <a class="el" href="struct_c_u_i_config.html#adbe295669674a531f7a99442f36ae8cfa7b2811ee649f48f816f810cc1e7bc389">CUIConfig</a>
</li>
<li>Custom2
: <a class="el" href="struct_c_ml_script_ingame.html#a03f99561065dc005e6eeb89489e1d302ac61d7d57c762eb83dac5253a3ee55fab">CMlScriptIngame</a>
, <a class="el" href="struct_c_u_i_config.html#adbe295669674a531f7a99442f36ae8cfa97ca25dadd55736e3726fefe288c1469">CUIConfig</a>
</li>
<li>Custom3
: <a class="el" href="struct_c_ml_script_ingame.html#a03f99561065dc005e6eeb89489e1d302ab99cee233f0e278edc8c6456b148df2e">CMlScriptIngame</a>
, <a class="el" href="struct_c_u_i_config.html#adbe295669674a531f7a99442f36ae8cfa42dc313389cf3243c66d3a9ab44fcfbc">CUIConfig</a>
</li>
<li>Custom4
: <a class="el" href="struct_c_ml_script_ingame.html#a03f99561065dc005e6eeb89489e1d302a78adcbf22ae0a58fea1c512189440957">CMlScriptIngame</a>
, <a class="el" href="struct_c_u_i_config.html#adbe295669674a531f7a99442f36ae8cfa9b346e96e4ccda344359d4687cb30de6">CUIConfig</a>
</li>