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;
13class WitherBoss;
14struct MobDescriptor;
15// clang-format on
16
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 8, ::WitherBoss&> mWitherBoss;
22 ::ll::TypedStorage<8, 8, ::Mob*> mTarget;
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 // vIndex: 1
35 virtual bool canUse() /*override*/;
36
37 // vIndex: 2
38 virtual bool canContinueToUse() /*override*/;
39
40 // vIndex: 7
41 virtual void appendDebugInfo(::std::string& str) const /*override*/;
42
43 // vIndex: 4
44 virtual void start() /*override*/;
45
46 // vIndex: 10
47 virtual bool _canAttack(
48 ::Mob* testMob,
49 ::Actor* target,
50 bool allowInvulnerable,
51 bool mustSee,
52 ::MobDescriptor const** outDescriptorMatch
53 ) /*override*/;
54
55 // vIndex: 0
56 virtual ~WitherTargetHighestDamage() /*override*/ = default;
57 // NOLINTEND
58
59public:
60 // member functions
61 // NOLINTBEGIN
62 MCAPI ::Player* getHighestDamageTarget();
63 // NOLINTEND
64
65public:
66 // virtual function thunks
67 // NOLINTBEGIN
68 MCAPI bool $canUse();
69
70 MCAPI bool $canContinueToUse();
71
72 MCAPI void $appendDebugInfo(::std::string& str) const;
73
74 MCAPI void $start();
75
76 MCAPI bool $_canAttack(
77 ::Mob* testMob,
78 ::Actor* target,
79 bool allowInvulnerable,
80 bool mustSee,
81 ::MobDescriptor const** outDescriptorMatch
82 );
83 // NOLINTEND
84
85public:
86 // vftables
87 // NOLINTBEGIN
88 MCNAPI static void** $vftable();
89 // NOLINTEND
90};
Definition Actor.h:102
Definition Mob.h:47
Definition Player.h:123
Definition TargetGoal.h:15
Definition WitherBoss.h:31
Definition WitherTargetHighestDamage.h:17
static MCAPI void ** $vftable()
Definition MobDescriptor.h:8