LeviLamina
Loading...
Searching...
No Matches
IMinecraftApp.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 FileArchiver;
12class Minecraft;
13namespace Automation { class AutomationClient; }
14// clang-format on
15
17public:
18 // virtual functions
19 // NOLINTBEGIN
20 // vIndex: 0
21 virtual ~IMinecraftApp();
22
23 // vIndex: 1
24 virtual ::Bedrock::NotNullNonOwnerPtr<::Minecraft> getPrimaryMinecraft() = 0;
25
26 // vIndex: 2
27 virtual ::Bedrock::NotNullNonOwnerPtr<::Automation::AutomationClient> getAutomationClient() const = 0;
28
29 // vIndex: 3
30 virtual bool isEduMode() const = 0;
31
32 // vIndex: 4
33 virtual bool isDedicatedServer() const = 0;
34
35 // vIndex: 5
36 virtual void onNetworkMaxPlayersChanged(uint) = 0;
37
38 // vIndex: 6
39 virtual ::IGameModuleShared& getGameModuleShared() = 0;
40
41 // vIndex: 7
42 virtual void requestServerShutdown(::std::string const&) = 0;
43
44 // vIndex: 8
45 virtual ::Bedrock::NotNullNonOwnerPtr<::FileArchiver> getFileArchiver() const = 0;
46 // NOLINTEND
47
48public:
49 // destructor thunk
50 // NOLINTBEGIN
51 MCFOLD void $dtor();
52 // NOLINTEND
53
54public:
55 // virtual function thunks
56 // NOLINTBEGIN
57
58 // NOLINTEND
59
60public:
61 // vftables
62 // NOLINTBEGIN
63 MCAPI static void** $vftable();
64 // NOLINTEND
65};
Definition FileArchiver.h:27
Definition IGameModuleShared.h:12
Definition IMinecraftApp.h:16
Definition Minecraft.h:53