LeviLamina
Loading...
Searching...
No Matches
ScriptBlockAreaSize.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Scripting { struct ClassBinding; }
8// clang-format on
9
10namespace ScriptModuleMinecraft {
11
12class ScriptBlockAreaSize {
13public:
14 // member variables
15 // NOLINTBEGIN
16 ::ll::TypedStorage<4, 4, int> x;
17 ::ll::TypedStorage<4, 4, int> y;
18 ::ll::TypedStorage<4, 4, int> z;
19 // NOLINTEND
20
21#ifdef LL_PLAT_S
22#else // LL_PLAT_C
23public:
24 // prevent constructor by default
25 ScriptBlockAreaSize();
26
27#endif
28public:
29 // member functions
30 // NOLINTBEGIN
31#ifdef LL_PLAT_C
32 MCAPI ScriptBlockAreaSize(float x, float y, float z);
33#endif
34
35 MCFOLD bool operator==(::ScriptModuleMinecraft::ScriptBlockAreaSize const&) const;
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#ifdef LL_PLAT_C
48 MCAPI void* $ctor(float x, float y, float z);
49#endif
50 // NOLINTEND
51};
52
53} // namespace ScriptModuleMinecraft
Definition ScriptBlockAreaSize.h:12
Definition ClassBinding.h:19