LeviLamina
Loading...
Searching...
No Matches
EntitySubsensorDescriptor.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/math/Vec2.h"
7#include "mc/world/actor/ActorFilterGroup.h"
8
9// auto generated forward declare list
10// clang-format off
11class EntitySubsensor;
12// clang-format on
13
14struct EntitySubsensorDescriptor {
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<4, 8, ::Vec2> mRange;
19 ::ll::TypedStorage<4, 4, float> mYOffset;
20 ::ll::TypedStorage<1, 1, bool> mRequireAll;
21 ::ll::TypedStorage<4, 4, int> mMinimumCount;
22 ::ll::TypedStorage<4, 4, int> mMaximumCount;
23 ::ll::TypedStorage<4, 4, float> mCooldownInSeconds;
24 ::ll::TypedStorage<8, 32, ::std::string> mEvent;
25 ::ll::TypedStorage<8, 64, ::ActorFilterGroup> mFilter;
26 // NOLINTEND
27
28public:
29 // prevent constructor by default
30 EntitySubsensorDescriptor& operator=(EntitySubsensorDescriptor const&);
31 EntitySubsensorDescriptor();
32
33public:
34 // member functions
35 // NOLINTBEGIN
36 MCAPI EntitySubsensorDescriptor(::EntitySubsensorDescriptor const&);
37
38 MCAPI void initialize(::EntitySubsensor& subsensor) const;
39
40 MCAPI ~EntitySubsensorDescriptor();
41 // NOLINTEND
42
43public:
44 // constructor thunks
45 // NOLINTBEGIN
46 MCAPI void* $ctor(::EntitySubsensorDescriptor const&);
47 // NOLINTEND
48
49public:
50 // destructor thunk
51 // NOLINTBEGIN
52 MCFOLD void $dtor();
53 // NOLINTEND
54};
Definition EntitySubsensor.h:16