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
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
34
35public:
36 // virtual functions
37 // NOLINTBEGIN
38 // vIndex: 0
39 virtual ~BurstReactionComponent() /*override*/ = default;
40
41 // vIndex: 3
42 virtual void _onEnd(::LabTableReaction& owner, ::BlockSource& region) /*override*/;
43 // NOLINTEND
44
45public:
46 // member functions
47 // NOLINTBEGIN
49 ::ParticleType type,
50 ::Vec3 const& dims,
51 ::Vec3 const& dirRange,
52 int count,
53 int dataMin,
54 int dataMax,
55 bool dirOneWay,
56 ::HashedString const& newParticle
57 );
58 // NOLINTEND
59
60public:
61 // constructor thunks
62 // NOLINTBEGIN
63 MCNAPI void* $ctor(
64 ::ParticleType type,
65 ::Vec3 const& dims,
66 ::Vec3 const& dirRange,
67 int count,
68 int dataMin,
69 int dataMax,
70 bool dirOneWay,
71 ::HashedString const& newParticle
72 );
73 // NOLINTEND
74
75public:
76 // virtual function thunks
77 // NOLINTBEGIN
78 MCNAPI void $_onEnd(::LabTableReaction& owner, ::BlockSource& region);
79 // NOLINTEND
80
81public:
82 // vftables
83 // NOLINTBEGIN
84 MCNAPI static void** $vftable();
85 // NOLINTEND
86};
Definition BlockSource.h:67
Definition BurstReactionComponent.h:17
static MCAPI void ** $vftable()
MCAPI void * $ctor(::ParticleType type, ::Vec3 const &dims, ::Vec3 const &dirRange, int count, int dataMin, int dataMax, bool dirOneWay, ::HashedString const &newParticle)
MCAPI void $_onEnd(::LabTableReaction &owner, ::BlockSource &region)
MCAPI BurstReactionComponent(::ParticleType type, ::Vec3 const &dims, ::Vec3 const &dirRange, int count, int dataMin, int dataMax, bool dirOneWay, ::HashedString const &newParticle)
Definition HashedString.h:5
Definition LabTableReactionComponent.h:11
Definition LabTableReaction.h:15
Definition Vec3.h:10