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 // prevent constructor by default
28 LeapAtTargetGoal& operator=(LeapAtTargetGoal const&);
29 LeapAtTargetGoal(LeapAtTargetGoal const&);
30 LeapAtTargetGoal();
31
32public:
33 // virtual functions
34 // NOLINTBEGIN
35 virtual bool canUse() /*override*/;
36
37 virtual bool canContinueToUse() /*override*/;
38
39 virtual void start() /*override*/;
40
41 virtual void appendDebugInfo(::std::string& str) const /*override*/;
42
43 virtual ~LeapAtTargetGoal() /*override*/ = default;
44 // NOLINTEND
45
46public:
47 // virtual function thunks
48 // NOLINTBEGIN
49 MCAPI bool $canUse();
50
51 MCAPI bool $canContinueToUse();
52
53 MCAPI void $start();
54
55 MCAPI void $appendDebugInfo(::std::string& str) const;
56
57
58 // NOLINTEND
59
60public:
61 // vftables
62 // NOLINTBEGIN
63 MCNAPI static void** $vftable();
64 // NOLINTEND
65};
Definition Actor.h:106
Definition Goal.h:14
static MCAPI void ** $vftable()
Definition Mob.h:51