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/BaseGoal.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 ::BaseGoal {
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 // NOLINTEND
39
40public:
41 // member functions
42 // NOLINTBEGIN
43 MCAPI explicit BarterGoal(::Mob& mob);
44
45 MCAPI ::Vec3 _getThrowVector();
46
47 MCAPI void _sendBarterEventPacket(::BarterComponent* barterComponent);
48 // NOLINTEND
49
50public:
51 // constructor thunks
52 // NOLINTBEGIN
53 MCAPI void* $ctor(::Mob& mob);
54 // NOLINTEND
55
56public:
57 // virtual function thunks
58 // NOLINTBEGIN
59 MCAPI bool $canUse();
60
61 MCFOLD bool $canContinueToUse();
62
63 MCAPI void $tick();
64
65 MCAPI void $appendDebugInfo(::std::string& str) const;
66
67
68 // NOLINTEND
69
70public:
71 // vftables
72 // NOLINTBEGIN
73 MCNAPI static void** $vftable();
74 // NOLINTEND
75};
Definition BarterComponent.h:13
static MCAPI void ** $vftable()
Definition Mob.h:57
Definition Vec3.h:10