LeviLamina
Loading...
Searching...
No Matches
ScriptPlaytestLauncher.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class Player;
8namespace Scripting { class WeakLifetimeScope; }
9namespace Scripting { struct ClassBinding; }
10namespace Scripting { struct EnumBinding; }
11// clang-format on
12
13namespace Editor::ScriptModule {
14
15class ScriptPlaytestLauncher {
16public:
17 // member variables
18 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 ScriptPlaytestLauncher& operator=(ScriptPlaytestLauncher const&);
27 ScriptPlaytestLauncher(ScriptPlaytestLauncher const&);
28 ScriptPlaytestLauncher();
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 virtual ~ScriptPlaytestLauncher() = default;
34 // NOLINTEND
35
36public:
37 // member functions
38 // NOLINTBEGIN
40 // NOLINTEND
41
42public:
43 // static functions
44 // NOLINTBEGIN
45 MCNAPI static ::Scripting::ClassBinding bindClass();
46
47 MCNAPI static ::Scripting::EnumBinding bindSessionResultEnums();
48 // NOLINTEND
49
50public:
51 // constructor thunks
52 // NOLINTBEGIN
53 MCNAPI void* $ctor(::Player& player, ::Scripting::WeakLifetimeScope const& scope);
54 // NOLINTEND
55
56public:
57 // vftables
58 // NOLINTBEGIN
59 MCNAPI static void** $vftable();
60 // NOLINTEND
61};
62
63} // namespace Editor::ScriptModule
MCAPI void * $ctor(::Player &player, ::Scripting::WeakLifetimeScope const &scope)
MCAPI ScriptPlaytestLauncher(::Player &player, ::Scripting::WeakLifetimeScope const &scope)
static MCAPI ::Scripting::ClassBinding bindClass()
static MCAPI ::Scripting::EnumBinding bindSessionResultEnums()
Definition Player.h:137
Definition WeakLifetimeScope.h:14
Definition ClassBinding.h:19
Definition EnumBinding.h:15
Definition Alias.h:14