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/BaseError.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 Scripting { struct ErrorBinding; }
13// clang-format on
14
15namespace ScriptModuleMinecraft {
16
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 32, ::std::string> mId;
22 ::ll::TypedStorage<8, 32, ::std::string> mType;
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
28
29public:
30 // member functions
31 // NOLINTBEGIN
33 ::ScriptModuleMinecraft::ErrorMemberType memberType,
34 ::ScriptModuleMinecraft::ScriptActor const& invalidActor,
35 ::std::string_view functionName
36 );
37
39 ::ScriptModuleMinecraft::ErrorMemberType memberType,
40 ::std::string_view typeId,
41 ::std::string_view id,
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 ::std::string_view typeId,
66 ::std::string_view id,
67 ::std::string_view functionName
68 );
69 // NOLINTEND
70
71public:
72 // destructor thunk
73 // NOLINTBEGIN
74 MCAPI void $dtor();
75 // NOLINTEND
76};
77
78} // namespace ScriptModuleMinecraft
Definition ScriptActor.h:62
Definition ScriptInvalidActorError.h:17
Definition BaseError.h:12