LeviLamina
Loading...
Searching...
No Matches
GameTestCompletedError.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/gametest/framework/GameTestCompletedErrorReason.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace Scripting { struct ErrorBinding; }
12// clang-format on
13
14namespace gametest {
15
17public:
18 // member variables
19 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
28
29public:
30 // member functions
31 // NOLINTBEGIN
33 ::gametest::GameTestCompletedErrorReason type_,
34 ::std::string const& gameTestName_,
35 ::std::string const& methodName_
36 );
37
39 // NOLINTEND
40
41public:
42 // static functions
43 // NOLINTBEGIN
44 MCNAPI static ::Scripting::ErrorBinding bind();
45 // NOLINTEND
46
47public:
48 // constructor thunks
49 // NOLINTBEGIN
50 MCNAPI void* $ctor(
51 ::gametest::GameTestCompletedErrorReason type_,
52 ::std::string const& gameTestName_,
53 ::std::string const& methodName_
54 );
55 // NOLINTEND
56
57public:
58 // destructor thunk
59 // NOLINTBEGIN
60 MCNAPI void $dtor();
61 // NOLINTEND
62};
63
64} // namespace gametest
Definition BaseError.h:12
Definition GameTestCompletedError.h:16
static MCAPI ::Scripting::ErrorBinding bind()
MCAPI GameTestCompletedError(::gametest::GameTestCompletedErrorReason type_, ::std::string const &gameTestName_, ::std::string const &methodName_)
MCAPI void * $ctor(::gametest::GameTestCompletedErrorReason type_, ::std::string const &gameTestName_, ::std::string const &methodName_)
Definition Alias.h:14