LeviLamina
Loading...
Searching...
No Matches
ScriptBookPageContentError.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/scripting/modules/minecraft/items/components/ScriptBookError.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Scripting { struct ErrorBinding; }
11// clang-format on
12
13namespace ScriptModuleMinecraft {
14
15struct ScriptBookPageContentError : public ::ScriptModuleMinecraft::ScriptBookError {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<4, 4, int> mPageIndex;
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 ScriptBookPageContentError& operator=(ScriptBookPageContentError const&);
25 ScriptBookPageContentError();
26
27public:
28 // member functions
29 // NOLINTBEGIN
30 MCAPI ScriptBookPageContentError(::ScriptModuleMinecraft::ScriptBookPageContentError const&);
31
32 MCAPI ~ScriptBookPageContentError();
33 // NOLINTEND
34
35public:
36 // static functions
37 // NOLINTBEGIN
38 MCAPI static ::Scripting::ErrorBinding bind();
39 // NOLINTEND
40
41public:
42 // constructor thunks
43 // NOLINTBEGIN
45 // NOLINTEND
46
47public:
48 // destructor thunk
49 // NOLINTBEGIN
50 MCFOLD void $dtor();
51 // NOLINTEND
52};
53
54} // namespace ScriptModuleMinecraft
Definition ScriptBookError.h:16
Definition ScriptBookPageContentError.h:15
Definition ErrorBinding.h:15