LeviLamina
Loading...
Searching...
No Matches
SkeletonHorseTrapGoal.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/shared_types/legacy/Difficulty.h"
7#include "mc/world/actor/ai/goal/Goal.h"
8
9// auto generated forward declare list
10// clang-format off
11class Horse;
12class Player;
13class Skeleton;
14// clang-format on
15
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 8, ::Horse&> mHorse;
21 ::ll::TypedStorage<4, 4, int> mTrapLifeTicks;
22 ::ll::TypedStorage<4, 4, float> mTriggerDistance;
23 // NOLINTEND
24
25public:
26 // virtual functions
27 // NOLINTBEGIN
28 // vIndex: 6
29 virtual void tick() /*override*/;
30
31 // vIndex: 1
32 virtual bool canUse() /*override*/;
33
34 // vIndex: 4
35 virtual void start() /*override*/;
36
37 // vIndex: 7
38 virtual void appendDebugInfo(::std::string& debugInfo) const /*override*/;
39
40 // vIndex: 0
41 virtual ~SkeletonHorseTrapGoal() /*override*/ = default;
42 // NOLINTEND
43
44public:
45 // member functions
46 // NOLINTBEGIN
47 MCAPI ::Horse* _createHorse(::SharedTypes::Legacy::Difficulty const& difficulty);
48
49 MCAPI ::Skeleton* _createSkeleton(::SharedTypes::Legacy::Difficulty const& otherHorse, ::Horse const& difficulty);
50
51 MCAPI ::Player* _getClosestPlayer() const;
52 // NOLINTEND
53
54public:
55 // destructor thunk
56 // NOLINTBEGIN
57
58 // NOLINTEND
59
60public:
61 // virtual function thunks
62 // NOLINTBEGIN
63 MCAPI void $tick();
64
65 MCAPI bool $canUse();
66
67 MCFOLD void $start();
68
69 MCAPI void $appendDebugInfo(::std::string& debugInfo) const;
70 // NOLINTEND
71
72public:
73 // vftables
74 // NOLINTBEGIN
75 MCAPI static void** $vftable();
76 // NOLINTEND
77};
Definition Goal.h:14
Definition Horse.h:24
Definition Player.h:119
Definition SkeletonHorseTrapGoal.h:16
Definition Skeleton.h:19