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 Actor;
12class ChestBlockActor;
13// clang-format on
14
15class EnderChestContainer : public ::FillingContainer {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 8, ::ChestBlockActor*> mActiveChest;
20 // NOLINTEND
21
22public:
23 // virtual functions
24 // NOLINTBEGIN
25 virtual void startOpen(::Actor& actor) /*override*/;
26
27 virtual void stopOpen(::Actor& actor) /*override*/;
28
29 virtual ::Bedrock::PubSub::Connector<void()>* getContainerRemovedConnector() /*override*/;
30
31 virtual bool hasRemovedSubscribers() const /*override*/;
32 // NOLINTEND
33
34public:
35 // member functions
36 // NOLINTBEGIN
37 MCAPI EnderChestContainer();
38
39 MCAPI void setActiveChest(::ChestBlockActor* chest);
40 // NOLINTEND
41
42public:
43 // constructor thunks
44 // NOLINTBEGIN
45 MCAPI void* $ctor();
46 // NOLINTEND
47
48public:
49 // virtual function thunks
50 // NOLINTBEGIN
51 MCAPI void $startOpen(::Actor& actor);
52
53 MCAPI void $stopOpen(::Actor& actor);
54
55 MCAPI ::Bedrock::PubSub::Connector<void()>* $getContainerRemovedConnector();
56
57 MCAPI bool $hasRemovedSubscribers() const;
58
59
60 // NOLINTEND
61
62public:
63 // vftables
64 // NOLINTBEGIN
65 MCAPI static void** $vftable();
66 // NOLINTEND
67};
Definition Actor.h:123
Definition ChestBlockActor.h:31