LeviLamina
Loading...
Searching...
No Matches
SendEventData.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/shared_types/legacy/LevelSoundEvent.h"
7#include "mc/world/actor/ActorFilterGroup.h"
8
9// auto generated forward declare list
10// clang-format off
11struct SendEventStage;
12// clang-format on
13
14struct SendEventData {
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<4, 4, float> minActivationRange;
19 ::ll::TypedStorage<4, 4, float> maxActivationRange;
20 ::ll::TypedStorage<4, 4, int> cooldownTime;
21 ::ll::TypedStorage<4, 4, int> castDuration;
22 ::ll::TypedStorage<4, 4, float> weight;
23 ::ll::TypedStorage<1, 1, bool> doCastingAnimation;
24 ::ll::TypedStorage<1, 1, bool> lookAtTarget;
25 ::ll::TypedStorage<4, 4, int> particleColor;
26 ::ll::TypedStorage<8, 64, ::ActorFilterGroup> targetFilter;
27 ::ll::TypedStorage<4, 4, ::SharedTypes::Legacy::LevelSoundEvent> startSound;
28 ::ll::TypedStorage<8, 24, ::std::vector<::SendEventStage>> stages;
29 // NOLINTEND
30
31public:
32 // prevent constructor by default
33 SendEventData();
34
35public:
36 // member functions
37 // NOLINTBEGIN
38 MCAPI SendEventData(::SendEventData const&);
39
40 MCAPI ::SendEventData& operator=(::SendEventData const&);
41
42 MCAPI ~SendEventData();
43 // NOLINTEND
44
45public:
46 // constructor thunks
47 // NOLINTBEGIN
48 MCAPI void* $ctor(::SendEventData const&);
49 // NOLINTEND
50
51public:
52 // destructor thunk
53 // NOLINTBEGIN
54 MCAPI void $dtor();
55 // NOLINTEND
56};
Definition SendEventStage.h:8