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