LeviLamina
Loading...
Searching...
No Matches
GetPropertyError.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
8// auto generated forward declare list
9// clang-format off
10namespace Scripting { struct Error; }
11// clang-format on
12
13namespace ScriptUtils {
14
15struct GetPropertyError : public ::Scripting::BaseError {
16public:
17 // prevent constructor by default
18 GetPropertyError();
19
20public:
21 // member functions
22 // NOLINTBEGIN
23 MCNAPI explicit GetPropertyError(::std::string_view propertyName);
24
25 MCNAPI explicit operator ::Scripting::Error() const;
26 // NOLINTEND
27
28public:
29 // constructor thunks
30 // NOLINTBEGIN
31 MCNAPI void* $ctor(::std::string_view propertyName);
32 // NOLINTEND
33};
34
35} // namespace ScriptUtils
MCAPI void * $ctor(::std::string_view propertyName)
MCAPI GetPropertyError(::std::string_view propertyName)
Definition BaseError.h:12
Definition Error.h:10