LeviLamina
Loading...
Searching...
No Matches
ScriptActorSpawnError.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/world/level/ActorValidationError.h"
8
9namespace ScriptModuleMinecraft {
10
12public:
13 // prevent constructor by default
15
16public:
17 // member functions
18 // NOLINTBEGIN
19 MCAPI explicit ScriptActorSpawnError(::ActorValidationError error);
20
22 // NOLINTEND
23
24public:
25 // constructor thunks
26 // NOLINTBEGIN
27 MCAPI void* $ctor(::ActorValidationError error);
28 // NOLINTEND
29
30public:
31 // destructor thunk
32 // NOLINTBEGIN
33 MCFOLD void $dtor();
34 // NOLINTEND
35};
36
37} // namespace ScriptModuleMinecraft
Definition ScriptActorSpawnError.h:11
Definition BaseError.h:12