LeviLamina
Loading...
Searching...
No Matches
ScriptInvalidActorError.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#include "mc/scripting/modules/minecraft/actor/ErrorMemberType.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace ScriptModuleMinecraft { class ScriptActor; }
12namespace ScriptModuleMinecraft { struct ScriptActorData; }
13namespace Scripting { struct ErrorBinding; }
14// clang-format on
15
16namespace ScriptModuleMinecraft {
17
19public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<8, 32, ::std::string> mId;
23 ::ll::TypedStorage<8, 32, ::std::string> mType;
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
29
30public:
31 // member functions
32 // NOLINTBEGIN
34 ::ScriptModuleMinecraft::ErrorMemberType memberType,
35 ::ScriptModuleMinecraft::ScriptActor const& invalidActor,
36 ::std::string_view functionName
37 );
38
40 ::ScriptModuleMinecraft::ErrorMemberType memberType,
41 ::ScriptModuleMinecraft::ScriptActorData const& invalidActorData,
42 ::std::string_view functionName
43 );
44
46 // NOLINTEND
47
48public:
49 // static functions
50 // NOLINTBEGIN
51 MCAPI static ::Scripting::ErrorBinding bind();
52 // NOLINTEND
53
54public:
55 // constructor thunks
56 // NOLINTBEGIN
57 MCAPI void* $ctor(
58 ::ScriptModuleMinecraft::ErrorMemberType memberType,
59 ::ScriptModuleMinecraft::ScriptActor const& invalidActor,
60 ::std::string_view functionName
61 );
62
63 MCAPI void* $ctor(
64 ::ScriptModuleMinecraft::ErrorMemberType memberType,
65 ::ScriptModuleMinecraft::ScriptActorData const& invalidActorData,
66 ::std::string_view functionName
67 );
68 // NOLINTEND
69
70public:
71 // destructor thunk
72 // NOLINTBEGIN
73 MCAPI void $dtor();
74 // NOLINTEND
75};
76
77} // namespace ScriptModuleMinecraft
Definition ScriptActor.h:62
Definition ScriptActorData.h:19
Definition ScriptInvalidActorError.h:18
Definition Error.h:7