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 // virtual function thunks
35 // NOLINTBEGIN
36 MCNAPI bool $canUse();
37
38 MCNAPI void $start();
39
40 MCNAPI void $appendDebugInfo(::std::string& str) const;
41
42 MCNAPI void $alertOther(::Mob* other, ::Mob* hurtByMob);
43 // NOLINTEND
44
45public:
46 // vftables
47 // NOLINTBEGIN
48 MCNAPI static void** $vftable();
49 // NOLINTEND
50};
Definition HurtByTargetGoal.h:13
MCAPI bool $canUse()
static MCAPI void ** $vftable()
MCAPI void $appendDebugInfo(::std::string &str) const
MCAPI void $start()
MCAPI void $alertOther(::Mob *other, ::Mob *hurtByMob)
Definition Mob.h:47
Definition TargetGoal.h:15