LeviLamina
Loading...
Searching...
No Matches
SharedData.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/config/ChatRestrictionLevel.h"
7#include "mc/config/player_capabilities/ISharedData.h"
8
9// auto generated forward declare list
10// clang-format off
11class Level;
12struct GameRuleId;
13// clang-format on
14
15namespace PlayerCapabilities {
16
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 8, ::Level const&> mLevel;
22 // NOLINTEND
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 // vIndex: 1
28 virtual ::std::optional<bool> isGameRuleEnabled(::GameRuleId const rule) const /*override*/;
29
30 // vIndex: 2
31 virtual ::ChatRestrictionLevel getChatRestrictionLevel() const /*override*/;
32
33 // vIndex: 0
34 virtual ~SharedData() /*override*/ = default;
35 // NOLINTEND
36
37public:
38 // destructor thunk
39 // NOLINTBEGIN
40
41 // NOLINTEND
42
43public:
44 // virtual function thunks
45 // NOLINTBEGIN
46 MCAPI ::std::optional<bool> $isGameRuleEnabled(::GameRuleId const rule) const;
47
48 MCAPI ::ChatRestrictionLevel $getChatRestrictionLevel() const;
49 // NOLINTEND
50
51public:
52 // vftables
53 // NOLINTBEGIN
54 MCAPI static void** $vftable();
55 // NOLINTEND
56};
57
58} // namespace PlayerCapabilities
Definition Level.h:234
Definition GameRuleId.h:8
Definition ISharedData.h:15
Definition SharedData.h:17