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