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 // prevent constructor by default
24 BarterGoal& operator=(BarterGoal const&);
25 BarterGoal(BarterGoal const&);
26 BarterGoal();
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 // vIndex: 1
32 virtual bool canUse() /*override*/;
33
34 // vIndex: 2
35 virtual bool canContinueToUse() /*override*/;
36
37 // vIndex: 6
38 virtual void tick() /*override*/;
39
40 // vIndex: 7
41 virtual void appendDebugInfo(::std::string& str) const /*override*/;
42
43 // vIndex: 0
44 virtual ~BarterGoal() /*override*/ = default;
45 // NOLINTEND
46
47public:
48 // member functions
49 // NOLINTBEGIN
50 MCNAPI ::Vec3 _getThrowVector();
51
52 MCNAPI void _sendBarterEventPacket(::BarterComponent* barterComponent);
53 // NOLINTEND
54
55public:
56 // virtual function thunks
57 // NOLINTBEGIN
58 MCNAPI bool $canUse();
59
60 MCNAPI bool $canContinueToUse();
61
62 MCNAPI void $tick();
63
64 MCNAPI void $appendDebugInfo(::std::string& str) const;
65 // NOLINTEND
66
67public:
68 // vftables
69 // NOLINTBEGIN
70 MCNAPI static void** $vftable();
71 // NOLINTEND
72};
Definition BarterComponent.h:13
Definition BarterGoal.h:15
static MCAPI void ** $vftable()
MCAPI void $appendDebugInfo(::std::string &str) const
MCAPI void $tick()
MCAPI::Vec3 _getThrowVector()
MCAPI bool $canUse()
MCAPI bool $canContinueToUse()
MCAPI void _sendBarterEventPacket(::BarterComponent *barterComponent)
Definition Goal.h:14
Definition Mob.h:47
Definition Vec3.h:10