LeviLamina
Loading...
Searching...
No Matches
HumanoidMonster.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
10class CompoundTag;
11class DataLoadHelper;
12// clang-format on
13
14class HumanoidMonster : public ::Monster {
15public:
16 // virtual functions
17 // NOLINTBEGIN
18 // vIndex: 149
19 virtual int getItemUseDuration() const /*override*/;
20
21 // vIndex: 137
22 virtual void addAdditionalSaveData(::CompoundTag& tag) const /*override*/;
23
24 // vIndex: 136
25 virtual void readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper) /*override*/;
26
27 // vIndex: 8
28 virtual ~HumanoidMonster() /*override*/;
29 // NOLINTEND
30
31public:
32 // destructor thunk
33 // NOLINTBEGIN
34 MCFOLD void $dtor();
35 // NOLINTEND
36
37public:
38 // virtual function thunks
39 // NOLINTBEGIN
40 MCAPI int $getItemUseDuration() const;
41
42 MCFOLD void $addAdditionalSaveData(::CompoundTag& tag) const;
43
44 MCFOLD void $readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper);
45 // NOLINTEND
46
47public:
48 // vftables
49 // NOLINTBEGIN
50 MCAPI static void** $vftable();
51 // NOLINTEND
52};
Definition CompoundTag.h:13
Definition DataLoadHelper.h:20
Definition HumanoidMonster.h:14
Definition Monster.h:19