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
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 WitherSkull& operator=(WitherSkull const&);
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 // vIndex: 4
33 virtual void
34 initializeComponents(::ActorInitializationMethod method, ::VariantParameterList const& params) /*override*/;
35
36 // vIndex: 140
37 virtual bool shouldBurn() /*override*/;
38
39 // vIndex: 48
40 virtual bool isOnFire() const /*override*/;
41
42 // vIndex: 119
43 virtual bool canDestroyBlock(::Block const& block) const /*override*/;
44
45 // vIndex: 135
46 virtual bool _hurt(::ActorDamageSource const& source, float damage, bool knock, bool ignite) /*override*/;
47
48 // vIndex: 138
49 virtual float getInertia() /*override*/;
50
51 // vIndex: 8
52 virtual ~WitherSkull() /*override*/ = default;
53 // NOLINTEND
54
55public:
56 // destructor thunk
57 // NOLINTBEGIN
58
59 // NOLINTEND
60
61public:
62 // virtual function thunks
63 // NOLINTBEGIN
64 MCAPI void $initializeComponents(::ActorInitializationMethod method, ::VariantParameterList const& params);
65
66 MCFOLD bool $shouldBurn();
67
68 MCFOLD bool $isOnFire() const;
69
70 MCAPI bool $canDestroyBlock(::Block const& block) const;
71
72 MCAPI bool $_hurt(::ActorDamageSource const& source, float damage, bool knock, bool ignite);
73
74 MCAPI float $getInertia();
75 // NOLINTEND
76
77public:
78 // vftables
79 // NOLINTBEGIN
80 MCAPI static void** $vftable();
81 // NOLINTEND
82};
Definition ActorDamageSource.h:18
Definition Block.h:36
Definition Fireball.h:21
Definition WitherSkull.h:16
Definition VariantParameterList.h:5
Definition Alias.h:14