This repository has been archived by the owner on Jun 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 60
/
SDK.hpp
1068 lines (1064 loc) · 54 KB
/
SDK.hpp
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
#pragma once
// PlayerUnknown's Battlegrounds SDK
#include <set>
#include <string>
#include "SDK/PUBG_Basic.hpp"
#include "SDK/PUBG_CoreUObject_structs.hpp"
#include "SDK/PUBG_CoreUObject_classes.hpp"
#include "SDK/PUBG_CoreUObject_parameters.hpp"
#include "SDK/PUBG_SlateCore_structs.hpp"
#include "SDK/PUBG_SlateCore_classes.hpp"
#include "SDK/PUBG_SlateCore_parameters.hpp"
#include "SDK/PUBG_TslCommon_structs.hpp"
#include "SDK/PUBG_TslCommon_classes.hpp"
#include "SDK/PUBG_TslCommon_parameters.hpp"
#include "SDK/PUBG_InputCore_structs.hpp"
#include "SDK/PUBG_InputCore_classes.hpp"
#include "SDK/PUBG_InputCore_parameters.hpp"
#include "SDK/PUBG_PacketHandler_structs.hpp"
#include "SDK/PUBG_PacketHandler_classes.hpp"
#include "SDK/PUBG_PacketHandler_parameters.hpp"
#include "SDK/PUBG_Slate_structs.hpp"
#include "SDK/PUBG_Slate_classes.hpp"
#include "SDK/PUBG_Slate_parameters.hpp"
#include "SDK/PUBG_Engine_structs.hpp"
#include "SDK/PUBG_Engine_classes.hpp"
#include "SDK/PUBG_Engine_parameters.hpp"
#include "SDK/PUBG_CustomizableObject_structs.hpp"
#include "SDK/PUBG_CustomizableObject_classes.hpp"
#include "SDK/PUBG_CustomizableObject_parameters.hpp"
#include "SDK/PUBG_MovieScene_structs.hpp"
#include "SDK/PUBG_MovieScene_classes.hpp"
#include "SDK/PUBG_MovieScene_parameters.hpp"
#include "SDK/PUBG_OceanPlugin_structs.hpp"
#include "SDK/PUBG_OceanPlugin_classes.hpp"
#include "SDK/PUBG_OceanPlugin_parameters.hpp"
#include "SDK/PUBG_MovieSceneTracks_structs.hpp"
#include "SDK/PUBG_MovieSceneTracks_classes.hpp"
#include "SDK/PUBG_MovieSceneTracks_parameters.hpp"
#include "SDK/PUBG_GameplayTasks_structs.hpp"
#include "SDK/PUBG_GameplayTasks_classes.hpp"
#include "SDK/PUBG_GameplayTasks_parameters.hpp"
#include "SDK/PUBG_UMG_structs.hpp"
#include "SDK/PUBG_UMG_classes.hpp"
#include "SDK/PUBG_UMG_parameters.hpp"
#include "SDK/PUBG_CoherentUIGTPlugin_structs.hpp"
#include "SDK/PUBG_CoherentUIGTPlugin_classes.hpp"
#include "SDK/PUBG_CoherentUIGTPlugin_parameters.hpp"
#include "SDK/PUBG_ComboBoxOption_structs.hpp"
#include "SDK/PUBG_ComboBoxOption_classes.hpp"
#include "SDK/PUBG_ComboBoxOption_parameters.hpp"
#include "SDK/PUBG_GameplayTags_structs.hpp"
#include "SDK/PUBG_GameplayTags_classes.hpp"
#include "SDK/PUBG_GameplayTags_parameters.hpp"
#include "SDK/PUBG_EngineSettings_structs.hpp"
#include "SDK/PUBG_EngineSettings_classes.hpp"
#include "SDK/PUBG_EngineSettings_parameters.hpp"
#include "SDK/PUBG_AIModule_structs.hpp"
#include "SDK/PUBG_AIModule_classes.hpp"
#include "SDK/PUBG_AIModule_parameters.hpp"
#include "SDK/PUBG_TslGame_structs.hpp"
#include "SDK/PUBG_TslGame_classes.hpp"
#include "SDK/PUBG_TslGame_parameters.hpp"
#include "SDK/PUBG_SlotBaseWidget_structs.hpp"
#include "SDK/PUBG_SlotBaseWidget_classes.hpp"
#include "SDK/PUBG_SlotBaseWidget_parameters.hpp"
#include "SDK/PUBG_WebPopup_structs.hpp"
#include "SDK/PUBG_WebPopup_classes.hpp"
#include "SDK/PUBG_WebPopup_parameters.hpp"
#include "SDK/PUBG_AnimGraphRuntime_structs.hpp"
#include "SDK/PUBG_AnimGraphRuntime_classes.hpp"
#include "SDK/PUBG_AnimGraphRuntime_parameters.hpp"
#include "SDK/PUBG_LobbyCharacterBase_structs.hpp"
#include "SDK/PUBG_LobbyCharacterBase_classes.hpp"
#include "SDK/PUBG_LobbyCharacterBase_parameters.hpp"
#include "SDK/PUBG_LobbyCharacterFemale_structs.hpp"
#include "SDK/PUBG_LobbyCharacterFemale_classes.hpp"
#include "SDK/PUBG_LobbyCharacterFemale_parameters.hpp"
#include "SDK/PUBG_LobbyVoiceChat_structs.hpp"
#include "SDK/PUBG_LobbyVoiceChat_classes.hpp"
#include "SDK/PUBG_LobbyVoiceChat_parameters.hpp"
#include "SDK/PUBG_InventorySlotBaseWidget_structs.hpp"
#include "SDK/PUBG_InventorySlotBaseWidget_classes.hpp"
#include "SDK/PUBG_InventorySlotBaseWidget_parameters.hpp"
#include "SDK/PUBG_NewSystemMessageWidget_structs.hpp"
#include "SDK/PUBG_NewSystemMessageWidget_classes.hpp"
#include "SDK/PUBG_NewSystemMessageWidget_parameters.hpp"
#include "SDK/PUBG_WeaponEquipmentSlotWidget_structs.hpp"
#include "SDK/PUBG_WeaponEquipmentSlotWidget_classes.hpp"
#include "SDK/PUBG_WeaponEquipmentSlotWidget_parameters.hpp"
#include "SDK/PUBG_ImportantMessageWidget_structs.hpp"
#include "SDK/PUBG_ImportantMessageWidget_classes.hpp"
#include "SDK/PUBG_ImportantMessageWidget_parameters.hpp"
#include "SDK/PUBG_WeaponAttachmentSlotWidget_structs.hpp"
#include "SDK/PUBG_WeaponAttachmentSlotWidget_classes.hpp"
#include "SDK/PUBG_WeaponAttachmentSlotWidget_parameters.hpp"
#include "SDK/PUBG_InputHookingWidget_structs.hpp"
#include "SDK/PUBG_InputHookingWidget_classes.hpp"
#include "SDK/PUBG_InputHookingWidget_parameters.hpp"
#include "SDK/PUBG_PopupWidget_structs.hpp"
#include "SDK/PUBG_PopupWidget_classes.hpp"
#include "SDK/PUBG_PopupWidget_parameters.hpp"
#include "SDK/PUBG_UiHelperFunctionsBp_structs.hpp"
#include "SDK/PUBG_UiHelperFunctionsBp_classes.hpp"
#include "SDK/PUBG_UiHelperFunctionsBp_parameters.hpp"
#include "SDK/PUBG_LobbyCharacterMale_structs.hpp"
#include "SDK/PUBG_LobbyCharacterMale_classes.hpp"
#include "SDK/PUBG_LobbyCharacterMale_parameters.hpp"
#include "SDK/PUBG_HudMain_structs.hpp"
#include "SDK/PUBG_HudMain_classes.hpp"
#include "SDK/PUBG_HudMain_parameters.hpp"
#include "SDK/PUBG_InventoryBaseWidget_structs.hpp"
#include "SDK/PUBG_InventoryBaseWidget_classes.hpp"
#include "SDK/PUBG_InventoryBaseWidget_parameters.hpp"
#include "SDK/PUBG_EquipmentWidget_structs.hpp"
#include "SDK/PUBG_EquipmentWidget_classes.hpp"
#include "SDK/PUBG_EquipmentWidget_parameters.hpp"
#include "SDK/PUBG_CharacterProxyBase_structs.hpp"
#include "SDK/PUBG_CharacterProxyBase_classes.hpp"
#include "SDK/PUBG_CharacterProxyBase_parameters.hpp"
#include "SDK/PUBG_FemaleCharacterProxy_structs.hpp"
#include "SDK/PUBG_FemaleCharacterProxy_classes.hpp"
#include "SDK/PUBG_FemaleCharacterProxy_parameters.hpp"
#include "SDK/PUBG_MainOptionWidget_structs.hpp"
#include "SDK/PUBG_MainOptionWidget_classes.hpp"
#include "SDK/PUBG_MainOptionWidget_parameters.hpp"
#include "SDK/PUBG_BaseOptionWidget_structs.hpp"
#include "SDK/PUBG_BaseOptionWidget_classes.hpp"
#include "SDK/PUBG_BaseOptionWidget_parameters.hpp"
#include "SDK/PUBG_GameplayOptionWidget_BP_structs.hpp"
#include "SDK/PUBG_GameplayOptionWidget_BP_classes.hpp"
#include "SDK/PUBG_GameplayOptionWidget_BP_parameters.hpp"
#include "SDK/PUBG_InventoryWidget_structs.hpp"
#include "SDK/PUBG_InventoryWidget_classes.hpp"
#include "SDK/PUBG_InventoryWidget_parameters.hpp"
#include "SDK/PUBG_NewWorldMapWidget_structs.hpp"
#include "SDK/PUBG_NewWorldMapWidget_classes.hpp"
#include "SDK/PUBG_NewWorldMapWidget_parameters.hpp"
#include "SDK/PUBG_InGameMenuWidget_structs.hpp"
#include "SDK/PUBG_InGameMenuWidget_classes.hpp"
#include "SDK/PUBG_InGameMenuWidget_parameters.hpp"
#include "SDK/PUBG_NewMatchResultWidget_structs.hpp"
#include "SDK/PUBG_NewMatchResultWidget_classes.hpp"
#include "SDK/PUBG_NewMatchResultWidget_parameters.hpp"
#include "SDK/PUBG_GraphicOptionWidget_structs.hpp"
#include "SDK/PUBG_GraphicOptionWidget_classes.hpp"
#include "SDK/PUBG_GraphicOptionWidget_parameters.hpp"
#include "SDK/PUBG_QualityComboBox_structs.hpp"
#include "SDK/PUBG_QualityComboBox_classes.hpp"
#include "SDK/PUBG_QualityComboBox_parameters.hpp"
#include "SDK/PUBG_BigEquipmentSlotWidget_structs.hpp"
#include "SDK/PUBG_BigEquipmentSlotWidget_classes.hpp"
#include "SDK/PUBG_BigEquipmentSlotWidget_parameters.hpp"
#include "SDK/PUBG_SoundOptionWidget_structs.hpp"
#include "SDK/PUBG_SoundOptionWidget_classes.hpp"
#include "SDK/PUBG_SoundOptionWidget_parameters.hpp"
#include "SDK/PUBG_CarePackageItemSlotWidget_structs.hpp"
#include "SDK/PUBG_CarePackageItemSlotWidget_classes.hpp"
#include "SDK/PUBG_CarePackageItemSlotWidget_parameters.hpp"
#include "SDK/PUBG_SoundSettingWidget_structs.hpp"
#include "SDK/PUBG_SoundSettingWidget_classes.hpp"
#include "SDK/PUBG_SoundSettingWidget_parameters.hpp"
#include "SDK/PUBG_VoiceSettingWidget_structs.hpp"
#include "SDK/PUBG_VoiceSettingWidget_classes.hpp"
#include "SDK/PUBG_VoiceSettingWidget_parameters.hpp"
#include "SDK/PUBG_ChildOptionTitleWidget_structs.hpp"
#include "SDK/PUBG_ChildOptionTitleWidget_classes.hpp"
#include "SDK/PUBG_ChildOptionTitleWidget_parameters.hpp"
#include "SDK/PUBG_GeneralSettingWidget_structs.hpp"
#include "SDK/PUBG_GeneralSettingWidget_classes.hpp"
#include "SDK/PUBG_GeneralSettingWidget_parameters.hpp"
#include "SDK/PUBG_PresetColorWidget_structs.hpp"
#include "SDK/PUBG_PresetColorWidget_classes.hpp"
#include "SDK/PUBG_PresetColorWidget_parameters.hpp"
#include "SDK/PUBG_PresetColorComboBoxWidget_structs.hpp"
#include "SDK/PUBG_PresetColorComboBoxWidget_classes.hpp"
#include "SDK/PUBG_PresetColorComboBoxWidget_parameters.hpp"
#include "SDK/PUBG_SlotWidgetBaseInterface_structs.hpp"
#include "SDK/PUBG_SlotWidgetBaseInterface_classes.hpp"
#include "SDK/PUBG_SlotWidgetBaseInterface_parameters.hpp"
#include "SDK/PUBG_QualitySettingsWidget_structs.hpp"
#include "SDK/PUBG_QualitySettingsWidget_classes.hpp"
#include "SDK/PUBG_QualitySettingsWidget_parameters.hpp"
#include "SDK/PUBG_ScreenSettingWidget_structs.hpp"
#include "SDK/PUBG_ScreenSettingWidget_classes.hpp"
#include "SDK/PUBG_ScreenSettingWidget_parameters.hpp"
#include "SDK/PUBG_ComboBoxOptionTextWidget_structs.hpp"
#include "SDK/PUBG_ComboBoxOptionTextWidget_classes.hpp"
#include "SDK/PUBG_ComboBoxOptionTextWidget_parameters.hpp"
#include "SDK/PUBG_BlueZoneGpsWidget_Base_structs.hpp"
#include "SDK/PUBG_BlueZoneGpsWidget_Base_classes.hpp"
#include "SDK/PUBG_BlueZoneGpsWidget_Base_parameters.hpp"
#include "SDK/PUBG_QualitySliderWidget_structs.hpp"
#include "SDK/PUBG_QualitySliderWidget_classes.hpp"
#include "SDK/PUBG_QualitySliderWidget_parameters.hpp"
#include "SDK/PUBG_TslCheckBox_structs.hpp"
#include "SDK/PUBG_TslCheckBox_classes.hpp"
#include "SDK/PUBG_TslCheckBox_parameters.hpp"
#include "SDK/PUBG_ItemSlotWidget_structs.hpp"
#include "SDK/PUBG_ItemSlotWidget_classes.hpp"
#include "SDK/PUBG_ItemSlotWidget_parameters.hpp"
#include "SDK/PUBG_KeyOptionWidget_BP_structs.hpp"
#include "SDK/PUBG_KeyOptionWidget_BP_classes.hpp"
#include "SDK/PUBG_KeyOptionWidget_BP_parameters.hpp"
#include "SDK/PUBG_MouseSettingsWidget_structs.hpp"
#include "SDK/PUBG_MouseSettingsWidget_classes.hpp"
#include "SDK/PUBG_MouseSettingsWidget_parameters.hpp"
#include "SDK/PUBG_UiSettings_structs.hpp"
#include "SDK/PUBG_UiSettings_classes.hpp"
#include "SDK/PUBG_UiSettings_parameters.hpp"
#include "SDK/PUBG_KeySettingWidget_BP_structs.hpp"
#include "SDK/PUBG_KeySettingWidget_BP_classes.hpp"
#include "SDK/PUBG_KeySettingWidget_BP_parameters.hpp"
#include "SDK/PUBG_DualKeyDisplayWidget_BP_structs.hpp"
#include "SDK/PUBG_DualKeyDisplayWidget_BP_classes.hpp"
#include "SDK/PUBG_DualKeyDisplayWidget_BP_parameters.hpp"
#include "SDK/PUBG_WidgetFunctionLibrary_structs.hpp"
#include "SDK/PUBG_WidgetFunctionLibrary_classes.hpp"
#include "SDK/PUBG_WidgetFunctionLibrary_parameters.hpp"
#include "SDK/PUBG_KeyReceiverWidget_BP_structs.hpp"
#include "SDK/PUBG_KeyReceiverWidget_BP_classes.hpp"
#include "SDK/PUBG_KeyReceiverWidget_BP_parameters.hpp"
#include "SDK/PUBG_TslItemDragDropOperation_structs.hpp"
#include "SDK/PUBG_TslItemDragDropOperation_classes.hpp"
#include "SDK/PUBG_TslItemDragDropOperation_parameters.hpp"
#include "SDK/PUBG_InventoryListBaseWidget_structs.hpp"
#include "SDK/PUBG_InventoryListBaseWidget_classes.hpp"
#include "SDK/PUBG_InventoryListBaseWidget_parameters.hpp"
#include "SDK/PUBG_ConsolGuideWidget_structs.hpp"
#include "SDK/PUBG_ConsolGuideWidget_classes.hpp"
#include "SDK/PUBG_ConsolGuideWidget_parameters.hpp"
#include "SDK/PUBG_TslItemDragWidget_structs.hpp"
#include "SDK/PUBG_TslItemDragWidget_classes.hpp"
#include "SDK/PUBG_TslItemDragWidget_parameters.hpp"
#include "SDK/PUBG_DeathDropItemPackage_structs.hpp"
#include "SDK/PUBG_DeathDropItemPackage_classes.hpp"
#include "SDK/PUBG_DeathDropItemPackage_parameters.hpp"
#include "SDK/PUBG_NewCastingBarWidget_structs.hpp"
#include "SDK/PUBG_NewCastingBarWidget_classes.hpp"
#include "SDK/PUBG_NewCastingBarWidget_parameters.hpp"
#include "SDK/PUBG_ParachuteVehicleWidget_structs.hpp"
#include "SDK/PUBG_ParachuteVehicleWidget_classes.hpp"
#include "SDK/PUBG_ParachuteVehicleWidget_parameters.hpp"
#include "SDK/PUBG_KillMessageWidget_structs.hpp"
#include "SDK/PUBG_KillMessageWidget_classes.hpp"
#include "SDK/PUBG_KillMessageWidget_parameters.hpp"
#include "SDK/PUBG_BattleListWidget_structs.hpp"
#include "SDK/PUBG_BattleListWidget_classes.hpp"
#include "SDK/PUBG_BattleListWidget_parameters.hpp"
#include "SDK/PUBG_MeleeWeaponStudio_structs.hpp"
#include "SDK/PUBG_MeleeWeaponStudio_classes.hpp"
#include "SDK/PUBG_MeleeWeaponStudio_parameters.hpp"
#include "SDK/PUBG_HudAlwaysOn_structs.hpp"
#include "SDK/PUBG_HudAlwaysOn_classes.hpp"
#include "SDK/PUBG_HudAlwaysOn_parameters.hpp"
#include "SDK/PUBG_CarePackageInteractionWidget_structs.hpp"
#include "SDK/PUBG_CarePackageInteractionWidget_classes.hpp"
#include "SDK/PUBG_CarePackageInteractionWidget_parameters.hpp"
#include "SDK/PUBG_CarePackgeItemListWidget_structs.hpp"
#include "SDK/PUBG_CarePackgeItemListWidget_classes.hpp"
#include "SDK/PUBG_CarePackgeItemListWidget_parameters.hpp"
#include "SDK/PUBG_CategoryGroupWidget_structs.hpp"
#include "SDK/PUBG_CategoryGroupWidget_classes.hpp"
#include "SDK/PUBG_CategoryGroupWidget_parameters.hpp"
#include "SDK/PUBG_InnerItemSlotListWidget_structs.hpp"
#include "SDK/PUBG_InnerItemSlotListWidget_classes.hpp"
#include "SDK/PUBG_InnerItemSlotListWidget_parameters.hpp"
#include "SDK/PUBG_CharacterStudio_Default_structs.hpp"
#include "SDK/PUBG_CharacterStudio_Default_classes.hpp"
#include "SDK/PUBG_CharacterStudio_Default_parameters.hpp"
#include "SDK/PUBG_MaleCharacterProxy_structs.hpp"
#include "SDK/PUBG_MaleCharacterProxy_classes.hpp"
#include "SDK/PUBG_MaleCharacterProxy_parameters.hpp"
#include "SDK/PUBG_WeaponStudio_structs.hpp"
#include "SDK/PUBG_WeaponStudio_classes.hpp"
#include "SDK/PUBG_WeaponStudio_parameters.hpp"
#include "SDK/PUBG_WeaponEquipmentWidget_structs.hpp"
#include "SDK/PUBG_WeaponEquipmentWidget_classes.hpp"
#include "SDK/PUBG_WeaponEquipmentWidget_parameters.hpp"
#include "SDK/PUBG_HitNotifyWidget_structs.hpp"
#include "SDK/PUBG_HitNotifyWidget_classes.hpp"
#include "SDK/PUBG_HitNotifyWidget_parameters.hpp"
#include "SDK/PUBG_SmallEquipmentSlotWidget_structs.hpp"
#include "SDK/PUBG_SmallEquipmentSlotWidget_classes.hpp"
#include "SDK/PUBG_SmallEquipmentSlotWidget_parameters.hpp"
#include "SDK/PUBG_ListBaseGroupWidget_structs.hpp"
#include "SDK/PUBG_ListBaseGroupWidget_classes.hpp"
#include "SDK/PUBG_ListBaseGroupWidget_parameters.hpp"
#include "SDK/PUBG_ItemToolTipWidget_Bp_structs.hpp"
#include "SDK/PUBG_ItemToolTipWidget_Bp_classes.hpp"
#include "SDK/PUBG_ItemToolTipWidget_Bp_parameters.hpp"
#include "SDK/PUBG_CastingBarInfoTextWidget_structs.hpp"
#include "SDK/PUBG_CastingBarInfoTextWidget_classes.hpp"
#include "SDK/PUBG_CastingBarInfoTextWidget_parameters.hpp"
#include "SDK/PUBG_PlayerInfoWidget_structs.hpp"
#include "SDK/PUBG_PlayerInfoWidget_classes.hpp"
#include "SDK/PUBG_PlayerInfoWidget_parameters.hpp"
#include "SDK/PUBG_TSLGameState_structs.hpp"
#include "SDK/PUBG_TSLGameState_classes.hpp"
#include "SDK/PUBG_TSLGameState_parameters.hpp"
#include "SDK/PUBG_BP_FppWeaponSlotListWidget_structs.hpp"
#include "SDK/PUBG_BP_FppWeaponSlotListWidget_classes.hpp"
#include "SDK/PUBG_BP_FppWeaponSlotListWidget_parameters.hpp"
#include "SDK/PUBG_BP_BreatheBarWidget_structs.hpp"
#include "SDK/PUBG_BP_BreatheBarWidget_classes.hpp"
#include "SDK/PUBG_BP_BreatheBarWidget_parameters.hpp"
#include "SDK/PUBG_BP_CompassWidget_structs.hpp"
#include "SDK/PUBG_BP_CompassWidget_classes.hpp"
#include "SDK/PUBG_BP_CompassWidget_parameters.hpp"
#include "SDK/PUBG_BP_EquipableItemIconHudWidget_structs.hpp"
#include "SDK/PUBG_BP_EquipableItemIconHudWidget_classes.hpp"
#include "SDK/PUBG_BP_EquipableItemIconHudWidget_parameters.hpp"
#include "SDK/PUBG_BP_EquipableItemIconWidget_structs.hpp"
#include "SDK/PUBG_BP_EquipableItemIconWidget_classes.hpp"
#include "SDK/PUBG_BP_EquipableItemIconWidget_parameters.hpp"
#include "SDK/PUBG_BP_CompassMarkerWidget_structs.hpp"
#include "SDK/PUBG_BP_CompassMarkerWidget_classes.hpp"
#include "SDK/PUBG_BP_CompassMarkerWidget_parameters.hpp"
#include "SDK/PUBG_BP_FppWeaponListSlotWidget_structs.hpp"
#include "SDK/PUBG_BP_FppWeaponListSlotWidget_classes.hpp"
#include "SDK/PUBG_BP_FppWeaponListSlotWidget_parameters.hpp"
#include "SDK/PUBG_BP_FppWeaponSlotHudWidget_structs.hpp"
#include "SDK/PUBG_BP_FppWeaponSlotHudWidget_classes.hpp"
#include "SDK/PUBG_BP_FppWeaponSlotHudWidget_parameters.hpp"
#include "SDK/PUBG_BP_StanceManagerWidget_structs.hpp"
#include "SDK/PUBG_BP_StanceManagerWidget_classes.hpp"
#include "SDK/PUBG_BP_StanceManagerWidget_parameters.hpp"
#include "SDK/PUBG_BP_FppWeaponSlotWidget_structs.hpp"
#include "SDK/PUBG_BP_FppWeaponSlotWidget_classes.hpp"
#include "SDK/PUBG_BP_FppWeaponSlotWidget_parameters.hpp"
#include "SDK/PUBG_BP_InteractionWidget_structs.hpp"
#include "SDK/PUBG_BP_InteractionWidget_classes.hpp"
#include "SDK/PUBG_BP_InteractionWidget_parameters.hpp"
#include "SDK/PUBG_BP_CharacterStanceWidget_structs.hpp"
#include "SDK/PUBG_BP_CharacterStanceWidget_classes.hpp"
#include "SDK/PUBG_BP_CharacterStanceWidget_parameters.hpp"
#include "SDK/PUBG_CountDownWidget_structs.hpp"
#include "SDK/PUBG_CountDownWidget_classes.hpp"
#include "SDK/PUBG_CountDownWidget_parameters.hpp"
#include "SDK/PUBG_EmptyWidget_structs.hpp"
#include "SDK/PUBG_EmptyWidget_classes.hpp"
#include "SDK/PUBG_EmptyWidget_parameters.hpp"
#include "SDK/PUBG_BP_VehicleStanceWidget_structs.hpp"
#include "SDK/PUBG_BP_VehicleStanceWidget_classes.hpp"
#include "SDK/PUBG_BP_VehicleStanceWidget_parameters.hpp"
#include "SDK/PUBG_BP_VehicleFuelWidget_structs.hpp"
#include "SDK/PUBG_BP_VehicleFuelWidget_classes.hpp"
#include "SDK/PUBG_BP_VehicleFuelWidget_parameters.hpp"
#include "SDK/PUBG_BP_TeamWidget_structs.hpp"
#include "SDK/PUBG_BP_TeamWidget_classes.hpp"
#include "SDK/PUBG_BP_TeamWidget_parameters.hpp"
#include "SDK/PUBG_BloodSpotWidget_structs.hpp"
#include "SDK/PUBG_BloodSpotWidget_classes.hpp"
#include "SDK/PUBG_BloodSpotWidget_parameters.hpp"
#include "SDK/PUBG_BP_WeaponSlotHudWidget_structs.hpp"
#include "SDK/PUBG_BP_WeaponSlotHudWidget_classes.hpp"
#include "SDK/PUBG_BP_WeaponSlotHudWidget_parameters.hpp"
#include "SDK/PUBG_BP_WeaponSlotWidget_structs.hpp"
#include "SDK/PUBG_BP_WeaponSlotWidget_classes.hpp"
#include "SDK/PUBG_BP_WeaponSlotWidget_parameters.hpp"
#include "SDK/PUBG_BP_TeamMarkWidget_structs.hpp"
#include "SDK/PUBG_BP_TeamMarkWidget_classes.hpp"
#include "SDK/PUBG_BP_TeamMarkWidget_parameters.hpp"
#include "SDK/PUBG_BP_CircleProgressWidget_structs.hpp"
#include "SDK/PUBG_BP_CircleProgressWidget_classes.hpp"
#include "SDK/PUBG_BP_CircleProgressWidget_parameters.hpp"
#include "SDK/PUBG_BoostGaugeWidget_BP_structs.hpp"
#include "SDK/PUBG_BoostGaugeWidget_BP_classes.hpp"
#include "SDK/PUBG_BoostGaugeWidget_BP_parameters.hpp"
#include "SDK/PUBG_BP_AlivePlayerInfoWidget_structs.hpp"
#include "SDK/PUBG_BP_AlivePlayerInfoWidget_classes.hpp"
#include "SDK/PUBG_BP_AlivePlayerInfoWidget_parameters.hpp"
#include "SDK/PUBG_BP_BuffIconListWidget_structs.hpp"
#include "SDK/PUBG_BP_BuffIconListWidget_classes.hpp"
#include "SDK/PUBG_BP_BuffIconListWidget_parameters.hpp"
#include "SDK/PUBG_ButtonWidget_structs.hpp"
#include "SDK/PUBG_ButtonWidget_classes.hpp"
#include "SDK/PUBG_ButtonWidget_parameters.hpp"
#include "SDK/PUBG_NetworkProblemWidget_structs.hpp"
#include "SDK/PUBG_NetworkProblemWidget_classes.hpp"
#include "SDK/PUBG_NetworkProblemWidget_parameters.hpp"
#include "SDK/PUBG_Item_Heal_FirstAid_structs.hpp"
#include "SDK/PUBG_Item_Heal_FirstAid_classes.hpp"
#include "SDK/PUBG_Item_Heal_FirstAid_parameters.hpp"
#include "SDK/PUBG_Item_Heal_MedKit_structs.hpp"
#include "SDK/PUBG_Item_Heal_MedKit_classes.hpp"
#include "SDK/PUBG_Item_Heal_MedKit_parameters.hpp"
#include "SDK/PUBG_BP_LifeGaugeWidget_structs.hpp"
#include "SDK/PUBG_BP_LifeGaugeWidget_classes.hpp"
#include "SDK/PUBG_BP_LifeGaugeWidget_parameters.hpp"
#include "SDK/PUBG_BP_LifeGaugeHitEffectWidget_structs.hpp"
#include "SDK/PUBG_BP_LifeGaugeHitEffectWidget_classes.hpp"
#include "SDK/PUBG_BP_LifeGaugeHitEffectWidget_parameters.hpp"
#include "SDK/PUBG_ToolTipGauageWidget_structs.hpp"
#include "SDK/PUBG_ToolTipGauageWidget_classes.hpp"
#include "SDK/PUBG_ToolTipGauageWidget_parameters.hpp"
#include "SDK/PUBG_InGameWeb_structs.hpp"
#include "SDK/PUBG_InGameWeb_classes.hpp"
#include "SDK/PUBG_InGameWeb_parameters.hpp"
#include "SDK/PUBG_MessageWidget_structs.hpp"
#include "SDK/PUBG_MessageWidget_classes.hpp"
#include "SDK/PUBG_MessageWidget_parameters.hpp"
#include "SDK/PUBG_MinimapCircletype_structs.hpp"
#include "SDK/PUBG_MinimapCircletype_classes.hpp"
#include "SDK/PUBG_MinimapCircletype_parameters.hpp"
#include "SDK/PUBG_BP_TeamInfoListWidget_structs.hpp"
#include "SDK/PUBG_BP_TeamInfoListWidget_classes.hpp"
#include "SDK/PUBG_BP_TeamInfoListWidget_parameters.hpp"
#include "SDK/PUBG_MinimapOriginalType_structs.hpp"
#include "SDK/PUBG_MinimapOriginalType_classes.hpp"
#include "SDK/PUBG_MinimapOriginalType_parameters.hpp"
#include "SDK/PUBG_BP_TeamInfoWidget_structs.hpp"
#include "SDK/PUBG_BP_TeamInfoWidget_classes.hpp"
#include "SDK/PUBG_BP_TeamInfoWidget_parameters.hpp"
#include "SDK/PUBG_KillCountWidget_structs.hpp"
#include "SDK/PUBG_KillCountWidget_classes.hpp"
#include "SDK/PUBG_KillCountWidget_parameters.hpp"
#include "SDK/PUBG_MiniMapWidget_structs.hpp"
#include "SDK/PUBG_MiniMapWidget_classes.hpp"
#include "SDK/PUBG_MiniMapWidget_parameters.hpp"
#include "SDK/PUBG_VersionInfoWidget_structs.hpp"
#include "SDK/PUBG_VersionInfoWidget_classes.hpp"
#include "SDK/PUBG_VersionInfoWidget_parameters.hpp"
#include "SDK/PUBG_InGameReplayMenu_structs.hpp"
#include "SDK/PUBG_InGameReplayMenu_classes.hpp"
#include "SDK/PUBG_InGameReplayMenu_parameters.hpp"
#include "SDK/PUBG_PopupWidgetForReplay_structs.hpp"
#include "SDK/PUBG_PopupWidgetForReplay_classes.hpp"
#include "SDK/PUBG_PopupWidgetForReplay_parameters.hpp"
#include "SDK/PUBG_BP_ObserverPlayerIconMuzzleFlash_structs.hpp"
#include "SDK/PUBG_BP_ObserverPlayerIconMuzzleFlash_classes.hpp"
#include "SDK/PUBG_BP_ObserverPlayerIconMuzzleFlash_parameters.hpp"
#include "SDK/PUBG_KickPopupWidget_structs.hpp"
#include "SDK/PUBG_KickPopupWidget_classes.hpp"
#include "SDK/PUBG_KickPopupWidget_parameters.hpp"
#include "SDK/PUBG_MessageHudWidget_structs.hpp"
#include "SDK/PUBG_MessageHudWidget_classes.hpp"
#include "SDK/PUBG_MessageHudWidget_parameters.hpp"
#include "SDK/PUBG_BP_ObserverPlayerIconHitEffect_structs.hpp"
#include "SDK/PUBG_BP_ObserverPlayerIconHitEffect_classes.hpp"
#include "SDK/PUBG_BP_ObserverPlayerIconHitEffect_parameters.hpp"
#include "SDK/PUBG_CircleMiniMapWidget_structs.hpp"
#include "SDK/PUBG_CircleMiniMapWidget_classes.hpp"
#include "SDK/PUBG_CircleMiniMapWidget_parameters.hpp"
#include "SDK/PUBG_MapGridWidget_structs.hpp"
#include "SDK/PUBG_MapGridWidget_classes.hpp"
#include "SDK/PUBG_MapGridWidget_parameters.hpp"
#include "SDK/PUBG_BP_MapCarePackageItemIconWidget_structs.hpp"
#include "SDK/PUBG_BP_MapCarePackageItemIconWidget_classes.hpp"
#include "SDK/PUBG_BP_MapCarePackageItemIconWidget_parameters.hpp"
#include "SDK/PUBG_BP_MapCharacterIconWidget_structs.hpp"
#include "SDK/PUBG_BP_MapCharacterIconWidget_classes.hpp"
#include "SDK/PUBG_BP_MapCharacterIconWidget_parameters.hpp"
#include "SDK/PUBG_BP_LifeGaugeTemplateWidget_structs.hpp"
#include "SDK/PUBG_BP_LifeGaugeTemplateWidget_classes.hpp"
#include "SDK/PUBG_BP_LifeGaugeTemplateWidget_parameters.hpp"
#include "SDK/PUBG_CharProxy_AnimBP_structs.hpp"
#include "SDK/PUBG_CharProxy_AnimBP_classes.hpp"
#include "SDK/PUBG_CharProxy_AnimBP_parameters.hpp"
#include "SDK/PUBG_CameraShakeForFalling_structs.hpp"
#include "SDK/PUBG_CameraShakeForFalling_classes.hpp"
#include "SDK/PUBG_CameraShakeForFalling_parameters.hpp"
#include "SDK/PUBG_BP_MapMarkerWidget_structs.hpp"
#include "SDK/PUBG_BP_MapMarkerWidget_classes.hpp"
#include "SDK/PUBG_BP_MapMarkerWidget_parameters.hpp"
#include "SDK/PUBG_BP_MiniMapWidget_structs.hpp"
#include "SDK/PUBG_BP_MiniMapWidget_classes.hpp"
#include "SDK/PUBG_BP_MiniMapWidget_parameters.hpp"
#include "SDK/PUBG_BP_BlueZoneGpsWidget_structs.hpp"
#include "SDK/PUBG_BP_BlueZoneGpsWidget_classes.hpp"
#include "SDK/PUBG_BP_BlueZoneGpsWidget_parameters.hpp"
#include "SDK/PUBG_BlueZoneGpsWidget_Circle_structs.hpp"
#include "SDK/PUBG_BlueZoneGpsWidget_Circle_classes.hpp"
#include "SDK/PUBG_BlueZoneGpsWidget_Circle_parameters.hpp"
#include "SDK/PUBG_NewMessageBorderWidget_structs.hpp"
#include "SDK/PUBG_NewMessageBorderWidget_classes.hpp"
#include "SDK/PUBG_NewMessageBorderWidget_parameters.hpp"
#include "SDK/PUBG_SystemMessageWidget_structs.hpp"
#include "SDK/PUBG_SystemMessageWidget_classes.hpp"
#include "SDK/PUBG_SystemMessageWidget_parameters.hpp"
#include "SDK/PUBG_ObserverTagManagerWidget_structs.hpp"
#include "SDK/PUBG_ObserverTagManagerWidget_classes.hpp"
#include "SDK/PUBG_ObserverTagManagerWidget_parameters.hpp"
#include "SDK/PUBG_TslHealthGaugeBpWidget_structs.hpp"
#include "SDK/PUBG_TslHealthGaugeBpWidget_classes.hpp"
#include "SDK/PUBG_TslHealthGaugeBpWidget_parameters.hpp"
#include "SDK/PUBG_DistanceSliderWidget_structs.hpp"
#include "SDK/PUBG_DistanceSliderWidget_classes.hpp"
#include "SDK/PUBG_DistanceSliderWidget_parameters.hpp"
#include "SDK/PUBG_PlayerGroupWidget_structs.hpp"
#include "SDK/PUBG_PlayerGroupWidget_classes.hpp"
#include "SDK/PUBG_PlayerGroupWidget_parameters.hpp"
#include "SDK/PUBG_ReplayTimelineKillEventItem_structs.hpp"
#include "SDK/PUBG_ReplayTimelineKillEventItem_classes.hpp"
#include "SDK/PUBG_ReplayTimelineKillEventItem_parameters.hpp"
#include "SDK/PUBG_MessageBorderWidget_structs.hpp"
#include "SDK/PUBG_MessageBorderWidget_classes.hpp"
#include "SDK/PUBG_MessageBorderWidget_parameters.hpp"
#include "SDK/PUBG_OptionButton_structs.hpp"
#include "SDK/PUBG_OptionButton_classes.hpp"
#include "SDK/PUBG_OptionButton_parameters.hpp"
#include "SDK/PUBG_ObserverMatchResultNameGroupWidget_structs.hpp"
#include "SDK/PUBG_ObserverMatchResultNameGroupWidget_classes.hpp"
#include "SDK/PUBG_ObserverMatchResultNameGroupWidget_parameters.hpp"
#include "SDK/PUBG_ObserverMatchResultNameWidget_structs.hpp"
#include "SDK/PUBG_ObserverMatchResultNameWidget_classes.hpp"
#include "SDK/PUBG_ObserverMatchResultNameWidget_parameters.hpp"
#include "SDK/PUBG_BP_Church_structs.hpp"
#include "SDK/PUBG_BP_Church_classes.hpp"
#include "SDK/PUBG_BP_Church_parameters.hpp"
#include "SDK/PUBG_ParachutePlayer_structs.hpp"
#include "SDK/PUBG_ParachutePlayer_classes.hpp"
#include "SDK/PUBG_ParachutePlayer_parameters.hpp"
#include "SDK/PUBG_TslLobby_structs.hpp"
#include "SDK/PUBG_TslLobby_classes.hpp"
#include "SDK/PUBG_TslLobby_parameters.hpp"
#include "SDK/PUBG_ParachuteVehicle_Seat_structs.hpp"
#include "SDK/PUBG_ParachuteVehicle_Seat_classes.hpp"
#include "SDK/PUBG_ParachuteVehicle_Seat_parameters.hpp"
#include "SDK/PUBG_OptionSettingsButotn_structs.hpp"
#include "SDK/PUBG_OptionSettingsButotn_classes.hpp"
#include "SDK/PUBG_OptionSettingsButotn_parameters.hpp"
#include "SDK/PUBG_PlayerHeadWidget_structs.hpp"
#include "SDK/PUBG_PlayerHeadWidget_classes.hpp"
#include "SDK/PUBG_PlayerHeadWidget_parameters.hpp"
#include "SDK/PUBG_DmgTypeBP_Environmental_structs.hpp"
#include "SDK/PUBG_DmgTypeBP_Environmental_classes.hpp"
#include "SDK/PUBG_DmgTypeBP_Environmental_parameters.hpp"
#include "SDK/PUBG_SpectatingSelectionWidget_structs.hpp"
#include "SDK/PUBG_SpectatingSelectionWidget_classes.hpp"
#include "SDK/PUBG_SpectatingSelectionWidget_parameters.hpp"
#include "SDK/PUBG_PlayerListWidget_structs.hpp"
#include "SDK/PUBG_PlayerListWidget_classes.hpp"
#include "SDK/PUBG_PlayerListWidget_parameters.hpp"
#include "SDK/PUBG_OptionTitleWidget_structs.hpp"
#include "SDK/PUBG_OptionTitleWidget_classes.hpp"
#include "SDK/PUBG_OptionTitleWidget_parameters.hpp"
#include "SDK/PUBG_LobbyWebView_structs.hpp"
#include "SDK/PUBG_LobbyWebView_classes.hpp"
#include "SDK/PUBG_LobbyWebView_parameters.hpp"
#include "SDK/PUBG_ReplayTimeline_structs.hpp"
#include "SDK/PUBG_ReplayTimeline_classes.hpp"
#include "SDK/PUBG_ReplayTimeline_parameters.hpp"
#include "SDK/PUBG_ABP_Parachute_structs.hpp"
#include "SDK/PUBG_ABP_Parachute_classes.hpp"
#include "SDK/PUBG_ABP_Parachute_parameters.hpp"
#include "SDK/PUBG_BoatStanceWidget_structs.hpp"
#include "SDK/PUBG_BoatStanceWidget_classes.hpp"
#include "SDK/PUBG_BoatStanceWidget_parameters.hpp"
#include "SDK/PUBG_ReportPlayerWidget_structs.hpp"
#include "SDK/PUBG_ReportPlayerWidget_classes.hpp"
#include "SDK/PUBG_ReportPlayerWidget_parameters.hpp"
#include "SDK/PUBG_StackCountHandlingPopupWidget_structs.hpp"
#include "SDK/PUBG_StackCountHandlingPopupWidget_classes.hpp"
#include "SDK/PUBG_StackCountHandlingPopupWidget_parameters.hpp"
#include "SDK/PUBG_MainLobbyHUD_structs.hpp"
#include "SDK/PUBG_MainLobbyHUD_classes.hpp"
#include "SDK/PUBG_MainLobbyHUD_parameters.hpp"
#include "SDK/PUBG_LobbyHUD_Default_structs.hpp"
#include "SDK/PUBG_LobbyHUD_Default_classes.hpp"
#include "SDK/PUBG_LobbyHUD_Default_parameters.hpp"
#include "SDK/PUBG_TslLobbyGameMode_structs.hpp"
#include "SDK/PUBG_TslLobbyGameMode_classes.hpp"
#include "SDK/PUBG_TslLobbyGameMode_parameters.hpp"
#include "SDK/PUBG_BP_PP_OutlineCustomDepthOcclusion_Inst_structs.hpp"
#include "SDK/PUBG_BP_PP_OutlineCustomDepthOcclusion_Inst_classes.hpp"
#include "SDK/PUBG_BP_PP_OutlineCustomDepthOcclusion_Inst_parameters.hpp"
#include "SDK/PUBG_LobbyWidgetMain_structs.hpp"
#include "SDK/PUBG_LobbyWidgetMain_classes.hpp"
#include "SDK/PUBG_LobbyWidgetMain_parameters.hpp"
#include "SDK/PUBG_Boat_PG117_Animation_structs.hpp"
#include "SDK/PUBG_Boat_PG117_Animation_classes.hpp"
#include "SDK/PUBG_Boat_PG117_Animation_parameters.hpp"
#include "SDK/PUBG_VehicleSeatBase_structs.hpp"
#include "SDK/PUBG_VehicleSeatBase_classes.hpp"
#include "SDK/PUBG_VehicleSeatBase_parameters.hpp"
#include "SDK/PUBG_BikeWidget_structs.hpp"
#include "SDK/PUBG_BikeWidget_classes.hpp"
#include "SDK/PUBG_BikeWidget_parameters.hpp"
#include "SDK/PUBG_VehicleSeatPassenger_structs.hpp"
#include "SDK/PUBG_VehicleSeatPassenger_classes.hpp"
#include "SDK/PUBG_VehicleSeatPassenger_parameters.hpp"
#include "SDK/PUBG_P_Boat_FrontDrive_FoamRight_BP_structs.hpp"
#include "SDK/PUBG_P_Boat_FrontDrive_FoamRight_BP_classes.hpp"
#include "SDK/PUBG_P_Boat_FrontDrive_FoamRight_BP_parameters.hpp"
#include "SDK/PUBG_P_Boat_FrontDrive_FoamLeft_BP_structs.hpp"
#include "SDK/PUBG_P_Boat_FrontDrive_FoamLeft_BP_classes.hpp"
#include "SDK/PUBG_P_Boat_FrontDrive_FoamLeft_BP_parameters.hpp"
#include "SDK/PUBG_BoatBase_structs.hpp"
#include "SDK/PUBG_BoatBase_classes.hpp"
#include "SDK/PUBG_BoatBase_parameters.hpp"
#include "SDK/PUBG_ABP_Motorbike_04_structs.hpp"
#include "SDK/PUBG_ABP_Motorbike_04_classes.hpp"
#include "SDK/PUBG_ABP_Motorbike_04_parameters.hpp"
#include "SDK/PUBG_P_Boat_Drive_Ripples_BP_structs.hpp"
#include "SDK/PUBG_P_Boat_Drive_Ripples_BP_classes.hpp"
#include "SDK/PUBG_P_Boat_Drive_Ripples_BP_parameters.hpp"
#include "SDK/PUBG_BP_CameraMan_structs.hpp"
#include "SDK/PUBG_BP_CameraMan_classes.hpp"
#include "SDK/PUBG_BP_CameraMan_parameters.hpp"
#include "SDK/PUBG_P_Boat_Drive_Ripples_02_BP_structs.hpp"
#include "SDK/PUBG_P_Boat_Drive_Ripples_02_BP_classes.hpp"
#include "SDK/PUBG_P_Boat_Drive_Ripples_02_BP_parameters.hpp"
#include "SDK/PUBG_P_Boat_Drive_Foam_BP_structs.hpp"
#include "SDK/PUBG_P_Boat_Drive_Foam_BP_classes.hpp"
#include "SDK/PUBG_P_Boat_Drive_Foam_BP_parameters.hpp"
#include "SDK/PUBG_P_Boat_Drive_Bubbles_BP_structs.hpp"
#include "SDK/PUBG_P_Boat_Drive_Bubbles_BP_classes.hpp"
#include "SDK/PUBG_P_Boat_Drive_Bubbles_BP_parameters.hpp"
#include "SDK/PUBG_Boat_PG117_structs.hpp"
#include "SDK/PUBG_Boat_PG117_classes.hpp"
#include "SDK/PUBG_Boat_PG117_parameters.hpp"
#include "SDK/PUBG_Motorbike_Wheel_structs.hpp"
#include "SDK/PUBG_Motorbike_Wheel_classes.hpp"
#include "SDK/PUBG_Motorbike_Wheel_parameters.hpp"
#include "SDK/PUBG_Motorbike_Wheel_R_structs.hpp"
#include "SDK/PUBG_Motorbike_Wheel_R_classes.hpp"
#include "SDK/PUBG_Motorbike_Wheel_R_parameters.hpp"
#include "SDK/PUBG_Motorbike_Wheel_RR_structs.hpp"
#include "SDK/PUBG_Motorbike_Wheel_RR_classes.hpp"
#include "SDK/PUBG_Motorbike_Wheel_RR_parameters.hpp"
#include "SDK/PUBG_Motorbike_Wheel_F_structs.hpp"
#include "SDK/PUBG_Motorbike_Wheel_F_classes.hpp"
#include "SDK/PUBG_Motorbike_Wheel_F_parameters.hpp"
#include "SDK/PUBG_VehicleSeatBase_Moto_structs.hpp"
#include "SDK/PUBG_VehicleSeatBase_Moto_classes.hpp"
#include "SDK/PUBG_VehicleSeatBase_Moto_parameters.hpp"
#include "SDK/PUBG_BP_Motorbike_03_structs.hpp"
#include "SDK/PUBG_BP_Motorbike_03_classes.hpp"
#include "SDK/PUBG_BP_Motorbike_03_parameters.hpp"
#include "SDK/PUBG_BP_Motorbike_04_structs.hpp"
#include "SDK/PUBG_BP_Motorbike_04_classes.hpp"
#include "SDK/PUBG_BP_Motorbike_04_parameters.hpp"
#include "SDK/PUBG_Motorbike_Wheel_FR_structs.hpp"
#include "SDK/PUBG_Motorbike_Wheel_FR_classes.hpp"
#include "SDK/PUBG_Motorbike_Wheel_FR_parameters.hpp"
#include "SDK/PUBG_MotorbikeSidecart_Wheel_SC_structs.hpp"
#include "SDK/PUBG_MotorbikeSidecart_Wheel_SC_classes.hpp"
#include "SDK/PUBG_MotorbikeSidecart_Wheel_SC_parameters.hpp"
#include "SDK/PUBG_P_MotoSkid_Dirt_BP_structs.hpp"
#include "SDK/PUBG_P_MotoSkid_Dirt_BP_classes.hpp"
#include "SDK/PUBG_P_MotoSkid_Dirt_BP_parameters.hpp"
#include "SDK/PUBG_P_MotoDrive_Dirt_BP_structs.hpp"
#include "SDK/PUBG_P_MotoDrive_Dirt_BP_classes.hpp"
#include "SDK/PUBG_P_MotoDrive_Dirt_BP_parameters.hpp"
#include "SDK/PUBG_P_MotoDrive_Rock_BP_structs.hpp"
#include "SDK/PUBG_P_MotoDrive_Rock_BP_classes.hpp"
#include "SDK/PUBG_P_MotoDrive_Rock_BP_parameters.hpp"
#include "SDK/PUBG_P_MotoAccel_Dirt_BP_structs.hpp"
#include "SDK/PUBG_P_MotoAccel_Dirt_BP_classes.hpp"
#include "SDK/PUBG_P_MotoAccel_Dirt_BP_parameters.hpp"
#include "SDK/PUBG_MotorbikeSidecar_Wheel_structs.hpp"
#include "SDK/PUBG_MotorbikeSidecar_Wheel_classes.hpp"
#include "SDK/PUBG_MotorbikeSidecar_Wheel_parameters.hpp"
#include "SDK/PUBG_MotorbikeSidecart_Wheel_R_structs.hpp"
#include "SDK/PUBG_MotorbikeSidecart_Wheel_R_classes.hpp"
#include "SDK/PUBG_MotorbikeSidecart_Wheel_R_parameters.hpp"
#include "SDK/PUBG_P_MotoDrive_Rock_Front_BP_structs.hpp"
#include "SDK/PUBG_P_MotoDrive_Rock_Front_BP_classes.hpp"
#include "SDK/PUBG_P_MotoDrive_Rock_Front_BP_parameters.hpp"
#include "SDK/PUBG_P_MotoDrive_Grass_BP_structs.hpp"
#include "SDK/PUBG_P_MotoDrive_Grass_BP_classes.hpp"
#include "SDK/PUBG_P_MotoDrive_Grass_BP_parameters.hpp"
#include "SDK/PUBG_P_MotoDrive_Dirt_Front_BP_structs.hpp"
#include "SDK/PUBG_P_MotoDrive_Dirt_Front_BP_classes.hpp"
#include "SDK/PUBG_P_MotoDrive_Dirt_Front_BP_parameters.hpp"
#include "SDK/PUBG_P_VehicleDrive_Concrete_Front_BP_structs.hpp"
#include "SDK/PUBG_P_VehicleDrive_Concrete_Front_BP_classes.hpp"
#include "SDK/PUBG_P_VehicleDrive_Concrete_Front_BP_parameters.hpp"
#include "SDK/PUBG_ABP_Motorbike_03_structs.hpp"
#include "SDK/PUBG_ABP_Motorbike_03_classes.hpp"
#include "SDK/PUBG_ABP_Motorbike_03_parameters.hpp"
#include "SDK/PUBG_MotorbikeSidecart_Wheel_RR_structs.hpp"
#include "SDK/PUBG_MotorbikeSidecart_Wheel_RR_classes.hpp"
#include "SDK/PUBG_MotorbikeSidecart_Wheel_RR_parameters.hpp"
#include "SDK/PUBG_BikeSidecartWidget_structs.hpp"
#include "SDK/PUBG_BikeSidecartWidget_classes.hpp"
#include "SDK/PUBG_BikeSidecartWidget_parameters.hpp"
#include "SDK/PUBG_MotorbikeSidecart_Wheel_F_structs.hpp"
#include "SDK/PUBG_MotorbikeSidecart_Wheel_F_classes.hpp"
#include "SDK/PUBG_MotorbikeSidecart_Wheel_F_parameters.hpp"
#include "SDK/PUBG_Motorbike_Seat_Driver_structs.hpp"
#include "SDK/PUBG_Motorbike_Seat_Driver_classes.hpp"
#include "SDK/PUBG_Motorbike_Seat_Driver_parameters.hpp"
#include "SDK/PUBG_MotorbikeSidecart_Seat_PassengerSC_structs.hpp"
#include "SDK/PUBG_MotorbikeSidecart_Seat_PassengerSC_classes.hpp"
#include "SDK/PUBG_MotorbikeSidecart_Seat_PassengerSC_parameters.hpp"
#include "SDK/PUBG_MotorbikeSidecart_Seat_Driver_structs.hpp"
#include "SDK/PUBG_MotorbikeSidecart_Seat_Driver_classes.hpp"
#include "SDK/PUBG_MotorbikeSidecart_Seat_Driver_parameters.hpp"
#include "SDK/PUBG_Motorbike_Seat_Passenger_structs.hpp"
#include "SDK/PUBG_Motorbike_Seat_Passenger_classes.hpp"
#include "SDK/PUBG_Motorbike_Seat_Passenger_parameters.hpp"
#include "SDK/PUBG_P_Moto_Muffler_BP_structs.hpp"
#include "SDK/PUBG_P_Moto_Muffler_BP_classes.hpp"
#include "SDK/PUBG_P_Moto_Muffler_BP_parameters.hpp"
#include "SDK/PUBG_P_Moto_Fire_BP_structs.hpp"
#include "SDK/PUBG_P_Moto_Fire_BP_classes.hpp"
#include "SDK/PUBG_P_Moto_Fire_BP_parameters.hpp"
#include "SDK/PUBG_P_Moto_Explosion_BP_structs.hpp"
#include "SDK/PUBG_P_Moto_Explosion_BP_classes.hpp"
#include "SDK/PUBG_P_Moto_Explosion_BP_parameters.hpp"
#include "SDK/PUBG_P_Moto_Damaged_BP_structs.hpp"
#include "SDK/PUBG_P_Moto_Damaged_BP_classes.hpp"
#include "SDK/PUBG_P_Moto_Damaged_BP_parameters.hpp"
#include "SDK/PUBG_DaciaIStanceWidget_structs.hpp"
#include "SDK/PUBG_DaciaIStanceWidget_classes.hpp"
#include "SDK/PUBG_DaciaIStanceWidget_parameters.hpp"
#include "SDK/PUBG_BP_Motorbike_04_SideCar_structs.hpp"
#include "SDK/PUBG_BP_Motorbike_04_SideCar_classes.hpp"
#include "SDK/PUBG_BP_Motorbike_04_SideCar_parameters.hpp"
#include "SDK/PUBG_VehicleBase_structs.hpp"
#include "SDK/PUBG_VehicleBase_classes.hpp"
#include "SDK/PUBG_VehicleBase_parameters.hpp"
#include "SDK/PUBG_Dacia_Wheel_structs.hpp"
#include "SDK/PUBG_Dacia_Wheel_classes.hpp"
#include "SDK/PUBG_Dacia_Wheel_parameters.hpp"
#include "SDK/PUBG_ABP_Motorbike_04_Sidecar_structs.hpp"
#include "SDK/PUBG_ABP_Motorbike_04_Sidecar_classes.hpp"
#include "SDK/PUBG_ABP_Motorbike_04_Sidecar_parameters.hpp"
#include "SDK/PUBG_Dacia_WheelPuncture_structs.hpp"
#include "SDK/PUBG_Dacia_WheelPuncture_classes.hpp"
#include "SDK/PUBG_Dacia_WheelPuncture_parameters.hpp"
#include "SDK/PUBG_Dacia_WheelPuncture_R_structs.hpp"
#include "SDK/PUBG_Dacia_WheelPuncture_R_classes.hpp"
#include "SDK/PUBG_Dacia_WheelPuncture_R_parameters.hpp"
#include "SDK/PUBG_Dacia_WheelPuncture_F_structs.hpp"
#include "SDK/PUBG_Dacia_WheelPuncture_F_classes.hpp"
#include "SDK/PUBG_Dacia_WheelPuncture_F_parameters.hpp"
#include "SDK/PUBG_Dacia_Wheel_RR_structs.hpp"
#include "SDK/PUBG_Dacia_Wheel_RR_classes.hpp"
#include "SDK/PUBG_Dacia_Wheel_RR_parameters.hpp"
#include "SDK/PUBG_Dacia_Wheel_RL_structs.hpp"
#include "SDK/PUBG_Dacia_Wheel_RL_classes.hpp"
#include "SDK/PUBG_Dacia_Wheel_RL_parameters.hpp"
#include "SDK/PUBG_Dacia_Wheel_FR_structs.hpp"
#include "SDK/PUBG_Dacia_Wheel_FR_classes.hpp"
#include "SDK/PUBG_Dacia_Wheel_FR_parameters.hpp"
#include "SDK/PUBG_Dacia_Wheel_FL_structs.hpp"
#include "SDK/PUBG_Dacia_Wheel_FL_classes.hpp"
#include "SDK/PUBG_Dacia_Wheel_FL_parameters.hpp"
#include "SDK/PUBG_VehicleSeatDriver_structs.hpp"
#include "SDK/PUBG_VehicleSeatDriver_classes.hpp"
#include "SDK/PUBG_VehicleSeatDriver_parameters.hpp"
#include "SDK/PUBG_UazStanceWidget_structs.hpp"
#include "SDK/PUBG_UazStanceWidget_classes.hpp"
#include "SDK/PUBG_UazStanceWidget_parameters.hpp"
#include "SDK/PUBG_Boat_SeatPassengerFR_structs.hpp"
#include "SDK/PUBG_Boat_SeatPassengerFR_classes.hpp"
#include "SDK/PUBG_Boat_SeatPassengerFR_parameters.hpp"
#include "SDK/PUBG_Dacia_Seat_PassengerFR_structs.hpp"
#include "SDK/PUBG_Dacia_Seat_PassengerFR_classes.hpp"
#include "SDK/PUBG_Dacia_Seat_PassengerFR_parameters.hpp"
#include "SDK/PUBG_Dacia_Seat_PassengerBR_structs.hpp"
#include "SDK/PUBG_Dacia_Seat_PassengerBR_classes.hpp"
#include "SDK/PUBG_Dacia_Seat_PassengerBR_parameters.hpp"
#include "SDK/PUBG_Dacia_structs.hpp"
#include "SDK/PUBG_Dacia_classes.hpp"
#include "SDK/PUBG_Dacia_parameters.hpp"
#include "SDK/PUBG_Dacia_A_01_structs.hpp"
#include "SDK/PUBG_Dacia_A_01_classes.hpp"
#include "SDK/PUBG_Dacia_A_01_parameters.hpp"
#include "SDK/PUBG_Uaz_Wheel_structs.hpp"
#include "SDK/PUBG_Uaz_Wheel_classes.hpp"
#include "SDK/PUBG_Uaz_Wheel_parameters.hpp"
#include "SDK/PUBG_Uaz_WheelPuchture_structs.hpp"
#include "SDK/PUBG_Uaz_WheelPuchture_classes.hpp"
#include "SDK/PUBG_Uaz_WheelPuchture_parameters.hpp"
#include "SDK/PUBG_Dacia_Animation_structs.hpp"
#include "SDK/PUBG_Dacia_Animation_classes.hpp"
#include "SDK/PUBG_Dacia_Animation_parameters.hpp"
#include "SDK/PUBG_Uaz_WheelPuchture_R_structs.hpp"
#include "SDK/PUBG_Uaz_WheelPuchture_R_classes.hpp"
#include "SDK/PUBG_Uaz_WheelPuchture_R_parameters.hpp"
#include "SDK/PUBG_Uaz_WheelPuchture_F_structs.hpp"
#include "SDK/PUBG_Uaz_WheelPuchture_F_classes.hpp"
#include "SDK/PUBG_Uaz_WheelPuchture_F_parameters.hpp"
#include "SDK/PUBG_Uaz_Wheel_RR_structs.hpp"
#include "SDK/PUBG_Uaz_Wheel_RR_classes.hpp"
#include "SDK/PUBG_Uaz_Wheel_RR_parameters.hpp"
#include "SDK/PUBG_Uaz_Wheel_RL_structs.hpp"
#include "SDK/PUBG_Uaz_Wheel_RL_classes.hpp"
#include "SDK/PUBG_Uaz_Wheel_RL_parameters.hpp"
#include "SDK/PUBG_Uaz_Wheel_FR_structs.hpp"
#include "SDK/PUBG_Uaz_Wheel_FR_classes.hpp"
#include "SDK/PUBG_Uaz_Wheel_FR_parameters.hpp"
#include "SDK/PUBG_Uaz_Wheel_FL_structs.hpp"
#include "SDK/PUBG_Uaz_Wheel_FL_classes.hpp"
#include "SDK/PUBG_Uaz_Wheel_FL_parameters.hpp"
#include "SDK/PUBG_Boat_SeatDriver_structs.hpp"
#include "SDK/PUBG_Boat_SeatDriver_classes.hpp"
#include "SDK/PUBG_Boat_SeatDriver_parameters.hpp"
#include "SDK/PUBG_Dacia_Seat_PassengerBL_structs.hpp"
#include "SDK/PUBG_Dacia_Seat_PassengerBL_classes.hpp"
#include "SDK/PUBG_Dacia_Seat_PassengerBL_parameters.hpp"
#include "SDK/PUBG_Uaz_Seat_PassengerFR_structs.hpp"
#include "SDK/PUBG_Uaz_Seat_PassengerFR_classes.hpp"
#include "SDK/PUBG_Uaz_Seat_PassengerFR_parameters.hpp"
#include "SDK/PUBG_Uaz_Seat_PassengerBR_structs.hpp"
#include "SDK/PUBG_Uaz_Seat_PassengerBR_classes.hpp"
#include "SDK/PUBG_Uaz_Seat_PassengerBR_parameters.hpp"
#include "SDK/PUBG_Uaz_Seat_PassengerBL_structs.hpp"
#include "SDK/PUBG_Uaz_Seat_PassengerBL_classes.hpp"
#include "SDK/PUBG_Uaz_Seat_PassengerBL_parameters.hpp"
#include "SDK/PUBG_Uaz_structs.hpp"
#include "SDK/PUBG_Uaz_classes.hpp"
#include "SDK/PUBG_Uaz_parameters.hpp"
#include "SDK/PUBG_BuggyStanceWidget_structs.hpp"
#include "SDK/PUBG_BuggyStanceWidget_classes.hpp"
#include "SDK/PUBG_BuggyStanceWidget_parameters.hpp"
#include "SDK/PUBG_Uaz_A_01_structs.hpp"
#include "SDK/PUBG_Uaz_A_01_classes.hpp"
#include "SDK/PUBG_Uaz_A_01_parameters.hpp"
#include "SDK/PUBG_VehicleWheelInfoWidget_structs.hpp"
#include "SDK/PUBG_VehicleWheelInfoWidget_classes.hpp"
#include "SDK/PUBG_VehicleWheelInfoWidget_parameters.hpp"
#include "SDK/PUBG_VehicleSeatInfoWidget_structs.hpp"
#include "SDK/PUBG_VehicleSeatInfoWidget_classes.hpp"
#include "SDK/PUBG_VehicleSeatInfoWidget_parameters.hpp"
#include "SDK/PUBG_Buggy_Wheel_structs.hpp"
#include "SDK/PUBG_Buggy_Wheel_classes.hpp"
#include "SDK/PUBG_Buggy_Wheel_parameters.hpp"
#include "SDK/PUBG_Buggy_WheelPuncture_structs.hpp"
#include "SDK/PUBG_Buggy_WheelPuncture_classes.hpp"
#include "SDK/PUBG_Buggy_WheelPuncture_parameters.hpp"
#include "SDK/PUBG_Buggy_WheelPuncture_RR_structs.hpp"
#include "SDK/PUBG_Buggy_WheelPuncture_RR_classes.hpp"
#include "SDK/PUBG_Buggy_WheelPuncture_RR_parameters.hpp"
#include "SDK/PUBG_Buggy_WheelPuncture_RL_structs.hpp"
#include "SDK/PUBG_Buggy_WheelPuncture_RL_classes.hpp"
#include "SDK/PUBG_Buggy_WheelPuncture_RL_parameters.hpp"
#include "SDK/PUBG_Buggy_WheelPuncture_FR_structs.hpp"
#include "SDK/PUBG_Buggy_WheelPuncture_FR_classes.hpp"
#include "SDK/PUBG_Buggy_WheelPuncture_FR_parameters.hpp"
#include "SDK/PUBG_Buggy_WheelPuncture_FL_structs.hpp"
#include "SDK/PUBG_Buggy_WheelPuncture_FL_classes.hpp"
#include "SDK/PUBG_Buggy_WheelPuncture_FL_parameters.hpp"
#include "SDK/PUBG_Buggy_Wheel_RR_structs.hpp"
#include "SDK/PUBG_Buggy_Wheel_RR_classes.hpp"
#include "SDK/PUBG_Buggy_Wheel_RR_parameters.hpp"
#include "SDK/PUBG_Buggy_Wheel_RL_structs.hpp"
#include "SDK/PUBG_Buggy_Wheel_RL_classes.hpp"
#include "SDK/PUBG_Buggy_Wheel_RL_parameters.hpp"
#include "SDK/PUBG_Buggy_Wheel_FR_structs.hpp"
#include "SDK/PUBG_Buggy_Wheel_FR_classes.hpp"
#include "SDK/PUBG_Buggy_Wheel_FR_parameters.hpp"
#include "SDK/PUBG_P_VehicleSkidAccel_Rock_BP_structs.hpp"
#include "SDK/PUBG_P_VehicleSkidAccel_Rock_BP_classes.hpp"
#include "SDK/PUBG_P_VehicleSkidAccel_Rock_BP_parameters.hpp"
#include "SDK/PUBG_P_VehicleSkidAccel_Grass_BP_structs.hpp"
#include "SDK/PUBG_P_VehicleSkidAccel_Grass_BP_classes.hpp"
#include "SDK/PUBG_P_VehicleSkidAccel_Grass_BP_parameters.hpp"
#include "SDK/PUBG_P_VehicleSkidAccel_Dirt_BP_structs.hpp"
#include "SDK/PUBG_P_VehicleSkidAccel_Dirt_BP_classes.hpp"
#include "SDK/PUBG_P_VehicleSkidAccel_Dirt_BP_parameters.hpp"
#include "SDK/PUBG_P_VehicleSkidAccel_Concrete_BP_structs.hpp"
#include "SDK/PUBG_P_VehicleSkidAccel_Concrete_BP_classes.hpp"
#include "SDK/PUBG_P_VehicleSkidAccel_Concrete_BP_parameters.hpp"
#include "SDK/PUBG_P_VehicleDraft_Rock_BP_structs.hpp"
#include "SDK/PUBG_P_VehicleDraft_Rock_BP_classes.hpp"
#include "SDK/PUBG_P_VehicleDraft_Rock_BP_parameters.hpp"
#include "SDK/PUBG_P_VehicleDraft_Grass_BP_structs.hpp"
#include "SDK/PUBG_P_VehicleDraft_Grass_BP_classes.hpp"
#include "SDK/PUBG_P_VehicleDraft_Grass_BP_parameters.hpp"
#include "SDK/PUBG_P_VehicleDraft_Dirt_BP_structs.hpp"
#include "SDK/PUBG_P_VehicleDraft_Dirt_BP_classes.hpp"
#include "SDK/PUBG_P_VehicleDraft_Dirt_BP_parameters.hpp"
#include "SDK/PUBG_P_VehicleDraft_Concrete_BP_structs.hpp"
#include "SDK/PUBG_P_VehicleDraft_Concrete_BP_classes.hpp"
#include "SDK/PUBG_P_VehicleDraft_Concrete_BP_parameters.hpp"
#include "SDK/PUBG_P_VehicleDrive_Rock_BP_structs.hpp"
#include "SDK/PUBG_P_VehicleDrive_Rock_BP_classes.hpp"
#include "SDK/PUBG_P_VehicleDrive_Rock_BP_parameters.hpp"
#include "SDK/PUBG_P_VehicleDrive_Grass_BP_structs.hpp"
#include "SDK/PUBG_P_VehicleDrive_Grass_BP_classes.hpp"
#include "SDK/PUBG_P_VehicleDrive_Grass_BP_parameters.hpp"
#include "SDK/PUBG_Uaz_Animation_structs.hpp"
#include "SDK/PUBG_Uaz_Animation_classes.hpp"
#include "SDK/PUBG_Uaz_Animation_parameters.hpp"
#include "SDK/PUBG_P_VehicleDrive_Water_BP_structs.hpp"
#include "SDK/PUBG_P_VehicleDrive_Water_BP_classes.hpp"
#include "SDK/PUBG_P_VehicleDrive_Water_BP_parameters.hpp"
#include "SDK/PUBG_P_VehicleDrive_Dirt_BP_structs.hpp"
#include "SDK/PUBG_P_VehicleDrive_Dirt_BP_classes.hpp"
#include "SDK/PUBG_P_VehicleDrive_Dirt_BP_parameters.hpp"
#include "SDK/PUBG_P_VehicleDrive_Concrete_BP_structs.hpp"
#include "SDK/PUBG_P_VehicleDrive_Concrete_BP_classes.hpp"
#include "SDK/PUBG_P_VehicleDrive_Concrete_BP_parameters.hpp"
#include "SDK/PUBG_P_Vehicle_PunkTire_BP_structs.hpp"
#include "SDK/PUBG_P_Vehicle_PunkTire_BP_classes.hpp"
#include "SDK/PUBG_P_Vehicle_PunkTire_BP_parameters.hpp"
#include "SDK/PUBG_P_Vehicle_PunkSpark_BP_structs.hpp"
#include "SDK/PUBG_P_Vehicle_PunkSpark_BP_classes.hpp"
#include "SDK/PUBG_P_Vehicle_PunkSpark_BP_parameters.hpp"
#include "SDK/PUBG_Buggy_Wheel_FL_structs.hpp"
#include "SDK/PUBG_Buggy_Wheel_FL_classes.hpp"
#include "SDK/PUBG_Buggy_Wheel_FL_parameters.hpp"
#include "SDK/PUBG_Dacia_Seat_Driver_structs.hpp"
#include "SDK/PUBG_Dacia_Seat_Driver_classes.hpp"
#include "SDK/PUBG_Dacia_Seat_Driver_parameters.hpp"
#include "SDK/PUBG_SessionMessages_structs.hpp"
#include "SDK/PUBG_SessionMessages_classes.hpp"
#include "SDK/PUBG_SessionMessages_parameters.hpp"
#include "SDK/PUBG_Serialization_structs.hpp"
#include "SDK/PUBG_Serialization_classes.hpp"
#include "SDK/PUBG_Serialization_parameters.hpp"
#include "SDK/PUBG_Uaz_Seat_PassengerBC_structs.hpp"
#include "SDK/PUBG_Uaz_Seat_PassengerBC_classes.hpp"
#include "SDK/PUBG_Uaz_Seat_PassengerBC_parameters.hpp"
#include "SDK/PUBG_VectorVM_structs.hpp"
#include "SDK/PUBG_VectorVM_classes.hpp"
#include "SDK/PUBG_VectorVM_parameters.hpp"
#include "SDK/PUBG_EngineMessages_structs.hpp"
#include "SDK/PUBG_EngineMessages_classes.hpp"
#include "SDK/PUBG_EngineMessages_parameters.hpp"
#include "SDK/PUBG_Buggy_Seat_Passenger_structs.hpp"
#include "SDK/PUBG_Buggy_Seat_Passenger_classes.hpp"
#include "SDK/PUBG_Buggy_Seat_Passenger_parameters.hpp"
#include "SDK/PUBG_Uaz_Seat_Driver_structs.hpp"
#include "SDK/PUBG_Uaz_Seat_Driver_classes.hpp"
#include "SDK/PUBG_Uaz_Seat_Driver_parameters.hpp"
#include "SDK/PUBG_SlateRemote_structs.hpp"
#include "SDK/PUBG_SlateRemote_classes.hpp"
#include "SDK/PUBG_SlateRemote_parameters.hpp"
#include "SDK/PUBG_Buggy_Seat_Driver_structs.hpp"
#include "SDK/PUBG_Buggy_Seat_Driver_classes.hpp"
#include "SDK/PUBG_Buggy_Seat_Driver_parameters.hpp"
#include "SDK/PUBG_Buggy_structs.hpp"
#include "SDK/PUBG_Buggy_classes.hpp"
#include "SDK/PUBG_Buggy_parameters.hpp"
#include "SDK/PUBG_DmgTypeExplosion_Vehicle_structs.hpp"
#include "SDK/PUBG_DmgTypeExplosion_Vehicle_classes.hpp"
#include "SDK/PUBG_DmgTypeExplosion_Vehicle_parameters.hpp"
#include "SDK/PUBG_Buggy_Animation_structs.hpp"
#include "SDK/PUBG_Buggy_Animation_classes.hpp"
#include "SDK/PUBG_Buggy_Animation_parameters.hpp"
#include "SDK/PUBG_AkAudio_structs.hpp"
#include "SDK/PUBG_AkAudio_classes.hpp"
#include "SDK/PUBG_AkAudio_parameters.hpp"
#include "SDK/PUBG_ProceduralMeshComponent_structs.hpp"
#include "SDK/PUBG_ProceduralMeshComponent_classes.hpp"
#include "SDK/PUBG_ProceduralMeshComponent_parameters.hpp"
#include "SDK/PUBG_MobilePatchingUtils_structs.hpp"
#include "SDK/PUBG_MobilePatchingUtils_classes.hpp"
#include "SDK/PUBG_MobilePatchingUtils_parameters.hpp"
#include "SDK/PUBG_CustomMeshComponent_structs.hpp"
#include "SDK/PUBG_CustomMeshComponent_classes.hpp"
#include "SDK/PUBG_CustomMeshComponent_parameters.hpp"
#include "SDK/PUBG_OnlineSubsystem_structs.hpp"
#include "SDK/PUBG_OnlineSubsystem_classes.hpp"
#include "SDK/PUBG_OnlineSubsystem_parameters.hpp"
#include "SDK/PUBG_UdpMessaging_structs.hpp"
#include "SDK/PUBG_UdpMessaging_classes.hpp"
#include "SDK/PUBG_UdpMessaging_parameters.hpp"
#include "SDK/PUBG_TcpMessaging_structs.hpp"
#include "SDK/PUBG_TcpMessaging_classes.hpp"
#include "SDK/PUBG_TcpMessaging_parameters.hpp"
#include "SDK/PUBG_WmfMediaFactory_structs.hpp"
#include "SDK/PUBG_WmfMediaFactory_classes.hpp"
#include "SDK/PUBG_WmfMediaFactory_parameters.hpp"
#include "SDK/PUBG_CableComponent_structs.hpp"
#include "SDK/PUBG_CableComponent_classes.hpp"
#include "SDK/PUBG_CableComponent_parameters.hpp"
#include "SDK/PUBG_ArchVisCharacter_structs.hpp"
#include "SDK/PUBG_ArchVisCharacter_classes.hpp"
#include "SDK/PUBG_ArchVisCharacter_parameters.hpp"
#include "SDK/PUBG_LightPropagationVolumeRuntime_structs.hpp"
#include "SDK/PUBG_LightPropagationVolumeRuntime_classes.hpp"
#include "SDK/PUBG_LightPropagationVolumeRuntime_parameters.hpp"
#include "SDK/PUBG_RoadRuntime_structs.hpp"
#include "SDK/PUBG_RoadRuntime_classes.hpp"
#include "SDK/PUBG_RoadRuntime_parameters.hpp"
#include "SDK/PUBG_BuildPatchServices_structs.hpp"
#include "SDK/PUBG_BuildPatchServices_classes.hpp"
#include "SDK/PUBG_BuildPatchServices_parameters.hpp"
#include "SDK/PUBG_OnlineSubsystemUtils_structs.hpp"
#include "SDK/PUBG_OnlineSubsystemUtils_classes.hpp"
#include "SDK/PUBG_OnlineSubsystemUtils_parameters.hpp"
#include "SDK/PUBG_OnlineSubsystemSteam_structs.hpp"
#include "SDK/PUBG_OnlineSubsystemSteam_classes.hpp"
#include "SDK/PUBG_OnlineSubsystemSteam_parameters.hpp"
#include "SDK/PUBG_SubstanceCore_structs.hpp"
#include "SDK/PUBG_SubstanceCore_classes.hpp"
#include "SDK/PUBG_SubstanceCore_parameters.hpp"
#include "SDK/PUBG_HTML5Networking_structs.hpp"
#include "SDK/PUBG_HTML5Networking_classes.hpp"
#include "SDK/PUBG_HTML5Networking_parameters.hpp"
#include "SDK/PUBG_MoviePlayer_structs.hpp"
#include "SDK/PUBG_MoviePlayer_classes.hpp"
#include "SDK/PUBG_MoviePlayer_parameters.hpp"
#include "SDK/PUBG_Paper2D_structs.hpp"
#include "SDK/PUBG_Paper2D_classes.hpp"
#include "SDK/PUBG_Paper2D_parameters.hpp"
#include "SDK/PUBG_DmgType_VehicleHit_structs.hpp"
#include "SDK/PUBG_DmgType_VehicleHit_classes.hpp"
#include "SDK/PUBG_DmgType_VehicleHit_parameters.hpp"
#include "SDK/PUBG_JsonUtilities_structs.hpp"