LeviLamina
Loading...
Searching...
No Matches
WitherTargetHighestDamage.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/ai/goal/target/TargetGoal.h"
7
8// auto generated forward declare list
9// clang-format off
10class Actor;
11class Mob;
12class Player;
13struct MobDescriptor;
14// clang-format on
15
17public:
18 // member variables
19 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 // vIndex: 1
34 virtual bool canUse() /*override*/;
35
36 // vIndex: 2
37 virtual bool canContinueToUse() /*override*/;
38
39 // vIndex: 7
40 virtual void appendDebugInfo(::std::string& str) const /*override*/;
41
42 // vIndex: 4
43 virtual void start() /*override*/;
44
45 // vIndex: 10
46 virtual bool _canAttack(
47 ::Mob* testMob,
48 ::Actor* target,
49 bool allowInvulnerable,
50 bool mustSee,
51 ::MobDescriptor const** outDescriptorMatch
52 ) /*override*/;
53
54 // vIndex: 0
55 virtual ~WitherTargetHighestDamage() /*override*/ = default;
56 // NOLINTEND
57
58public:
59 // member functions
60 // NOLINTBEGIN
61 MCAPI ::Player* getHighestDamageTarget();
62 // NOLINTEND
63
64public:
65 // destructor thunk
66 // NOLINTBEGIN
67
68 // NOLINTEND
69
70public:
71 // virtual function thunks
72 // NOLINTBEGIN
73 MCAPI bool $canUse();
74
75 MCAPI bool $canContinueToUse();
76
77 MCAPI void $appendDebugInfo(::std::string& str) const;
78
79 MCAPI void $start();
80
81 MCAPI bool $_canAttack(
82 ::Mob* testMob,
83 ::Actor* target,
84 bool allowInvulnerable,
85 bool mustSee,
86 ::MobDescriptor const** outDescriptorMatch
87 );
88 // NOLINTEND
89
90public:
91 // vftables
92 // NOLINTBEGIN
93 MCAPI static void** $vftable();
94 // NOLINTEND
95};
Definition Actor.h:104
Definition Mob.h:47
Definition Player.h:119
Definition TargetGoal.h:15
Definition WitherTargetHighestDamage.h:16
Definition MobDescriptor.h:5
Definition Alias.h:14