LeviLamina
Loading...
Searching...
No Matches
EnderChestContainer.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/pub_sub/Connector.h"
7#include "mc/world/inventory/FillingContainer.h"
8
9// auto generated forward declare list
10// clang-format off
11class ChestBlockActor;
12class Player;
13// clang-format on
14
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 8, ::ChestBlockActor*> activeChest;
20 // NOLINTEND
21
22public:
23 // virtual functions
24 // NOLINTBEGIN
25 // vIndex: 22
26 virtual void startOpen(::Player& player) /*override*/;
27
28 // vIndex: 23
29 virtual void stopOpen(::Player& player) /*override*/;
30
31 // vIndex: 5
32 virtual ::Bedrock::PubSub::Connector<void()>* getContainerRemovedConnector() /*override*/;
33
34 // vIndex: 6
35 virtual bool hasRemovedSubscribers() const /*override*/;
36
37 // vIndex: 0
38 virtual ~EnderChestContainer() /*override*/ = default;
39 // NOLINTEND
40
41public:
42 // virtual function thunks
43 // NOLINTBEGIN
44 MCNAPI void $startOpen(::Player& player);
45
46 MCNAPI void $stopOpen(::Player& player);
47
48 MCNAPI ::Bedrock::PubSub::Connector<void()>* $getContainerRemovedConnector();
49
50 MCNAPI bool $hasRemovedSubscribers() const;
51 // NOLINTEND
52
53public:
54 // vftables
55 // NOLINTBEGIN
56 MCNAPI static void** $vftable();
57 // NOLINTEND
58};
Definition ChestBlockActor.h:28
Definition EnderChestContainer.h:15
MCAPI void $stopOpen(::Player &player)
MCAPI bool $hasRemovedSubscribers() const
MCAPI void $startOpen(::Player &player)
MCAPI ::Bedrock::PubSub::Connector< void()> * $getContainerRemovedConnector()
static MCAPI void ** $vftable()
Definition FillingContainer.h:16
Definition Player.h:119