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&);
31
32public:
33 // virtual functions
34 // NOLINTBEGIN
35 // vIndex: 1
36 virtual bool canUse() /*override*/;
37
38 // vIndex: 2
39 virtual bool canContinueToUse() /*override*/;
40
41 // vIndex: 4
42 virtual void start() /*override*/;
43
44 // vIndex: 7
45 virtual void appendDebugInfo(::std::string& str) const /*override*/;
46
47 // vIndex: 0
48 virtual ~LeapAtTargetGoal() /*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 $appendDebugInfo(::std::string& str) const;
61 // NOLINTEND
62
63public:
64 // vftables
65 // NOLINTBEGIN
66 MCNAPI static void** $vftable();
67 // NOLINTEND
68};
Definition Actor.h:103
Definition Goal.h:14
Definition LeapAtTargetGoal.h:15
MCAPI bool $canUse()
static MCAPI void ** $vftable()
MCAPI void $appendDebugInfo(::std::string &str) const
MCAPI void $start()
MCAPI bool $canContinueToUse()
Definition Mob.h:47