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 // virtual function thunks
41 // NOLINTBEGIN
42 MCNAPI void $initializeInternal(::Mob& mob, ::NavigationDescription* description);
43
44 MCNAPI void $tick(::NavigationComponent& parent, ::Mob& mob);
45
46 MCNAPI ::Vec3 $getTempMobPos(::Mob const& mob) const;
47
48 MCNAPI void $stop(::NavigationComponent& parent, ::Mob& mob);
49
50 MCNAPI void $updatePath(::NavigationComponent& parent, ::Mob& mob);
51 // NOLINTEND
52
53public:
54 // vftables
55 // NOLINTBEGIN
56 MCNAPI static void** $vftable();
57 // NOLINTEND
58};
Definition GenericPathNavigation.h:16
MCAPI void $initializeInternal(::Mob &mob, ::NavigationDescription *description)
static MCAPI void ** $vftable()
MCAPI::Vec3 $getTempMobPos(::Mob const &mob) const
MCAPI void $stop(::NavigationComponent &parent, ::Mob &mob)
MCAPI void $updatePath(::NavigationComponent &parent, ::Mob &mob)
MCAPI void $tick(::NavigationComponent &parent, ::Mob &mob)
Definition Mob.h:47
Definition NavigationComponent.h:22
Definition PathNavigation.h:17
Definition Vec3.h:10
Definition NavigationDescription.h:13