LeviLamina
Loading...
Searching...
No Matches
BlockBreakSensorComponent.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/math/Vec3.h"
7#include "mc/world/events/BlockEventDispatcherToken.h"
8
9// auto generated forward declare list
10// clang-format off
11class Actor;
14// clang-format on
15
16class BlockBreakSensorComponent {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<4, 4, float> mSensorRadius;
21 ::ll::TypedStorage<4, 12, ::Vec3> mSensorPos;
22 ::ll::TypedStorage<8, 32, ::BlockEventDispatcherToken> mListener;
23 ::ll::TypedStorage<8, 24, ::std::vector<::BlockListEventMap>> mBlockSets;
24 ::ll::TypedStorage<8, 24, ::std::vector<::ActorFilterGroup>> mSourceFilters;
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 BlockBreakSensorComponent& operator=(BlockBreakSensorComponent const&);
30 BlockBreakSensorComponent(BlockBreakSensorComponent const&);
31
32public:
33 // member functions
34 // NOLINTBEGIN
35 MCAPI BlockBreakSensorComponent();
36
37 MCAPI void initialize(::Actor& actor);
38
39 MCAPI ::BlockBreakSensorComponent& operator=(::BlockBreakSensorComponent&&);
40
41 MCAPI void updateSensorPos(::Vec3 const& newPos);
42
43 MCAPI ~BlockBreakSensorComponent();
44 // NOLINTEND
45
46public:
47 // constructor thunks
48 // NOLINTBEGIN
49 MCAPI void* $ctor();
50 // NOLINTEND
51
52public:
53 // destructor thunk
54 // NOLINTBEGIN
55 MCAPI void $dtor();
56 // NOLINTEND
57};
Definition ActorFilterGroup.h:19
Definition Actor.h:125
Definition BlockListEventMap.h:8
Definition Vec3.h:10