LeviLamina
Loading...
Searching...
No Matches
ScriptMinecraftNetModuleFactory.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/NonOwnerPointer.h"
7#include "mc/deps/scripting/binding_factory/GenericModuleBindingFactory.h"
8
9// auto generated forward declare list
10// clang-format off
11class Scheduler;
12class ServerLevel;
13namespace Scripting { class ModuleBindingBuilder; }
14namespace Scripting { struct ContextConfig; }
15namespace Scripting { struct ModuleBinding; }
16namespace mce { class UUID; }
17// clang-format on
18
20public:
21 // member variables
22 // NOLINTBEGIN
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
32
33public:
34 // virtual functions
35 // NOLINTBEGIN
36 // vIndex: 0
37 virtual ~ScriptMinecraftNetModuleFactory() /*override*/ = default;
38 // NOLINTEND
39
40public:
41 // member functions
42 // NOLINTBEGIN
43 MCNAPI
45
46 MCNAPI void _addVersions();
47
48 MCNAPI ::Scripting::ModuleBinding _generateBindings(
50 ::std::optional<::Scripting::ContextConfig> contextConfig,
51 bool allowUntagged,
52 ::std::vector<::std::string> const& allowedTags
53 );
54 // NOLINTEND
55
56public:
57 // static variables
58 // NOLINTBEGIN
59 MCNAPI static char const*& ModuleName();
60
61 MCNAPI static ::mce::UUID const& ModuleUUID();
62 // NOLINTEND
63
64public:
65 // constructor thunks
66 // NOLINTBEGIN
67 MCNAPI void* $ctor(::Bedrock::NonOwnerPointer<::Scheduler> serverScheduler, ::ServerLevel* level);
68 // NOLINTEND
69
70public:
71 // vftables
72 // NOLINTBEGIN
73 MCNAPI static void** $vftable();
74 // NOLINTEND
75};
Definition NonOwnerPointer.h:9
Definition Scheduler.h:13
Definition ScriptMinecraftNetModuleFactory.h:19
MCAPI ScriptMinecraftNetModuleFactory(::Bedrock::NonOwnerPointer<::Scheduler > serverScheduler, ::ServerLevel *level)
MCAPI void * $ctor(::Bedrock::NonOwnerPointer<::Scheduler > serverScheduler, ::ServerLevel *level)
MCAPI::Scripting::ModuleBinding _generateBindings(::Scripting::ModuleBindingBuilder &moduleBuilder, ::std::optional<::Scripting::ContextConfig > contextConfig, bool allowUntagged, ::std::vector<::std::string > const &allowedTags)
static MCAPI ::mce::UUID const & ModuleUUID()
static MCAPI void ** $vftable()
static MCAPI char const *& ModuleName()
Definition GenericModuleBindingFactory.h:20
Definition ModuleBindingBuilder.h:30
Definition ServerLevel.h:54
Definition Alias.h:14