LeviLamina
Loading...
Searching...
No Matches
ScriptCannotKickPlayerError.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
15class ScriptCannotKickPlayerError : public ::Scripting::BaseError {
16public:
17 // prevent constructor by default
18 ScriptCannotKickPlayerError();
19
20public:
21 // member functions
22 // NOLINTBEGIN
23 MCNAPI explicit ScriptCannotKickPlayerError(::std::string const& playerType);
24 // NOLINTEND
25
26public:
27 // static functions
28 // NOLINTBEGIN
29 MCNAPI static ::Scripting::ErrorBinding bind();
30 // NOLINTEND
31
32public:
33 // constructor thunks
34 // NOLINTBEGIN
35 MCNAPI void* $ctor(::std::string const& playerType);
36 // NOLINTEND
37};
38
39} // namespace ScriptModuleServerAdmin
static MCAPI ::Scripting::ErrorBinding bind()
MCAPI ScriptCannotKickPlayerError(::std::string const &playerType)
MCAPI void * $ctor(::std::string const &playerType)
Definition BaseError.h:12
Definition ErrorBinding.h:16