LeviLamina
Loading...
Searching...
No Matches
GenericPathNavigation.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 Mob;
12class Vec3;
14// clang-format on
15
17public:
18 // virtual functions
19 // NOLINTBEGIN
20 // vIndex: 1
21 virtual void initializeInternal(::Mob& mob, ::NavigationDescription* description) /*override*/;
22
23 // vIndex: 2
24 virtual void tick(::NavigationComponent& parent, ::Mob& mob) /*override*/;
25
26 // vIndex: 3
27 virtual ::Vec3 getTempMobPos(::Mob const& mob) const /*override*/;
28
29 // vIndex: 9
30 virtual void stop(::NavigationComponent& parent, ::Mob& mob) /*override*/;
31
32 // vIndex: 12
33 virtual void updatePath(::NavigationComponent& parent, ::Mob& mob) /*override*/;
34
35 // vIndex: 0
36 virtual ~GenericPathNavigation() /*override*/ = default;
37 // NOLINTEND
38
39public:
40 // destructor thunk
41 // NOLINTBEGIN
42
43 // NOLINTEND
44
45public:
46 // virtual function thunks
47 // NOLINTBEGIN
48 MCAPI void $initializeInternal(::Mob& mob, ::NavigationDescription* description);
49
50 MCAPI void $tick(::NavigationComponent& parent, ::Mob& mob);
51
52 MCAPI ::Vec3 $getTempMobPos(::Mob const& mob) const;
53
54 MCAPI void $stop(::NavigationComponent& parent, ::Mob& mob);
55
56 MCAPI void $updatePath(::NavigationComponent& parent, ::Mob& mob);
57 // NOLINTEND
58
59public:
60 // vftables
61 // NOLINTBEGIN
62 MCAPI static void** $vftable();
63 // NOLINTEND
64};
Definition GenericPathNavigation.h:16
Definition Mob.h:47
Definition NavigationComponent.h:22
Definition PathNavigation.h:17
Definition Vec3.h:10
Definition NavigationDescription.h:13