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/BaseGoal.h"
8
9// auto generated forward declare list
10// clang-format off
11class Actor;
12class Mob;
13// clang-format on
14
15class LeapAtTargetGoal : public ::BaseGoal {
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 // NOLINTEND
43
44public:
45 // virtual function thunks
46 // NOLINTBEGIN
47 MCAPI bool $canUse();
48
49 MCAPI bool $canContinueToUse();
50
51 MCAPI void $start();
52
53 MCAPI void $appendDebugInfo(::std::string& str) const;
54
55
56 // NOLINTEND
57
58public:
59 // vftables
60 // NOLINTBEGIN
61 MCNAPI static void** $vftable();
62 // NOLINTEND
63};
Definition Actor.h:125
static MCAPI void ** $vftable()
Definition Mob.h:57