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();
31
32#endif
33public:
34 // member functions
35 // NOLINTBEGIN
36#ifdef LL_PLAT_C
37 MCNAPI ExperiencePromotion(::ExperiencePromotion const&);
38
39 MCNAPI ::ExperiencePromotion& operator=(::ExperiencePromotion&&);
40
41 MCNAPI ::ExperiencePromotion& operator=(::ExperiencePromotion const&);
42
43 MCNAPI bool operator==(::ExperiencePromotion const&) const;
44
45 MCNAPI ~ExperiencePromotion();
46#endif
47 // NOLINTEND
48
49public:
50 // constructor thunks
51 // NOLINTBEGIN
52#ifdef LL_PLAT_C
53 MCNAPI void* $ctor(::ExperiencePromotion const&);
54#endif
55 // NOLINTEND
56
57public:
58 // destructor thunk
59 // NOLINTBEGIN
60#ifdef LL_PLAT_C
61 MCNAPI void $dtor();
62#endif
63 // NOLINTEND
64};
Definition Alias.h:14