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/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 ::std::string_view entityName
37 );
38
40 ::ScriptModuleMinecraft::ErrorMemberType memberType,
41 ::std::string_view typeId,
42 ::std::string_view id,
43 ::std::string_view functionName,
44 ::std::string_view entityName
45 );
46
48 // NOLINTEND
49
50public:
51 // static functions
52 // NOLINTBEGIN
53 MCAPI static ::Scripting::ErrorBinding bind();
54 // NOLINTEND
55
56public:
57 // constructor thunks
58 // NOLINTBEGIN
59 MCAPI void* $ctor(
60 ::ScriptModuleMinecraft::ErrorMemberType memberType,
61 ::ScriptModuleMinecraft::ScriptActor const& invalidActor,
62 ::std::string_view functionName,
63 ::std::string_view entityName
64 );
65
66 MCAPI void* $ctor(
67 ::ScriptModuleMinecraft::ErrorMemberType memberType,
68 ::std::string_view typeId,
69 ::std::string_view id,
70 ::std::string_view functionName,
71 ::std::string_view entityName
72 );
73 // NOLINTEND
74
75public:
76 // destructor thunk
77 // NOLINTBEGIN
78 MCAPI void $dtor();
79 // NOLINTEND
80};
81
82} // namespace ScriptModuleMinecraft
Definition ScriptActor.h:67
Definition ScriptInvalidActorError.h:17
Definition BaseError.h:12