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