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/BaseGoal.h"
7
8// auto generated forward declare list
9// clang-format off
10class Mob;
11struct MobDescriptor;
12// clang-format on
13
14class TargetWhenPushedGoal : public ::BaseGoal {
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&) const /*override*/;
43 // NOLINTEND
44
45public:
46 // member functions
47 // NOLINTBEGIN
48 MCAPI TargetWhenPushedGoal(::Mob& mob, ::std::vector<::MobDescriptor> targetTypes, float percentChance);
49 // NOLINTEND
50
51public:
52 // constructor thunks
53 // NOLINTBEGIN
54 MCAPI void* $ctor(::Mob& mob, ::std::vector<::MobDescriptor> targetTypes, float percentChance);
55 // NOLINTEND
56
57public:
58 // virtual function thunks
59 // NOLINTBEGIN
60 MCAPI bool $canUse();
61
62 MCFOLD bool $canContinueToUse();
63
64 MCFOLD bool $canBeInterrupted();
65
66 MCAPI void $start();
67
68 MCAPI void $stop();
69
70 MCFOLD void $appendDebugInfo(::std::string&) const;
71
72
73 // NOLINTEND
74
75public:
76 // vftables
77 // NOLINTBEGIN
78 MCNAPI static void** $vftable();
79 // NOLINTEND
80};
Definition Mob.h:57
static MCAPI void ** $vftable()
Definition MobDescriptor.h:13