LeviLamina
Loading...
Searching...
No Matches
LightningBolt.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/Actor.h"
7#include "mc/world/actor/ActorInitializationMethod.h"
8
9// auto generated forward declare list
10// clang-format off
11class CompoundTag;
12class DataLoadHelper;
14// clang-format on
15
16class LightningBolt : public ::Actor {
17public:
18 // member variables
19 // NOLINTBEGIN
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 LightningBolt& operator=(LightningBolt const&);
32
33public:
34 // virtual functions
35 // NOLINTBEGIN
36 // vIndex: 2
37 virtual void reloadHardcoded(::ActorInitializationMethod method, ::VariantParameterList const& params) /*override*/;
38
39 // vIndex: 3
40 virtual void reloadHardcodedClient(::ActorInitializationMethod method) /*override*/;
41
42 // vIndex: 24
43 virtual void normalTick() /*override*/;
44
45 // vIndex: 137
46 virtual void addAdditionalSaveData(::CompoundTag& tag) const /*override*/;
47
48 // vIndex: 136
49 virtual void readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper) /*override*/;
50
51 // vIndex: 35
52 virtual float getShadowRadius() const /*override*/;
53
54 // vIndex: 138
55 virtual bool shouldAlwaysRender();
56
57 // vIndex: 8
58 virtual ~LightningBolt() /*override*/ = default;
59 // NOLINTEND
60
61public:
62 // member functions
63 // NOLINTBEGIN
64 MCAPI bool _shouldSetOnFire() const;
65 // NOLINTEND
66
67public:
68 // destructor thunk
69 // NOLINTBEGIN
70
71 // NOLINTEND
72
73public:
74 // virtual function thunks
75 // NOLINTBEGIN
76 MCAPI void $reloadHardcoded(::ActorInitializationMethod method, ::VariantParameterList const& params);
77
78 MCAPI void $reloadHardcodedClient(::ActorInitializationMethod method);
79
80 MCAPI void $normalTick();
81
82 MCFOLD void $addAdditionalSaveData(::CompoundTag& tag) const;
83
84 MCFOLD void $readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper);
85
86 MCFOLD float $getShadowRadius() const;
87
88 MCFOLD bool $shouldAlwaysRender();
89 // NOLINTEND
90
91public:
92 // vftables
93 // NOLINTBEGIN
94 MCAPI static void** $vftable();
95 // NOLINTEND
96};
Definition Actor.h:104
Definition CompoundTag.h:13
Definition DataLoadHelper.h:20
Definition LightningBolt.h:16
Definition VariantParameterList.h:5
Definition Alias.h:14