LeviLamina
Loading...
Searching...
No Matches
FloatTemptGoal.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/shared_types/legacy/LevelSoundEvent.h"
7#include "mc/world/actor/ai/goal/TemptBaseGoal.h"
8
9// auto generated forward declare list
10// clang-format off
12class ItemDescriptor;
13class Mob;
14struct FloatRange;
15// clang-format on
16
17class FloatTemptGoal : public ::TemptBaseGoal {
18public:
19 // prevent constructor by default
20 FloatTemptGoal();
21
22public:
23 // virtual functions
24 // NOLINTBEGIN
25 virtual void updateMovement() /*override*/;
26
27 virtual void stopMovement() /*override*/;
28
29 virtual void appendDebugInfo(::std::string& str) const /*override*/;
30 // NOLINTEND
31
32public:
33 // member functions
34 // NOLINTBEGIN
35 MCAPI FloatTemptGoal(
36 ::Mob& mob,
37 float speed,
38 ::std::vector<::ItemDescriptor> const& itemList,
39 ::SharedTypes::Legacy::LevelSoundEvent sound,
40 ::FloatRange soundIntervalRange,
41 bool canGetScared,
42 float temptDistance,
43 float stopDistance,
44 bool canTemptVertically,
45 bool canTemptWhileRidden,
46 ::ActorDefinitionTrigger const& onStartEvent,
47 ::ActorDefinitionTrigger const& onEndEvent
48 );
49 // NOLINTEND
50
51public:
52 // constructor thunks
53 // NOLINTBEGIN
54 MCAPI void* $ctor(
55 ::Mob& mob,
56 float speed,
57 ::std::vector<::ItemDescriptor> const& itemList,
58 ::SharedTypes::Legacy::LevelSoundEvent sound,
59 ::FloatRange soundIntervalRange,
60 bool canGetScared,
61 float temptDistance,
62 float stopDistance,
63 bool canTemptVertically,
64 bool canTemptWhileRidden,
65 ::ActorDefinitionTrigger const& onStartEvent,
66 ::ActorDefinitionTrigger const& onEndEvent
67 );
68 // NOLINTEND
69
70public:
71 // virtual function thunks
72 // NOLINTBEGIN
73 MCAPI void $updateMovement();
74
75 MCFOLD void $stopMovement();
76
77 MCAPI void $appendDebugInfo(::std::string& str) const;
78
79
80 // NOLINTEND
81
82public:
83 // vftables
84 // NOLINTBEGIN
85 MCNAPI static void** $vftable();
86 // NOLINTEND
87};
Definition ActorDefinitionTrigger.h:16
static MCAPI void ** $vftable()
Definition ItemDescriptor.h:25
Definition Mob.h:57
Definition FloatRange.h:11