LeviLamina
Loading...
Searching...
No Matches
PlayerIDs.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Social {
6
7struct PlayerIDs {
8public:
9 // member variables
10 // NOLINTBEGIN
13 // NOLINTEND
14
15#ifdef LL_PLAT_S
16public:
17 // prevent constructor by default
18 PlayerIDs& operator=(PlayerIDs const&);
19 PlayerIDs(PlayerIDs const&);
20 PlayerIDs();
21
22#else // LL_PLAT_C
23public:
24 // prevent constructor by default
25 PlayerIDs& operator=(PlayerIDs const&);
26 PlayerIDs();
27
28#endif
29public:
30 // member functions
31 // NOLINTBEGIN
32#ifdef LL_PLAT_C
33 MCNAPI PlayerIDs(::Social::PlayerIDs const&);
34#endif
35
36 MCNAPI ~PlayerIDs();
37 // NOLINTEND
38
39public:
40 // constructor thunks
41 // NOLINTBEGIN
42#ifdef LL_PLAT_C
43 MCNAPI void* $ctor(::Social::PlayerIDs const&);
44#endif
45 // NOLINTEND
46
47public:
48 // destructor thunk
49 // NOLINTBEGIN
50 MCNAPI void $dtor();
51 // NOLINTEND
52};
53
54} // namespace Social
Definition PlayerIDs.h:7
MCAPI void $dtor()
Definition Alias.h:14