LeviLamina
Loading...
Searching...
No Matches
EnderChestBlockActor.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/block/actor/ChestBlockActor.h"
7
8// auto generated forward declare list
9// clang-format off
10class BlockPos;
11class ItemStack;
12class Player;
13// clang-format on
14
15class EnderChestBlockActor : public ::ChestBlockActor {
16public:
17 // virtual functions
18 // NOLINTBEGIN
19 virtual ~EnderChestBlockActor() /*override*/ = default;
20
21 virtual void openBy(::Player& p) /*override*/;
22
23 virtual bool canPushInItem(int, int, ::ItemStack const&) const /*override*/;
24
25 virtual bool canPullOutItem(int, int, ::ItemStack const&) const /*override*/;
26 // NOLINTEND
27
28public:
29 // static functions
30 // NOLINTBEGIN
31#ifdef LL_PLAT_C
32 MCAPI static ::std::unique_ptr<::EnderChestBlockActor> createEnderChestBlockEntity(::BlockPos const& pos);
33#endif
34 // NOLINTEND
35
36public:
37 // virtual function thunks
38 // NOLINTBEGIN
39 MCAPI void $openBy(::Player& p);
40
41 MCFOLD bool $canPushInItem(int, int, ::ItemStack const&) const;
42
43 MCFOLD bool $canPullOutItem(int, int, ::ItemStack const&) const;
44
45
46 // NOLINTEND
47
48public:
49 // vftables
50 // NOLINTBEGIN
51 MCAPI static void** $vftableForFillingContainer();
52
53 MCAPI static void** $vftableForRandomizableBlockActorContainerBase();
54 // NOLINTEND
55};
Definition BlockPos.h:19
Definition EnderChestBlockActor.h:15
Definition ItemStack.h:26
Definition Player.h:129