LeviLamina
Loading...
Searching...
No Matches
BarterGoal.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/ai/goal/Goal.h"
7
8// auto generated forward declare list
9// clang-format off
10class BarterComponent;
11class Mob;
12class Vec3;
13// clang-format on
14
15class BarterGoal : public ::Goal {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 8, ::Mob&> mMob;
20 // NOLINTEND
21
22public:
23 // virtual functions
24 // NOLINTBEGIN
25 // vIndex: 1
26 virtual bool canUse() /*override*/;
27
28 // vIndex: 2
29 virtual bool canContinueToUse() /*override*/;
30
31 // vIndex: 6
32 virtual void tick() /*override*/;
33
34 // vIndex: 7
35 virtual void appendDebugInfo(::std::string& str) const /*override*/;
36
37 // vIndex: 0
38 virtual ~BarterGoal() /*override*/ = default;
39 // NOLINTEND
40
41public:
42 // member functions
43 // NOLINTBEGIN
44 MCAPI ::Vec3 _getThrowVector();
45
46 MCAPI void _sendBarterEventPacket(::BarterComponent* barterComponent);
47 // NOLINTEND
48
49public:
50 // destructor thunk
51 // NOLINTBEGIN
52
53 // NOLINTEND
54
55public:
56 // virtual function thunks
57 // NOLINTBEGIN
58 MCAPI bool $canUse();
59
60 MCFOLD bool $canContinueToUse();
61
62 MCAPI void $tick();
63
64 MCAPI void $appendDebugInfo(::std::string& str) const;
65 // NOLINTEND
66
67public:
68 // vftables
69 // NOLINTBEGIN
70 MCAPI static void** $vftable();
71 // NOLINTEND
72};
Definition BarterComponent.h:11
Definition BarterGoal.h:15
Definition Goal.h:14
Definition Mob.h:47
Definition Vec3.h:10