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;
11struct MobDescriptor;
12// clang-format on
13
14class HurtByTargetGoal : public ::TargetGoal {
15public:
16 // prevent constructor by default
17 HurtByTargetGoal();
18
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 virtual bool canUse() /*override*/;
23
24 virtual void start() /*override*/;
25
26 virtual void appendDebugInfo(::std::string& str) const /*override*/;
27
28 virtual void alertOther(::Mob* other, ::Mob* hurtByMob);
29 // NOLINTEND
30
31public:
32 // member functions
33 // NOLINTBEGIN
34 MCAPI HurtByTargetGoal(::Mob& mob, ::std::vector<::MobDescriptor> const& targetTypes, bool hurtOwner);
35 // NOLINTEND
36
37public:
38 // constructor thunks
39 // NOLINTBEGIN
40 MCAPI void* $ctor(::Mob& mob, ::std::vector<::MobDescriptor> const& targetTypes, bool hurtOwner);
41 // NOLINTEND
42
43public:
44 // virtual function thunks
45 // NOLINTBEGIN
46 MCAPI bool $canUse();
47
48 MCAPI void $start();
49
50 MCAPI void $appendDebugInfo(::std::string& str) const;
51
52 MCAPI void $alertOther(::Mob* other, ::Mob* hurtByMob);
53
54
55 // NOLINTEND
56
57public:
58 // vftables
59 // NOLINTBEGIN
60 MCNAPI static void** $vftable();
61 // NOLINTEND
62};
static MCAPI void ** $vftable()
Definition Mob.h:57
Definition MobDescriptor.h:13