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
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
31
32public:
33 // member functions
34 // NOLINTBEGIN
36 ::ScriptModuleMinecraft::ErrorMemberType invalidActor,
37 ::ScriptModuleMinecraft::ScriptActor const& functionName,
38 ::std::string_view memberType
39 );
40
42 ::ScriptModuleMinecraft::ErrorMemberType memberType,
43 ::ScriptModuleMinecraft::ScriptActorData const& invalidActorData,
44 ::std::string_view functionName
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 invalidActor,
61 ::ScriptModuleMinecraft::ScriptActor const& functionName,
62 ::std::string_view memberType
63 );
64
65 MCAPI void* $ctor(
66 ::ScriptModuleMinecraft::ErrorMemberType memberType,
67 ::ScriptModuleMinecraft::ScriptActorData const& invalidActorData,
68 ::std::string_view functionName
69 );
70 // NOLINTEND
71
72public:
73 // destructor thunk
74 // NOLINTBEGIN
75 MCAPI void $dtor();
76 // NOLINTEND
77};
78
79} // namespace ScriptModuleMinecraft
Definition ScriptActor.h:58
Definition ScriptActorData.h:12
Definition ScriptInvalidActorError.h:18
Definition Error.h:7
Definition Alias.h:14