LeviLamina
Loading...
Searching...
No Matches
MeleeBoxAttackGoal.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/ai/goal/MeleeAttackBaseGoal.h"
7
8// auto generated forward declare list
9// clang-format off
10class AABB;
11class Actor;
12class Mob;
13// clang-format on
14
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<4, 4, float> mHorizontalReach;
20 // NOLINTEND
21
22public:
23 // virtual functions
24 // NOLINTBEGIN
25 // vIndex: 0
26 virtual ~MeleeBoxAttackGoal() /*override*/ = default;
27
28 // vIndex: 6
29 virtual void tick() /*override*/;
30
31 // vIndex: 7
32 virtual void appendDebugInfo(::std::string& str) const /*override*/;
33 // NOLINTEND
34
35public:
36 // member functions
37 // NOLINTBEGIN
38 MCNAPI ::AABB _getTargetHitBox(::Actor const& target) const;
39 // NOLINTEND
40
41public:
42 // static functions
43 // NOLINTBEGIN
44 MCNAPI static bool _isTargetInLineOfSight(::Mob const& mob, ::Actor const& target);
45 // NOLINTEND
46
47public:
48 // virtual function thunks
49 // NOLINTBEGIN
50 MCNAPI void $tick();
51
52 MCNAPI void $appendDebugInfo(::std::string& str) const;
53 // NOLINTEND
54
55public:
56 // vftables
57 // NOLINTBEGIN
58 MCNAPI static void** $vftable();
59 // NOLINTEND
60};
Definition AABB.h:18
Definition Actor.h:103
Definition MeleeAttackBaseGoal.h:19
Definition MeleeBoxAttackGoal.h:15
MCAPI::AABB _getTargetHitBox(::Actor const &target) const
MCAPI void $tick()
MCAPI void $appendDebugInfo(::std::string &str) const
static MCAPI void ** $vftable()
static MCAPI bool _isTargetInLineOfSight(::Mob const &mob, ::Actor const &target)
Definition Mob.h:47