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 virtual ~PlatformRuntimeInfo();
79 // NOLINTEND
80
81public:
82 // destructor thunk
83 // NOLINTBEGIN
84 MCNAPI void $dtor();
85 // NOLINTEND
86
87public:
88 // vftables
89 // NOLINTBEGIN
90 MCNAPI static void** $vftable();
91 // NOLINTEND
92};
93
94} // namespace Bedrock
static MCAPI void ** $vftable()
Definition Alias.h:14