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
15public:
16 // prevent constructor by default
17 PlayerIDs& operator=(PlayerIDs const&);
18 PlayerIDs(PlayerIDs const&);
19 PlayerIDs();
20
21public:
22 // member functions
23 // NOLINTBEGIN
24#ifdef LL_PLAT_C
25 MCNAPI ~PlayerIDs();
26#endif
27 // NOLINTEND
28
29public:
30 // destructor thunk
31 // NOLINTBEGIN
32#ifdef LL_PLAT_C
33 MCNAPI void $dtor();
34#endif
35 // NOLINTEND
36};
37
38} // namespace Social
Definition Alias.h:14