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 virtual int getItemUseDuration() const /*override*/;
19
20 virtual void addAdditionalSaveData(::CompoundTag& tag) const /*override*/;
21
22 virtual void readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper) /*override*/;
23
24 virtual ~HumanoidMonster() /*override*/;
25 // NOLINTEND
26
27public:
28 // destructor thunk
29 // NOLINTBEGIN
30 MCFOLD void $dtor();
31 // NOLINTEND
32
33public:
34 // virtual function thunks
35 // NOLINTBEGIN
36 MCAPI int $getItemUseDuration() const;
37
38 MCFOLD void $addAdditionalSaveData(::CompoundTag& tag) const;
39
40 MCFOLD void $readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper);
41
42
43 // NOLINTEND
44
45public:
46 // vftables
47 // NOLINTBEGIN
48 MCAPI static void** $vftable();
49 // NOLINTEND
50};
Definition CompoundTag.h:23
Definition DataLoadHelper.h:20
Definition HumanoidMonster.h:14