LeviLamina
Loading...
Searching...
No Matches
WallClimberPathNavigation.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/ai/navigation/PathNavigation.h"
7
8// auto generated forward declare list
9// clang-format off
10class AABB;
11class Actor;
12class BlockPos;
13class BlockSource;
14class Mob;
16class Path;
17class Vec3;
18// clang-format on
19
21public:
22 // member variables
23 // NOLINTBEGIN
24 ::ll::TypedStorage<4, 12, ::BlockPos> mPathToPosition;
25 // NOLINTEND
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 // vIndex: 2
31 virtual void tick(::NavigationComponent& parent, ::Mob& mob) /*override*/;
32
33 // vIndex: 5
34 virtual ::std::unique_ptr<::Path>
35 createPath(::NavigationComponent& parent, ::Mob& mob, ::Vec3 const& pos) /*override*/;
36
37 // vIndex: 4
38 virtual ::std::unique_ptr<::Path>
39 createPath(::NavigationComponent& parent, ::Mob& mob, ::Actor const& target) /*override*/;
40
41 // vIndex: 7
42 virtual bool moveTo(::NavigationComponent& parent, ::Mob& mob, ::Actor& target, float speed) /*override*/;
43
44 // vIndex: 11
45 virtual bool canUpdatePath(::Mob const& mob) const /*override*/;
46
47 // vIndex: 0
48 virtual ~WallClimberPathNavigation() /*override*/ = default;
49 // NOLINTEND
50
51public:
52 // member functions
53 // NOLINTBEGIN
54 MCAPI bool _isInsideBorderBlock(::AABB const& aabb, ::BlockSource const& region, float grow) const;
55 // NOLINTEND
56
57public:
58 // destructor thunk
59 // NOLINTBEGIN
60
61 // NOLINTEND
62
63public:
64 // virtual function thunks
65 // NOLINTBEGIN
66 MCAPI void $tick(::NavigationComponent& parent, ::Mob& mob);
67
68 MCAPI ::std::unique_ptr<::Path> $createPath(::NavigationComponent& parent, ::Mob& mob, ::Vec3 const& pos);
69
70 MCAPI ::std::unique_ptr<::Path> $createPath(::NavigationComponent& parent, ::Mob& mob, ::Actor const& target);
71
72 MCAPI bool $moveTo(::NavigationComponent& parent, ::Mob& mob, ::Actor& target, float speed);
73
74 MCAPI bool $canUpdatePath(::Mob const& mob) const;
75 // NOLINTEND
76
77public:
78 // vftables
79 // NOLINTBEGIN
80 MCAPI static void** $vftable();
81 // NOLINTEND
82};
Definition AABB.h:16
Definition Actor.h:104
Definition BlockPos.h:18
Definition BlockSource.h:67
Definition Mob.h:47
Definition NavigationComponent.h:22
Definition PathNavigation.h:17
Definition Path.h:16
Definition Vec3.h:10
Definition WallClimberPathNavigation.h:20