LeviLamina
Loading...
Searching...
No Matches
DisconnectedError.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 ErrorBinding; }
11// clang-format on
12
13namespace ScriptModuleServerAdmin {
14
15struct DisconnectedError : public ::Scripting::BaseError {
16public:
17 // member variables
18 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 DisconnectedError& operator=(DisconnectedError const&);
25 DisconnectedError(DisconnectedError const&);
26 DisconnectedError();
27
28public:
29 // member functions
30 // NOLINTBEGIN
31 MCNAPI DisconnectedError(::std::string const& message, ::std::string const& playerId);
32
34 // NOLINTEND
35
36public:
37 // static functions
38 // NOLINTBEGIN
39 MCNAPI static ::Scripting::ErrorBinding bind();
40 // NOLINTEND
41
42public:
43 // constructor thunks
44 // NOLINTBEGIN
45 MCNAPI void* $ctor(::std::string const& message, ::std::string const& playerId);
46 // NOLINTEND
47
48public:
49 // destructor thunk
50 // NOLINTBEGIN
51 MCNAPI void $dtor();
52 // NOLINTEND
53};
54
55} // namespace ScriptModuleServerAdmin
MCAPI void * $ctor(::std::string const &message, ::std::string const &playerId)
MCAPI DisconnectedError(::std::string const &message, ::std::string const &playerId)
static MCAPI ::Scripting::ErrorBinding bind()
Definition BaseError.h:12
Definition ErrorBinding.h:16
Definition Alias.h:14