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
74public:
75 // virtual functions
76 // NOLINTBEGIN
77 virtual ~PlatformRuntimeInfo();
78 // NOLINTEND
79
80public:
81 // member functions
82 // NOLINTBEGIN
84 // NOLINTEND
85
86public:
87 // constructor thunks
88 // NOLINTBEGIN
89 MCNAPI void* $ctor();
90 // NOLINTEND
91
92public:
93 // destructor thunk
94 // NOLINTBEGIN
95 MCNAPI void $dtor();
96 // NOLINTEND
97
98public:
99 // vftables
100 // NOLINTBEGIN
101 MCNAPI static void** $vftable();
102 // NOLINTEND
103};
104
105} // namespace Bedrock
static MCAPI void ** $vftable()
Definition Alias.h:14