LeviLamina
Loading...
Searching...
No Matches
EvocationIllager.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/monster/HumanoidMonster.h"
7
8// auto generated forward declare list
9// clang-format off
10class Mob;
11// clang-format on
12
14public:
15 // virtual functions
16 // NOLINTBEGIN
17 virtual bool isAlliedTo(::Mob* other) /*override*/;
18
19 virtual int getArmorValue() const /*override*/;
20
21 virtual ~EvocationIllager() /*override*/ = default;
22 // NOLINTEND
23
24public:
25 // virtual function thunks
26 // NOLINTBEGIN
27 MCAPI bool $isAlliedTo(::Mob* other);
28
29 MCFOLD int $getArmorValue() const;
30
31
32 // NOLINTEND
33
34public:
35 // vftables
36 // NOLINTBEGIN
37 MCAPI static void** $vftable();
38 // NOLINTEND
39};
Definition EvocationIllager.h:13
Definition HumanoidMonster.h:14
Definition Mob.h:50