LeviLamina
Loading...
Searching...
No Matches
ScriptAABB.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/math/Vec3.h"
7
8// auto generated forward declare list
9// clang-format off
10class AABB;
11namespace Scripting { struct InterfaceBinding; }
12// clang-format on
13
14namespace ScriptModuleMinecraft {
15
16class ScriptAABB {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<4, 12, ::Vec3> mCenter;
21 ::ll::TypedStorage<4, 12, ::Vec3> mExtent;
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 ScriptAABB();
27
28public:
29 // member functions
30 // NOLINTBEGIN
31 MCAPI explicit ScriptAABB(::AABB const& aabb);
32 // NOLINTEND
33
34public:
35 // static functions
36 // NOLINTBEGIN
37 MCAPI static ::Scripting::InterfaceBinding bind();
38 // NOLINTEND
39
40public:
41 // constructor thunks
42 // NOLINTBEGIN
43 MCAPI void* $ctor(::AABB const& aabb);
44 // NOLINTEND
45};
46
47} // namespace ScriptModuleMinecraft
Definition AABB.h:18
Definition InterfaceBinding.h:16