LeviLamina
Loading...
Searching...
No Matches
WitherSkull.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/ActorInitializationMethod.h"
7#include "mc/world/actor/projectile/Fireball.h"
8
9// auto generated forward declare list
10// clang-format off
12class Block;
14// clang-format on
15
16class WitherSkull : public ::Fireball {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<4, 4, int> mLifetime;
21 // NOLINTEND
22
23public:
24 // virtual functions
25 // NOLINTBEGIN
26 virtual void
27 initializeComponents(::ActorInitializationMethod method, ::VariantParameterList const& params) /*override*/;
28
29 virtual bool shouldBurn() /*override*/;
30
31 virtual bool isOnFire() const /*override*/;
32
33 virtual bool canDestroyBlock(::Block const& block) const /*override*/;
34
35 virtual bool _hurt(::ActorDamageSource const& source, float damage, bool knock, bool ignite) /*override*/;
36
37 virtual float getInertia() /*override*/;
38
39 virtual ~WitherSkull() /*override*/ = default;
40 // NOLINTEND
41
42public:
43 // virtual function thunks
44 // NOLINTBEGIN
45#ifdef LL_PLAT_S
46 MCAPI void $initializeComponents(::ActorInitializationMethod method, ::VariantParameterList const& params);
47#endif
48
49 MCFOLD bool $shouldBurn();
50
51 MCFOLD bool $isOnFire() const;
52
53 MCAPI bool $canDestroyBlock(::Block const& block) const;
54
55 MCAPI bool $_hurt(::ActorDamageSource const& source, float damage, bool knock, bool ignite);
56
57 MCAPI float $getInertia();
58
59
60 // NOLINTEND
61
62public:
63 // vftables
64 // NOLINTBEGIN
65 MCAPI static void** $vftable();
66 // NOLINTEND
67};
Definition ActorDamageSource.h:18
Definition Block.h:43
Definition WitherSkull.h:16
Definition VariantParameterList.h:13