LeviLamina
Loading...
Searching...
No Matches
ExternalDataSnapshot.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 ExternalDataSnapshot : public ::ExternalDataInterface {
17public:
18 // member variables
19 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 ExternalDataSnapshot& operator=(ExternalDataSnapshot const&);
26 ExternalDataSnapshot(ExternalDataSnapshot const&);
27 ExternalDataSnapshot();
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 virtual ~ExternalDataSnapshot() /*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 ::InputMode getInputMode() const /*override*/;
43
44 virtual ::GameType getDefaultGameType() const /*override*/;
45
46 virtual float getSmoothRotationSpeed() const /*override*/;
47 // NOLINTEND
48
49public:
50 // virtual function thunks
51 // NOLINTBEGIN
52#ifdef LL_PLAT_C
53 MCNAPI bool $isInWorldAndNotShowingAnyMenuScreens() const;
54
55 MCNAPI bool $isPausingGame() const;
56
57 MCNAPI ::AdventureSettings const& $getAdventureSettings() const;
58
59 MCNAPI ::ClientPlayMode $getPlayMode() const;
60
61 MCNAPI ::InputMode $getInputMode() const;
62
63 MCNAPI ::GameType $getDefaultGameType() const;
64
65 MCNAPI float $getSmoothRotationSpeed() const;
66#endif
67
68
69 // NOLINTEND
70
71public:
72 // vftables
73 // NOLINTBEGIN
74 MCNAPI static void** $vftable();
75 // NOLINTEND
76};
Definition AdventureSettings.h:5
Definition ExternalDataInterface.h:15
static MCAPI void ** $vftable()
Definition Alias.h:14