LeviLamina
Loading...
Searching...
No Matches
TargetWhenPushedGoal.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/ai/goal/Goal.h"
7
8// auto generated forward declare list
9// clang-format off
10class Mob;
11struct MobDescriptor;
12// clang-format on
13
14class TargetWhenPushedGoal : public ::Goal {
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<8, 8, ::Mob&> mSelf;
19 ::ll::TypedStorage<4, 4, float> mPercentChance;
20 ::ll::TypedStorage<8, 24, ::std::vector<::MobDescriptor> const> mTargetTypes;
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 TargetWhenPushedGoal& operator=(TargetWhenPushedGoal const&);
26 TargetWhenPushedGoal(TargetWhenPushedGoal const&);
27 TargetWhenPushedGoal();
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 virtual bool canUse() /*override*/;
33
34 virtual bool canContinueToUse() /*override*/;
35
36 virtual bool canBeInterrupted() /*override*/;
37
38 virtual void start() /*override*/;
39
40 virtual void stop() /*override*/;
41
42 virtual void appendDebugInfo(::std::string& str) const /*override*/;
43
44 virtual ~TargetWhenPushedGoal() /*override*/ = default;
45 // NOLINTEND
46
47public:
48 // virtual function thunks
49 // NOLINTBEGIN
50 MCAPI bool $canUse();
51
52 MCFOLD bool $canContinueToUse();
53
54 MCFOLD bool $canBeInterrupted();
55
56 MCAPI void $start();
57
58 MCAPI void $stop();
59
60 MCFOLD void $appendDebugInfo(::std::string& str) const;
61
62
63 // NOLINTEND
64
65public:
66 // vftables
67 // NOLINTBEGIN
68 MCNAPI static void** $vftable();
69 // NOLINTEND
70};
Definition Goal.h:14
Definition Mob.h:50
static MCAPI void ** $vftable()
Definition MobDescriptor.h:8