LeviLamina
Loading...
Searching...
No Matches
BurstReactionComponent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/comprehensive/ParticleType.h"
7#include "mc/deps/core/math/Vec3.h"
8#include "mc/deps/core/string/HashedString.h"
9#include "mc/world/level/block/actor/LabTableReactionComponent.h"
10
11// auto generated forward declare list
12// clang-format off
13class BlockSource;
15// clang-format on
16
17class BurstReactionComponent : public ::LabTableReactionComponent {
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<4, 4, ::ParticleType> mParticleType;
22 ::ll::TypedStorage<8, 48, ::HashedString> mNewParticleType;
23 ::ll::TypedStorage<4, 12, ::Vec3> mDims;
24 ::ll::TypedStorage<4, 12, ::Vec3> mDirRange;
25 ::ll::TypedStorage<4, 4, int> mCount;
26 ::ll::TypedStorage<4, 4, int> mDataMin;
27 ::ll::TypedStorage<4, 4, int> mDataMax;
28 ::ll::TypedStorage<1, 1, bool> mDirOneWay;
29 // NOLINTEND
30
31public:
32 // prevent constructor by default
33 BurstReactionComponent();
34
35public:
36 // virtual functions
37 // NOLINTBEGIN
38 virtual ~BurstReactionComponent() /*override*/ = default;
39
40 virtual void _onEnd(::LabTableReaction& owner, ::BlockSource& region) /*override*/;
41 // NOLINTEND
42
43public:
44 // member functions
45 // NOLINTBEGIN
46 MCAPI BurstReactionComponent(
47 ::ParticleType type,
48 ::Vec3 const& dims,
49 ::Vec3 const& dirRange,
50 int count,
51 int dataMin,
52 int dataMax,
53 bool dirOneWay,
54 ::HashedString const& newParticle
55 );
56 // NOLINTEND
57
58public:
59 // constructor thunks
60 // NOLINTBEGIN
61 MCAPI void* $ctor(
62 ::ParticleType type,
63 ::Vec3 const& dims,
64 ::Vec3 const& dirRange,
65 int count,
66 int dataMin,
67 int dataMax,
68 bool dirOneWay,
69 ::HashedString const& newParticle
70 );
71 // NOLINTEND
72
73public:
74 // virtual function thunks
75 // NOLINTBEGIN
76 MCAPI void $_onEnd(::LabTableReaction& owner, ::BlockSource& region);
77
78
79 // NOLINTEND
80
81public:
82 // vftables
83 // NOLINTBEGIN
84 MCNAPI static void** $vftable();
85 // NOLINTEND
86};
Definition BlockSource.h:68
static MCAPI void ** $vftable()
Definition HashedString.h:5
Definition LabTableReactionComponent.h:11
Definition LabTableReaction.h:17
Definition Vec3.h:10