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