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