LeviLamina
Loading...
Searching...
No Matches
ScriptSystemInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deviceinfo/DeviceMemoryTier.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Scripting { struct ClassBinding; }
11// clang-format on
12
13namespace ScriptModuleMinecraft {
14
15class ScriptSystemInfo {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<4, 4, ::DeviceMemoryTier> mMemoryTier;
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 ScriptSystemInfo();
25
26public:
27 // virtual functions
28 // NOLINTBEGIN
29 virtual ~ScriptSystemInfo();
30 // NOLINTEND
31
32public:
33 // member functions
34 // NOLINTBEGIN
35 MCAPI explicit ScriptSystemInfo(::DeviceMemoryTier memoryTier);
36 // NOLINTEND
37
38public:
39 // static functions
40 // NOLINTBEGIN
41 MCAPI static ::Scripting::ClassBinding bind();
42 // NOLINTEND
43
44public:
45 // constructor thunks
46 // NOLINTBEGIN
47 MCAPI void* $ctor(::DeviceMemoryTier memoryTier);
48 // NOLINTEND
49
50public:
51 // destructor thunk
52 // NOLINTBEGIN
53 MCFOLD void $dtor();
54 // NOLINTEND
55
56public:
57 // vftables
58 // NOLINTBEGIN
59 MCNAPI static void** $vftable();
60 // NOLINTEND
61};
62
63} // namespace ScriptModuleMinecraft
Definition ClassBinding.h:19