LeviLamina
Loading...
Searching...
No Matches
PlatformRuntimeInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Bedrock {
6
7struct PlatformRuntimeInfo {
8public:
9 // member variables
10 // NOLINTBEGIN
67 // NOLINTEND
68
69public:
70 // prevent constructor by default
71 PlatformRuntimeInfo& operator=(PlatformRuntimeInfo const&);
72 PlatformRuntimeInfo(PlatformRuntimeInfo const&);
73 PlatformRuntimeInfo();
74
75public:
76 // virtual functions
77 // NOLINTBEGIN
78#ifdef LL_PLAT_S
79 virtual ~PlatformRuntimeInfo() = default;
80#else // LL_PLAT_C
81 virtual ~PlatformRuntimeInfo();
82#endif
83
84 // NOLINTEND
85
86public:
87 // destructor thunk
88 // NOLINTBEGIN
89#ifdef LL_PLAT_C
90 MCNAPI void $dtor();
91#endif
92 // NOLINTEND
93
94public:
95 // vftables
96 // NOLINTBEGIN
97 MCNAPI static void** $vftable();
98 // NOLINTEND
99};
100
101} // namespace Bedrock
static MCAPI void ** $vftable()
Definition Alias.h:14