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