-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrustplus.pb.cc
More file actions
21425 lines (19460 loc) · 781 KB
/
rustplus.pb.cc
File metadata and controls
21425 lines (19460 loc) · 781 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
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: rustplus.proto
#include "rustplus.pb.h"
#include <algorithm>
#include <google/protobuf/io/coded_stream.h>
#include <google/protobuf/extension_set.h>
#include <google/protobuf/wire_format_lite.h>
#include <google/protobuf/descriptor.h>
#include <google/protobuf/generated_message_reflection.h>
#include <google/protobuf/reflection_ops.h>
#include <google/protobuf/wire_format.h>
// @@protoc_insertion_point(includes)
#include <google/protobuf/port_def.inc>
PROTOBUF_PRAGMA_INIT_SEG
namespace rustplus {
constexpr Vector2::Vector2(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: x_(0)
, y_(0){}
struct Vector2DefaultTypeInternal {
constexpr Vector2DefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~Vector2DefaultTypeInternal() {}
union {
Vector2 _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT Vector2DefaultTypeInternal _Vector2_default_instance_;
constexpr Vector3::Vector3(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: x_(0)
, y_(0)
, z_(0){}
struct Vector3DefaultTypeInternal {
constexpr Vector3DefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~Vector3DefaultTypeInternal() {}
union {
Vector3 _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT Vector3DefaultTypeInternal _Vector3_default_instance_;
constexpr Vector4::Vector4(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: x_(0)
, y_(0)
, z_(0)
, w_(0){}
struct Vector4DefaultTypeInternal {
constexpr Vector4DefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~Vector4DefaultTypeInternal() {}
union {
Vector4 _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT Vector4DefaultTypeInternal _Vector4_default_instance_;
constexpr Half3::Half3(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: x_(0)
, y_(0)
, z_(0){}
struct Half3DefaultTypeInternal {
constexpr Half3DefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~Half3DefaultTypeInternal() {}
union {
Half3 _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT Half3DefaultTypeInternal _Half3_default_instance_;
constexpr Color::Color(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: r_(0)
, g_(0)
, b_(0)
, a_(0){}
struct ColorDefaultTypeInternal {
constexpr ColorDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~ColorDefaultTypeInternal() {}
union {
Color _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT ColorDefaultTypeInternal _Color_default_instance_;
constexpr Ray::Ray(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: origin_(nullptr)
, direction_(nullptr){}
struct RayDefaultTypeInternal {
constexpr RayDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~RayDefaultTypeInternal() {}
union {
Ray _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT RayDefaultTypeInternal _Ray_default_instance_;
constexpr ClanActionResult::ClanActionResult(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: claninfo_(nullptr)
, requestid_(0)
, result_(0)
, hasclaninfo_(false){}
struct ClanActionResultDefaultTypeInternal {
constexpr ClanActionResultDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~ClanActionResultDefaultTypeInternal() {}
union {
ClanActionResult _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT ClanActionResultDefaultTypeInternal _ClanActionResult_default_instance_;
constexpr ClanInfo_Role::ClanInfo_Role(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: name_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string)
, roleid_(0)
, rank_(0)
, cansetmotd_(false)
, cansetlogo_(false)
, caninvite_(false)
, cankick_(false)
, canpromote_(false)
, candemote_(false)
, cansetplayernotes_(false)
, canaccesslogs_(false){}
struct ClanInfo_RoleDefaultTypeInternal {
constexpr ClanInfo_RoleDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~ClanInfo_RoleDefaultTypeInternal() {}
union {
ClanInfo_Role _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT ClanInfo_RoleDefaultTypeInternal _ClanInfo_Role_default_instance_;
constexpr ClanInfo_Member::ClanInfo_Member(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: notes_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string)
, steamid_(int64_t{0})
, joined_(int64_t{0})
, lastseen_(int64_t{0})
, roleid_(0)
, online_(false){}
struct ClanInfo_MemberDefaultTypeInternal {
constexpr ClanInfo_MemberDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~ClanInfo_MemberDefaultTypeInternal() {}
union {
ClanInfo_Member _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT ClanInfo_MemberDefaultTypeInternal _ClanInfo_Member_default_instance_;
constexpr ClanInfo_Invite::ClanInfo_Invite(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: steamid_(int64_t{0})
, recruiter_(int64_t{0})
, timestamp_(int64_t{0}){}
struct ClanInfo_InviteDefaultTypeInternal {
constexpr ClanInfo_InviteDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~ClanInfo_InviteDefaultTypeInternal() {}
union {
ClanInfo_Invite _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT ClanInfo_InviteDefaultTypeInternal _ClanInfo_Invite_default_instance_;
constexpr ClanInfo::ClanInfo(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: roles_()
, members_()
, invites_()
, name_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string)
, motd_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string)
, logo_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string)
, clanid_(int64_t{0})
, created_(int64_t{0})
, creator_(int64_t{0})
, motdtimestamp_(int64_t{0})
, motdauthor_(int64_t{0})
, color_(0)
, maxmembercount_(0){}
struct ClanInfoDefaultTypeInternal {
constexpr ClanInfoDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~ClanInfoDefaultTypeInternal() {}
union {
ClanInfo _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT ClanInfoDefaultTypeInternal _ClanInfo_default_instance_;
constexpr ClanLog_Entry::ClanLog_Entry(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: eventkey_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string)
, arg1_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string)
, arg2_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string)
, arg3_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string)
, arg4_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string)
, timestamp_(int64_t{0}){}
struct ClanLog_EntryDefaultTypeInternal {
constexpr ClanLog_EntryDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~ClanLog_EntryDefaultTypeInternal() {}
union {
ClanLog_Entry _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT ClanLog_EntryDefaultTypeInternal _ClanLog_Entry_default_instance_;
constexpr ClanLog::ClanLog(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: logentries_()
, clanid_(int64_t{0}){}
struct ClanLogDefaultTypeInternal {
constexpr ClanLogDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~ClanLogDefaultTypeInternal() {}
union {
ClanLog _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT ClanLogDefaultTypeInternal _ClanLog_default_instance_;
constexpr ClanInvitations_Invitation::ClanInvitations_Invitation(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: clanid_(int64_t{0})
, recruiter_(int64_t{0})
, timestamp_(int64_t{0}){}
struct ClanInvitations_InvitationDefaultTypeInternal {
constexpr ClanInvitations_InvitationDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~ClanInvitations_InvitationDefaultTypeInternal() {}
union {
ClanInvitations_Invitation _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT ClanInvitations_InvitationDefaultTypeInternal _ClanInvitations_Invitation_default_instance_;
constexpr ClanInvitations::ClanInvitations(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: invitations_(){}
struct ClanInvitationsDefaultTypeInternal {
constexpr ClanInvitationsDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~ClanInvitationsDefaultTypeInternal() {}
union {
ClanInvitations _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT ClanInvitationsDefaultTypeInternal _ClanInvitations_default_instance_;
constexpr AppRequest::AppRequest(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: getinfo_(nullptr)
, gettime_(nullptr)
, getmap_(nullptr)
, getteaminfo_(nullptr)
, getteamchat_(nullptr)
, sendteammessage_(nullptr)
, getentityinfo_(nullptr)
, setentityvalue_(nullptr)
, checksubscription_(nullptr)
, setsubscription_(nullptr)
, getmapmarkers_(nullptr)
, promotetoleader_(nullptr)
, getclaninfo_(nullptr)
, setclanmotd_(nullptr)
, getclanchat_(nullptr)
, sendclanmessage_(nullptr)
, getnexusauth_(nullptr)
, camerasubscribe_(nullptr)
, cameraunsubscribe_(nullptr)
, camerainput_(nullptr)
, playerid_(uint64_t{0u})
, seq_(0u)
, playertoken_(0)
, entityid_(0u){}
struct AppRequestDefaultTypeInternal {
constexpr AppRequestDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppRequestDefaultTypeInternal() {}
union {
AppRequest _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppRequestDefaultTypeInternal _AppRequest_default_instance_;
constexpr AppMessage::AppMessage(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: response_(nullptr)
, broadcast_(nullptr){}
struct AppMessageDefaultTypeInternal {
constexpr AppMessageDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppMessageDefaultTypeInternal() {}
union {
AppMessage _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppMessageDefaultTypeInternal _AppMessage_default_instance_;
constexpr AppResponse::AppResponse(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: success_(nullptr)
, error_(nullptr)
, info_(nullptr)
, time_(nullptr)
, map_(nullptr)
, teaminfo_(nullptr)
, teamchat_(nullptr)
, entityinfo_(nullptr)
, flag_(nullptr)
, mapmarkers_(nullptr)
, claninfo_(nullptr)
, clanchat_(nullptr)
, nexusauth_(nullptr)
, camerasubscribeinfo_(nullptr)
, seq_(0){}
struct AppResponseDefaultTypeInternal {
constexpr AppResponseDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppResponseDefaultTypeInternal() {}
union {
AppResponse _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppResponseDefaultTypeInternal _AppResponse_default_instance_;
constexpr AppBroadcast::AppBroadcast(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: teamchanged_(nullptr)
, newteammessage_(nullptr)
, entitychanged_(nullptr)
, clanchanged_(nullptr)
, clanmessage_(nullptr)
, camerarays_(nullptr){}
struct AppBroadcastDefaultTypeInternal {
constexpr AppBroadcastDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppBroadcastDefaultTypeInternal() {}
union {
AppBroadcast _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppBroadcastDefaultTypeInternal _AppBroadcast_default_instance_;
constexpr AppEmpty::AppEmpty(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized){}
struct AppEmptyDefaultTypeInternal {
constexpr AppEmptyDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppEmptyDefaultTypeInternal() {}
union {
AppEmpty _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppEmptyDefaultTypeInternal _AppEmpty_default_instance_;
constexpr AppSendMessage::AppSendMessage(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: message_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string){}
struct AppSendMessageDefaultTypeInternal {
constexpr AppSendMessageDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppSendMessageDefaultTypeInternal() {}
union {
AppSendMessage _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppSendMessageDefaultTypeInternal _AppSendMessage_default_instance_;
constexpr AppSetEntityValue::AppSetEntityValue(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: value_(false){}
struct AppSetEntityValueDefaultTypeInternal {
constexpr AppSetEntityValueDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppSetEntityValueDefaultTypeInternal() {}
union {
AppSetEntityValue _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppSetEntityValueDefaultTypeInternal _AppSetEntityValue_default_instance_;
constexpr AppPromoteToLeader::AppPromoteToLeader(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: steamid_(int64_t{0}){}
struct AppPromoteToLeaderDefaultTypeInternal {
constexpr AppPromoteToLeaderDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppPromoteToLeaderDefaultTypeInternal() {}
union {
AppPromoteToLeader _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppPromoteToLeaderDefaultTypeInternal _AppPromoteToLeader_default_instance_;
constexpr AppGetNexusAuth::AppGetNexusAuth(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: appkey_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string){}
struct AppGetNexusAuthDefaultTypeInternal {
constexpr AppGetNexusAuthDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppGetNexusAuthDefaultTypeInternal() {}
union {
AppGetNexusAuth _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppGetNexusAuthDefaultTypeInternal _AppGetNexusAuth_default_instance_;
constexpr AppSuccess::AppSuccess(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized){}
struct AppSuccessDefaultTypeInternal {
constexpr AppSuccessDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppSuccessDefaultTypeInternal() {}
union {
AppSuccess _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppSuccessDefaultTypeInternal _AppSuccess_default_instance_;
constexpr AppError::AppError(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: error_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string){}
struct AppErrorDefaultTypeInternal {
constexpr AppErrorDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppErrorDefaultTypeInternal() {}
union {
AppError _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppErrorDefaultTypeInternal _AppError_default_instance_;
constexpr AppFlag::AppFlag(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: value_(false){}
struct AppFlagDefaultTypeInternal {
constexpr AppFlagDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppFlagDefaultTypeInternal() {}
union {
AppFlag _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppFlagDefaultTypeInternal _AppFlag_default_instance_;
constexpr AppInfo::AppInfo(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: name_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string)
, headerimage_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string)
, url_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string)
, map_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string)
, logoimage_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string)
, nexus_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string)
, nexuszone_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string)
, mapsize_(0u)
, wipetime_(0u)
, players_(0u)
, maxplayers_(0u)
, queuedplayers_(0u)
, seed_(0u)
, salt_(0u)
, nexusid_(0){}
struct AppInfoDefaultTypeInternal {
constexpr AppInfoDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppInfoDefaultTypeInternal() {}
union {
AppInfo _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppInfoDefaultTypeInternal _AppInfo_default_instance_;
constexpr AppTime::AppTime(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: daylengthminutes_(0)
, timescale_(0)
, sunrise_(0)
, sunset_(0)
, time_(0){}
struct AppTimeDefaultTypeInternal {
constexpr AppTimeDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppTimeDefaultTypeInternal() {}
union {
AppTime _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppTimeDefaultTypeInternal _AppTime_default_instance_;
constexpr AppMap_Monument::AppMap_Monument(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: token_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string)
, x_(0)
, y_(0){}
struct AppMap_MonumentDefaultTypeInternal {
constexpr AppMap_MonumentDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppMap_MonumentDefaultTypeInternal() {}
union {
AppMap_Monument _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppMap_MonumentDefaultTypeInternal _AppMap_Monument_default_instance_;
constexpr AppMap::AppMap(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: monuments_()
, jpgimage_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string)
, background_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string)
, width_(0u)
, height_(0u)
, oceanmargin_(0){}
struct AppMapDefaultTypeInternal {
constexpr AppMapDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppMapDefaultTypeInternal() {}
union {
AppMap _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppMapDefaultTypeInternal _AppMap_default_instance_;
constexpr AppEntityInfo::AppEntityInfo(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: payload_(nullptr)
, type_(1)
{}
struct AppEntityInfoDefaultTypeInternal {
constexpr AppEntityInfoDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppEntityInfoDefaultTypeInternal() {}
union {
AppEntityInfo _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppEntityInfoDefaultTypeInternal _AppEntityInfo_default_instance_;
constexpr AppEntityPayload_Item::AppEntityPayload_Item(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: itemid_(0)
, quantity_(0)
, itemisblueprint_(false){}
struct AppEntityPayload_ItemDefaultTypeInternal {
constexpr AppEntityPayload_ItemDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppEntityPayload_ItemDefaultTypeInternal() {}
union {
AppEntityPayload_Item _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppEntityPayload_ItemDefaultTypeInternal _AppEntityPayload_Item_default_instance_;
constexpr AppEntityPayload::AppEntityPayload(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: items_()
, value_(false)
, hasprotection_(false)
, capacity_(0)
, protectionexpiry_(0u){}
struct AppEntityPayloadDefaultTypeInternal {
constexpr AppEntityPayloadDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppEntityPayloadDefaultTypeInternal() {}
union {
AppEntityPayload _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppEntityPayloadDefaultTypeInternal _AppEntityPayload_default_instance_;
constexpr AppTeamInfo_Member::AppTeamInfo_Member(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: name_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string)
, steamid_(uint64_t{0u})
, x_(0)
, y_(0)
, spawntime_(0u)
, isonline_(false)
, isalive_(false)
, deathtime_(0u){}
struct AppTeamInfo_MemberDefaultTypeInternal {
constexpr AppTeamInfo_MemberDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppTeamInfo_MemberDefaultTypeInternal() {}
union {
AppTeamInfo_Member _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppTeamInfo_MemberDefaultTypeInternal _AppTeamInfo_Member_default_instance_;
constexpr AppTeamInfo_Note::AppTeamInfo_Note(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: type_(0)
, x_(0)
, y_(0){}
struct AppTeamInfo_NoteDefaultTypeInternal {
constexpr AppTeamInfo_NoteDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppTeamInfo_NoteDefaultTypeInternal() {}
union {
AppTeamInfo_Note _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppTeamInfo_NoteDefaultTypeInternal _AppTeamInfo_Note_default_instance_;
constexpr AppTeamInfo::AppTeamInfo(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: members_()
, mapnotes_()
, leadermapnotes_()
, leadersteamid_(uint64_t{0u}){}
struct AppTeamInfoDefaultTypeInternal {
constexpr AppTeamInfoDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppTeamInfoDefaultTypeInternal() {}
union {
AppTeamInfo _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppTeamInfoDefaultTypeInternal _AppTeamInfo_default_instance_;
constexpr AppTeamMessage::AppTeamMessage(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: name_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string)
, message_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string)
, color_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string)
, steamid_(uint64_t{0u})
, time_(0u){}
struct AppTeamMessageDefaultTypeInternal {
constexpr AppTeamMessageDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppTeamMessageDefaultTypeInternal() {}
union {
AppTeamMessage _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppTeamMessageDefaultTypeInternal _AppTeamMessage_default_instance_;
constexpr AppTeamChat::AppTeamChat(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: messages_(){}
struct AppTeamChatDefaultTypeInternal {
constexpr AppTeamChatDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppTeamChatDefaultTypeInternal() {}
union {
AppTeamChat _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppTeamChatDefaultTypeInternal _AppTeamChat_default_instance_;
constexpr AppMarker_SellOrder::AppMarker_SellOrder(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: itemid_(0)
, quantity_(0)
, currencyid_(0)
, costperitem_(0)
, amountinstock_(0)
, itemisblueprint_(false)
, currencyisblueprint_(false)
, itemcondition_(0)
, itemconditionmax_(0){}
struct AppMarker_SellOrderDefaultTypeInternal {
constexpr AppMarker_SellOrderDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppMarker_SellOrderDefaultTypeInternal() {}
union {
AppMarker_SellOrder _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppMarker_SellOrderDefaultTypeInternal _AppMarker_SellOrder_default_instance_;
constexpr AppMarker::AppMarker(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: sellorders_()
, name_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string)
, color1_(nullptr)
, color2_(nullptr)
, id_(0u)
, type_(0)
, x_(0)
, y_(0)
, steamid_(uint64_t{0u})
, rotation_(0)
, radius_(0)
, alpha_(0)
, outofstock_(false){}
struct AppMarkerDefaultTypeInternal {
constexpr AppMarkerDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppMarkerDefaultTypeInternal() {}
union {
AppMarker _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppMarkerDefaultTypeInternal _AppMarker_default_instance_;
constexpr AppMapMarkers::AppMapMarkers(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: markers_(){}
struct AppMapMarkersDefaultTypeInternal {
constexpr AppMapMarkersDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppMapMarkersDefaultTypeInternal() {}
union {
AppMapMarkers _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppMapMarkersDefaultTypeInternal _AppMapMarkers_default_instance_;
constexpr AppClanInfo::AppClanInfo(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: claninfo_(nullptr){}
struct AppClanInfoDefaultTypeInternal {
constexpr AppClanInfoDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppClanInfoDefaultTypeInternal() {}
union {
AppClanInfo _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppClanInfoDefaultTypeInternal _AppClanInfo_default_instance_;
constexpr AppClanMessage::AppClanMessage(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: name_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string)
, message_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string)
, steamid_(uint64_t{0u})
, time_(int64_t{0}){}
struct AppClanMessageDefaultTypeInternal {
constexpr AppClanMessageDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppClanMessageDefaultTypeInternal() {}
union {
AppClanMessage _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppClanMessageDefaultTypeInternal _AppClanMessage_default_instance_;
constexpr AppClanChat::AppClanChat(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: messages_(){}
struct AppClanChatDefaultTypeInternal {
constexpr AppClanChatDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppClanChatDefaultTypeInternal() {}
union {
AppClanChat _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppClanChatDefaultTypeInternal _AppClanChat_default_instance_;
constexpr AppNexusAuth::AppNexusAuth(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: serverid_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string)
, playertoken_(0){}
struct AppNexusAuthDefaultTypeInternal {
constexpr AppNexusAuthDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppNexusAuthDefaultTypeInternal() {}
union {
AppNexusAuth _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppNexusAuthDefaultTypeInternal _AppNexusAuth_default_instance_;
constexpr AppTeamChanged::AppTeamChanged(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: teaminfo_(nullptr)
, playerid_(uint64_t{0u}){}
struct AppTeamChangedDefaultTypeInternal {
constexpr AppTeamChangedDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppTeamChangedDefaultTypeInternal() {}
union {
AppTeamChanged _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppTeamChangedDefaultTypeInternal _AppTeamChanged_default_instance_;
constexpr AppNewTeamMessage::AppNewTeamMessage(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: message_(nullptr){}
struct AppNewTeamMessageDefaultTypeInternal {
constexpr AppNewTeamMessageDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppNewTeamMessageDefaultTypeInternal() {}
union {
AppNewTeamMessage _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppNewTeamMessageDefaultTypeInternal _AppNewTeamMessage_default_instance_;
constexpr AppEntityChanged::AppEntityChanged(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: payload_(nullptr)
, entityid_(0u){}
struct AppEntityChangedDefaultTypeInternal {
constexpr AppEntityChangedDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppEntityChangedDefaultTypeInternal() {}
union {
AppEntityChanged _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppEntityChangedDefaultTypeInternal _AppEntityChanged_default_instance_;
constexpr AppClanChanged::AppClanChanged(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: claninfo_(nullptr){}
struct AppClanChangedDefaultTypeInternal {
constexpr AppClanChangedDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppClanChangedDefaultTypeInternal() {}
union {
AppClanChanged _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppClanChangedDefaultTypeInternal _AppClanChanged_default_instance_;
constexpr AppNewClanMessage::AppNewClanMessage(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: message_(nullptr)
, clanid_(int64_t{0}){}
struct AppNewClanMessageDefaultTypeInternal {
constexpr AppNewClanMessageDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppNewClanMessageDefaultTypeInternal() {}
union {
AppNewClanMessage _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppNewClanMessageDefaultTypeInternal _AppNewClanMessage_default_instance_;
constexpr AppCameraSubscribe::AppCameraSubscribe(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: cameraid_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string){}
struct AppCameraSubscribeDefaultTypeInternal {
constexpr AppCameraSubscribeDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppCameraSubscribeDefaultTypeInternal() {}
union {
AppCameraSubscribe _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppCameraSubscribeDefaultTypeInternal _AppCameraSubscribe_default_instance_;
constexpr AppCameraInput::AppCameraInput(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: mousedelta_(nullptr)
, buttons_(0){}
struct AppCameraInputDefaultTypeInternal {
constexpr AppCameraInputDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppCameraInputDefaultTypeInternal() {}
union {
AppCameraInput _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppCameraInputDefaultTypeInternal _AppCameraInput_default_instance_;
constexpr AppCameraInfo::AppCameraInfo(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: width_(0)
, height_(0)
, nearplane_(0)
, farplane_(0)
, controlflags_(0){}
struct AppCameraInfoDefaultTypeInternal {
constexpr AppCameraInfoDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppCameraInfoDefaultTypeInternal() {}
union {
AppCameraInfo _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppCameraInfoDefaultTypeInternal _AppCameraInfo_default_instance_;
constexpr AppCameraRays_Entity::AppCameraRays_Entity(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: name_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string)
, position_(nullptr)
, rotation_(nullptr)
, size_(nullptr)
, entityid_(0u)
, type_(1)
{}
struct AppCameraRays_EntityDefaultTypeInternal {
constexpr AppCameraRays_EntityDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppCameraRays_EntityDefaultTypeInternal() {}
union {
AppCameraRays_Entity _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppCameraRays_EntityDefaultTypeInternal _AppCameraRays_Entity_default_instance_;
constexpr AppCameraRays::AppCameraRays(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: entities_()
, raydata_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string)
, verticalfov_(0)
, sampleoffset_(0)
, distance_(0){}
struct AppCameraRaysDefaultTypeInternal {
constexpr AppCameraRaysDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~AppCameraRaysDefaultTypeInternal() {}
union {
AppCameraRays _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT AppCameraRaysDefaultTypeInternal _AppCameraRays_default_instance_;
} // namespace rustplus
static ::PROTOBUF_NAMESPACE_ID::Metadata file_level_metadata_rustplus_2eproto[56];
static const ::PROTOBUF_NAMESPACE_ID::EnumDescriptor* file_level_enum_descriptors_rustplus_2eproto[3];
static constexpr ::PROTOBUF_NAMESPACE_ID::ServiceDescriptor const** file_level_service_descriptors_rustplus_2eproto = nullptr;
const ::PROTOBUF_NAMESPACE_ID::uint32 TableStruct_rustplus_2eproto::offsets[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = {
PROTOBUF_FIELD_OFFSET(::rustplus::Vector2, _has_bits_),
PROTOBUF_FIELD_OFFSET(::rustplus::Vector2, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
PROTOBUF_FIELD_OFFSET(::rustplus::Vector2, x_),
PROTOBUF_FIELD_OFFSET(::rustplus::Vector2, y_),
0,
1,
PROTOBUF_FIELD_OFFSET(::rustplus::Vector3, _has_bits_),
PROTOBUF_FIELD_OFFSET(::rustplus::Vector3, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
PROTOBUF_FIELD_OFFSET(::rustplus::Vector3, x_),
PROTOBUF_FIELD_OFFSET(::rustplus::Vector3, y_),
PROTOBUF_FIELD_OFFSET(::rustplus::Vector3, z_),
0,
1,
2,
PROTOBUF_FIELD_OFFSET(::rustplus::Vector4, _has_bits_),
PROTOBUF_FIELD_OFFSET(::rustplus::Vector4, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
PROTOBUF_FIELD_OFFSET(::rustplus::Vector4, x_),
PROTOBUF_FIELD_OFFSET(::rustplus::Vector4, y_),
PROTOBUF_FIELD_OFFSET(::rustplus::Vector4, z_),
PROTOBUF_FIELD_OFFSET(::rustplus::Vector4, w_),
0,
1,
2,
3,
PROTOBUF_FIELD_OFFSET(::rustplus::Half3, _has_bits_),
PROTOBUF_FIELD_OFFSET(::rustplus::Half3, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
PROTOBUF_FIELD_OFFSET(::rustplus::Half3, x_),
PROTOBUF_FIELD_OFFSET(::rustplus::Half3, y_),
PROTOBUF_FIELD_OFFSET(::rustplus::Half3, z_),
0,
1,
2,
PROTOBUF_FIELD_OFFSET(::rustplus::Color, _has_bits_),
PROTOBUF_FIELD_OFFSET(::rustplus::Color, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
PROTOBUF_FIELD_OFFSET(::rustplus::Color, r_),
PROTOBUF_FIELD_OFFSET(::rustplus::Color, g_),
PROTOBUF_FIELD_OFFSET(::rustplus::Color, b_),
PROTOBUF_FIELD_OFFSET(::rustplus::Color, a_),
0,
1,
2,
3,
PROTOBUF_FIELD_OFFSET(::rustplus::Ray, _has_bits_),
PROTOBUF_FIELD_OFFSET(::rustplus::Ray, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
PROTOBUF_FIELD_OFFSET(::rustplus::Ray, origin_),
PROTOBUF_FIELD_OFFSET(::rustplus::Ray, direction_),
0,
1,
PROTOBUF_FIELD_OFFSET(::rustplus::ClanActionResult, _has_bits_),
PROTOBUF_FIELD_OFFSET(::rustplus::ClanActionResult, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
PROTOBUF_FIELD_OFFSET(::rustplus::ClanActionResult, requestid_),
PROTOBUF_FIELD_OFFSET(::rustplus::ClanActionResult, result_),
PROTOBUF_FIELD_OFFSET(::rustplus::ClanActionResult, hasclaninfo_),
PROTOBUF_FIELD_OFFSET(::rustplus::ClanActionResult, claninfo_),
1,
2,
3,
0,
PROTOBUF_FIELD_OFFSET(::rustplus::ClanInfo_Role, _has_bits_),
PROTOBUF_FIELD_OFFSET(::rustplus::ClanInfo_Role, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
PROTOBUF_FIELD_OFFSET(::rustplus::ClanInfo_Role, roleid_),
PROTOBUF_FIELD_OFFSET(::rustplus::ClanInfo_Role, rank_),
PROTOBUF_FIELD_OFFSET(::rustplus::ClanInfo_Role, name_),
PROTOBUF_FIELD_OFFSET(::rustplus::ClanInfo_Role, cansetmotd_),
PROTOBUF_FIELD_OFFSET(::rustplus::ClanInfo_Role, cansetlogo_),
PROTOBUF_FIELD_OFFSET(::rustplus::ClanInfo_Role, caninvite_),
PROTOBUF_FIELD_OFFSET(::rustplus::ClanInfo_Role, cankick_),
PROTOBUF_FIELD_OFFSET(::rustplus::ClanInfo_Role, canpromote_),
PROTOBUF_FIELD_OFFSET(::rustplus::ClanInfo_Role, candemote_),
PROTOBUF_FIELD_OFFSET(::rustplus::ClanInfo_Role, cansetplayernotes_),
PROTOBUF_FIELD_OFFSET(::rustplus::ClanInfo_Role, canaccesslogs_),
1,
2,
0,
3,
4,
5,
6,
7,
8,
9,
10,
PROTOBUF_FIELD_OFFSET(::rustplus::ClanInfo_Member, _has_bits_),
PROTOBUF_FIELD_OFFSET(::rustplus::ClanInfo_Member, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
PROTOBUF_FIELD_OFFSET(::rustplus::ClanInfo_Member, steamid_),
PROTOBUF_FIELD_OFFSET(::rustplus::ClanInfo_Member, roleid_),
PROTOBUF_FIELD_OFFSET(::rustplus::ClanInfo_Member, joined_),
PROTOBUF_FIELD_OFFSET(::rustplus::ClanInfo_Member, lastseen_),
PROTOBUF_FIELD_OFFSET(::rustplus::ClanInfo_Member, notes_),
PROTOBUF_FIELD_OFFSET(::rustplus::ClanInfo_Member, online_),
1,