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