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