LeviLamina
Loading...
Searching...
No Matches
ScriptSpawnRulesInvalidRegistryError.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 ScriptCustomSpawnRulesRegistry; }
12namespace Scripting { struct ErrorBinding; }
13// clang-format on
14
15namespace ScriptModuleMinecraft {
16
17struct ScriptSpawnRulesInvalidRegistryError : public ::Scripting::BaseError {
18public:
19 // member functions
20 // NOLINTBEGIN
21 MCAPI ScriptSpawnRulesInvalidRegistryError();
22
23 MCAPI ~ScriptSpawnRulesInvalidRegistryError();
24 // NOLINTEND
25
26public:
27 // static functions
28 // NOLINTBEGIN
29 MCAPI static ::Scripting::ErrorBinding bind();
30
31 MCAPI static ::Scripting::Result<void, ::ScriptModuleMinecraft::ScriptSpawnRulesInvalidRegistryError>
33 // NOLINTEND
34
35public:
36 // constructor thunks
37 // NOLINTBEGIN
38 MCAPI void* $ctor();
39 // NOLINTEND
40
41public:
42 // destructor thunk
43 // NOLINTBEGIN
44 MCFOLD void $dtor();
45 // NOLINTEND
46};
47
48} // namespace ScriptModuleMinecraft
Definition ScriptCustomSpawnRulesRegistry.h:25
Definition BaseError.h:12
Definition ErrorBinding.h:15