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