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
13class HurtByTargetGoal : public ::TargetGoal {
14public:
15 // virtual functions
16 // NOLINTBEGIN
17 virtual bool canUse() /*override*/;
18
19 virtual void start() /*override*/;
20
21 virtual void appendDebugInfo(::std::string& str) const /*override*/;
22
23 virtual void alertOther(::Mob* other, ::Mob* hurtByMob);
24
25 virtual ~HurtByTargetGoal() /*override*/ = default;
26 // NOLINTEND
27
28public:
29 // virtual function thunks
30 // NOLINTBEGIN
31 MCAPI bool $canUse();
32
33 MCAPI void $start();
34
35 MCAPI void $appendDebugInfo(::std::string& str) const;
36
37 MCAPI void $alertOther(::Mob* other, ::Mob* hurtByMob);
38
39
40 // NOLINTEND
41
42public:
43 // vftables
44 // NOLINTBEGIN
45 MCNAPI static void** $vftable();
46 // NOLINTEND
47};
Definition HurtByTargetGoal.h:13
static MCAPI void ** $vftable()
Definition Mob.h:50