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 MCNAPI ::Player* getHighestDamageTarget();
62 // NOLINTEND
63
64public:
65 // virtual function thunks
66 // NOLINTBEGIN
67 MCNAPI bool $canUse();
68
69 MCNAPI bool $canContinueToUse();
70
71 MCNAPI void $appendDebugInfo(::std::string& str) const;
72
73 MCNAPI void $start();
74
75 MCNAPI bool $_canAttack(
76 ::Mob* testMob,
77 ::Actor* target,
78 bool allowInvulnerable,
79 bool mustSee,
80 ::MobDescriptor const** outDescriptorMatch
81 );
82 // NOLINTEND
83
84public:
85 // vftables
86 // NOLINTBEGIN
87 MCNAPI static void** $vftable();
88 // NOLINTEND
89};
Definition Actor.h:103
Definition Mob.h:47
Definition Player.h:119
Definition TargetGoal.h:15
Definition WitherTargetHighestDamage.h:16
MCAPI bool $_canAttack(::Mob *testMob, ::Actor *target, bool allowInvulnerable, bool mustSee, ::MobDescriptor const **outDescriptorMatch)
MCAPI bool $canContinueToUse()
MCAPI void $appendDebugInfo(::std::string &str) const
static MCAPI void ** $vftable()
MCAPI::Player * getHighestDamageTarget()
Definition MobDescriptor.h:5
Definition Alias.h:14