LeviLamina
Loading...
Searching...
No Matches
LabTableReaction.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/block/actor/LabTableReactionType.h"
7
8// auto generated forward declare list
9// clang-format off
10class BlockPos;
11class ItemStack;
13class Vec3;
14// clang-format on
15
17public:
18 // member variables
19 // NOLINTBEGIN
29 // NOLINTEND
30
31public:
32 // prevent constructor by default
33 LabTableReaction& operator=(LabTableReaction const&);
36
37public:
38 // virtual functions
39 // NOLINTBEGIN
40 // vIndex: 0
41 virtual ~LabTableReaction() = default;
42 // NOLINTEND
43
44public:
45 // member functions
46 // NOLINTBEGIN
47 MCAPI LabTableReaction(
48 ::LabTableReactionType type,
49 ::BlockPos const& pos,
50 bool isClientSide,
51 int maxLifetime,
52 int startDelay
53 );
54
55 MCAPI ::Vec3 _getTableTop() const;
56
57 MCFOLD void addComponent(::std::unique_ptr<::LabTableReactionComponent> comp);
58
59 MCAPI void addResultItem(::ItemStack const& resultItem);
60 // NOLINTEND
61
62public:
63 // static functions
64 // NOLINTBEGIN
65 MCAPI static ::std::unique_ptr<::LabTableReaction>
66 createReaction(::LabTableReactionType type, ::BlockPos const& pos, bool isClientSide);
67 // NOLINTEND
68
69public:
70 // constructor thunks
71 // NOLINTBEGIN
72 MCAPI void*
73 $ctor(::LabTableReactionType type, ::BlockPos const& pos, bool isClientSide, int maxLifetime, int startDelay);
74 // NOLINTEND
75
76public:
77 // destructor thunk
78 // NOLINTBEGIN
79
80 // NOLINTEND
81
82public:
83 // vftables
84 // NOLINTBEGIN
85 MCAPI static void** $vftable();
86 // NOLINTEND
87};
Definition BlockPos.h:18
Definition ItemStack.h:25
Definition LabTableReactionComponent.h:11
Definition LabTableReaction.h:16
Definition Vec3.h:10
Definition Alias.h:14