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 // virtual functions
16 // NOLINTBEGIN
17 // vIndex: 24
18 virtual void normalTick() /*override*/;
19
20 // vIndex: 123
21 virtual void die(::ActorDamageSource const& source) /*override*/;
22
23 // vIndex: 8
24 virtual ~Creeper() /*override*/ = default;
25 // NOLINTEND
26
27public:
28 // virtual function thunks
29 // NOLINTBEGIN
30 MCAPI void $normalTick();
31
32 MCAPI void $die(::ActorDamageSource const& source);
33 // NOLINTEND
34
35public:
36 // vftables
37 // NOLINTBEGIN
38 MCNAPI static void** $vftable();
39 // NOLINTEND
40};
Definition ActorDamageSource.h:18
Definition Creeper.h:13
static MCAPI void ** $vftable()
Definition Monster.h:20