LeviLamina
Loading...
Searching...
No Matches
ExternalDataServerLevel.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/input/InputMode.h"
7#include "mc/entity/utilities/ExternalDataInterface.h"
8#include "mc/input/ClientPlayMode.h"
9#include "mc/world/level/GameType.h"
10
11// auto generated forward declare list
12// clang-format off
14// clang-format on
15
16struct ExternalDataServerLevel : public ::ExternalDataInterface {
17public:
18 // member variables
19 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 ExternalDataServerLevel& operator=(ExternalDataServerLevel const&);
26 ExternalDataServerLevel(ExternalDataServerLevel const&);
27 ExternalDataServerLevel();
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 virtual ~ExternalDataServerLevel() /*override*/ = default;
33
34 virtual bool isInWorldAndNotShowingAnyMenuScreens() const /*override*/;
35
36 virtual bool isPausingGame() const /*override*/;
37
38 virtual ::AdventureSettings const& getAdventureSettings() const /*override*/;
39
40 virtual ::ClientPlayMode getPlayMode() const /*override*/;
41
42 virtual float getSmoothRotationSpeed() const /*override*/;
43
44 virtual ::InputMode getInputMode() const /*override*/;
45
46 virtual ::GameType getDefaultGameType() const /*override*/;
47 // NOLINTEND
48
49public:
50 // virtual function thunks
51 // NOLINTBEGIN
53
54 MCNAPI bool $isPausingGame() const;
55
56 MCNAPI ::AdventureSettings const& $getAdventureSettings() const;
57
58 MCNAPI ::ClientPlayMode $getPlayMode() const;
59
60 MCNAPI float $getSmoothRotationSpeed() const;
61
62 MCNAPI ::InputMode $getInputMode() const;
63
64 MCNAPI ::GameType $getDefaultGameType() const;
65
66
67 // NOLINTEND
68
69public:
70 // vftables
71 // NOLINTBEGIN
72 MCNAPI static void** $vftable();
73 // NOLINTEND
74};
Definition AdventureSettings.h:5
Definition ExternalDataInterface.h:15
MCAPI bool $isPausingGame() const
MCAPI::ClientPlayMode $getPlayMode() const
MCAPI float $getSmoothRotationSpeed() const
MCAPI bool $isInWorldAndNotShowingAnyMenuScreens() const
MCAPI::AdventureSettings const & $getAdventureSettings() const
MCAPI::InputMode $getInputMode() const
MCAPI::GameType $getDefaultGameType() const
static MCAPI void ** $vftable()
Definition Alias.h:14