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