LeviLamina
Loading...
Searching...
No Matches
ScriptCustomComponentInvalidRegistryError.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#include "mc/deps/scripting/runtime/Result.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace ScriptModuleMinecraft { class ScriptCustomComponentRegistry; }
12namespace Scripting { struct ErrorBinding; }
13// clang-format on
14
15namespace ScriptModuleMinecraft {
16
18public:
19 // prevent constructor by default
21
22public:
23 // member functions
24 // NOLINTBEGIN
25 MCNAPI explicit ScriptCustomComponentInvalidRegistryError(::std::string const& errorMessage);
26
28 // NOLINTEND
29
30public:
31 // static functions
32 // NOLINTBEGIN
33 MCNAPI static ::Scripting::ErrorBinding bind();
34
35 MCNAPI static ::Scripting::Result<void, ::ScriptModuleMinecraft::ScriptCustomComponentInvalidRegistryError>
37
38 MCNAPI static ::Scripting::Result<void, ::ScriptModuleMinecraft::ScriptCustomComponentInvalidRegistryError>
40 // NOLINTEND
41
42public:
43 // constructor thunks
44 // NOLINTBEGIN
45 MCNAPI void* $ctor(::std::string const& errorMessage);
46 // NOLINTEND
47
48public:
49 // destructor thunk
50 // NOLINTBEGIN
51 MCNAPI void $dtor();
52 // NOLINTEND
53};
54
55} // namespace ScriptModuleMinecraft
Definition ScriptCustomComponentRegistry.h:10
Definition ScriptCustomComponentInvalidRegistryError.h:17
MCAPI void * $ctor(::std::string const &errorMessage)
static MCAPI ::Scripting::Result< void, ::ScriptModuleMinecraft::ScriptCustomComponentInvalidRegistryError > validateV1(::ScriptModuleMinecraft::ScriptCustomComponentRegistry const &registry)
static MCAPI ::Scripting::Result< void, ::ScriptModuleMinecraft::ScriptCustomComponentInvalidRegistryError > validate(::ScriptModuleMinecraft::ScriptCustomComponentRegistry const &registry)
MCAPI ScriptCustomComponentInvalidRegistryError(::std::string const &errorMessage)
Definition BaseError.h:12