LeviLamina
Loading...
Searching...
No Matches
Creeper.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/monster/Monster.h"
7
8// auto generated forward declare list
9// clang-format off
11// clang-format on
12
13class Creeper : public ::Monster {
14public:
15 // member variables
16 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 Creeper& operator=(Creeper const&);
25 Creeper(Creeper const&);
26 Creeper();
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 // vIndex: 24
32 virtual void normalTick() /*override*/;
33
34 // vIndex: 123
35 virtual void die(::ActorDamageSource const& source) /*override*/;
36
37 // vIndex: 8
38 virtual ~Creeper() /*override*/ = default;
39 // NOLINTEND
40
41public:
42 // destructor thunk
43 // NOLINTBEGIN
44
45 // NOLINTEND
46
47public:
48 // virtual function thunks
49 // NOLINTBEGIN
50 MCAPI void $normalTick();
51
52 MCAPI void $die(::ActorDamageSource const& source);
53 // NOLINTEND
54
55public:
56 // vftables
57 // NOLINTBEGIN
58 MCAPI static void** $vftable();
59 // NOLINTEND
60};
Definition ActorDamageSource.h:18
Definition Creeper.h:13
Definition Monster.h:19
Definition Alias.h:14