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
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
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 // vIndex: 1
33 virtual bool canUse() /*override*/;
34
35 // vIndex: 2
36 virtual bool canContinueToUse() /*override*/;
37
38 // vIndex: 4
39 virtual void start() /*override*/;
40
41 // vIndex: 5
42 virtual void stop() /*override*/;
43
44 // vIndex: 7
45 virtual void appendDebugInfo(::std::string& str) const /*override*/;
46
47 // vIndex: 0
48 virtual ~MoveThroughVillageGoal() /*override*/ = default;
49 // NOLINTEND
50
51public:
52 // virtual function thunks
53 // NOLINTBEGIN
54 MCNAPI bool $canUse();
55
56 MCNAPI bool $canContinueToUse();
57
58 MCNAPI void $start();
59
60 MCNAPI void $stop();
61
62 MCNAPI void $appendDebugInfo(::std::string& str) const;
63 // NOLINTEND
64
65public:
66 // vftables
67 // NOLINTBEGIN
68 MCNAPI static void** $vftable();
69 // NOLINTEND
70};
Definition Goal.h:14
Definition Mob.h:47
Definition MoveThroughVillageGoal.h:14
MCAPI void $appendDebugInfo(::std::string &str) const
MCAPI bool $canContinueToUse()
static MCAPI void ** $vftable()
Definition Path.h:16