LeviLamina
Loading...
Searching...
No Matches
GameModuleServer.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
8// auto generated forward declare list
9// clang-format off
10class BaseGameVersion;
11class CommandRegistry;
12class Experiments;
15class ItemRegistryRef;
16class Level;
17class Player;
20class ServerInstance;
23// clang-format on
24
26public:
27 // virtual functions
28 // NOLINTBEGIN
29 // vIndex: 0
30 virtual ~GameModuleServer();
31
32 // vIndex: 1
33 virtual void init(::Bedrock::NotNullNonOwnerPtr<::Level> const&) = 0;
34
35 // vIndex: 2
36 virtual void initializeBehaviorStack(
37 ::Experiments const&,
38 ::Bedrock::NotNullNonOwnerPtr<::IResourcePackRepository> const&,
40 ::BaseGameVersion const&,
41 bool
42 ) = 0;
43
44 // vIndex: 3
45 virtual void configureLevel(
46 ::Bedrock::NotNullNonOwnerPtr<::Level> const&,
47 ::Experiments const&,
49 ::BaseGameVersion const&,
51 ) = 0;
52
53 // vIndex: 4
54 virtual void configureNewPlayer(::Player&) = 0;
55
56 // vIndex: 5
57 virtual void configureDocumentation(::IGameModuleDocumentation&, ::ItemRegistryRef const) = 0;
58
59 // vIndex: 6
60 virtual void tick() = 0;
61
62 // vIndex: 7
63 virtual void setupCommands(::CommandRegistry&) = 0;
64
65 // vIndex: 8
66 virtual void
67 configureServerNetworkHandler(::ServerInstance&, ::Bedrock::NotNullNonOwnerPtr<::ServerNetworkHandler>) = 0;
68 // NOLINTEND
69
70public:
71 // destructor thunk
72 // NOLINTBEGIN
73 MCNAPI void $dtor();
74 // NOLINTEND
75
76public:
77 // virtual function thunks
78 // NOLINTBEGIN
79
80 // NOLINTEND
81
82public:
83 // vftables
84 // NOLINTBEGIN
85 MCNAPI static void** $vftable();
86 // NOLINTEND
87};
Definition BaseGameVersion.h:8
Definition CommandRegistry.h:45
Definition Experiments.h:14
Definition GameModuleServer.h:25
static MCAPI void ** $vftable()
MCAPI void $dtor()
Definition IGameModuleDocumentation.h:5
Definition IResourcePackRepository.h:33
Definition ItemRegistryRef.h:31
Definition Level.h:238
Definition Player.h:119
Definition ResourcePackManager.h:23
Definition ResourcePackStack.h:21
Definition ServerInstance.h:71
Definition ServerNetworkHandler.h:162
Definition ServerScriptManager.h:70