LeviLamina
Loading...
Searching...
No Matches
HurtByTargetGoal.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 Mob;
11// clang-format on
12
14public:
15 // virtual functions
16 // NOLINTBEGIN
17 // vIndex: 1
18 virtual bool canUse() /*override*/;
19
20 // vIndex: 4
21 virtual void start() /*override*/;
22
23 // vIndex: 7
24 virtual void appendDebugInfo(::std::string& str) const /*override*/;
25
26 // vIndex: 11
27 virtual void alertOther(::Mob* other, ::Mob* hurtByMob);
28
29 // vIndex: 0
30 virtual ~HurtByTargetGoal() /*override*/ = default;
31 // NOLINTEND
32
33public:
34 // destructor thunk
35 // NOLINTBEGIN
36
37 // NOLINTEND
38
39public:
40 // virtual function thunks
41 // NOLINTBEGIN
42 MCAPI bool $canUse();
43
44 MCAPI void $start();
45
46 MCAPI void $appendDebugInfo(::std::string& str) const;
47
48 MCAPI void $alertOther(::Mob* other, ::Mob* hurtByMob);
49 // NOLINTEND
50
51public:
52 // vftables
53 // NOLINTBEGIN
54 MCAPI static void** $vftable();
55 // NOLINTEND
56};
Definition HurtByTargetGoal.h:13
Definition Mob.h:47
Definition TargetGoal.h:15