LeviLamina
Loading...
Searching...
No Matches
BegGoal.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/TempEPtr.h"
7#include "mc/world/actor/ai/goal/Goal.h"
8
9// auto generated forward declare list
10// clang-format off
11class ItemDescriptor;
12class Mob;
13class Player;
14// clang-format on
15
16class BegGoal : public ::Goal {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 8, ::Mob&> mMob;
21 ::ll::TypedStorage<4, 4, float> mLookDistance;
22 ::ll::TypedStorage<4, 4, int> mLookTime;
23 ::ll::TypedStorage<4, 4, int> mMinLookTime;
24 ::ll::TypedStorage<4, 4, int> mMaxLookTime;
25 ::ll::TypedStorage<8, 40, ::TempEPtr<::Player>> mPlayer;
26 ::ll::TypedStorage<8, 24, ::std::vector<::ItemDescriptor>> mItems;
27 // NOLINTEND
28
29public:
30 // prevent constructor by default
31 BegGoal& operator=(BegGoal const&);
32 BegGoal(BegGoal const&);
33 BegGoal();
34
35public:
36 // virtual functions
37 // NOLINTBEGIN
38 virtual bool canUse() /*override*/;
39
40 virtual bool canContinueToUse() /*override*/;
41
42 virtual void start() /*override*/;
43
44 virtual void stop() /*override*/;
45
46 virtual void tick() /*override*/;
47
48 virtual void appendDebugInfo(::std::string& str) const /*override*/;
49
50 virtual ~BegGoal() /*override*/;
51 // NOLINTEND
52
53public:
54 // member functions
55 // NOLINTBEGIN
56 MCAPI bool _playerHoldingInteresting(::Player* player);
57 // NOLINTEND
58
59public:
60 // destructor thunk
61 // NOLINTBEGIN
62 MCAPI void $dtor();
63 // NOLINTEND
64
65public:
66 // virtual function thunks
67 // NOLINTBEGIN
68 MCAPI bool $canUse();
69
70 MCAPI bool $canContinueToUse();
71
72 MCAPI void $start();
73
74 MCAPI void $stop();
75
76 MCAPI void $tick();
77
78 MCAPI void $appendDebugInfo(::std::string& str) const;
79
80
81 // NOLINTEND
82
83public:
84 // vftables
85 // NOLINTBEGIN
86 MCNAPI static void** $vftable();
87 // NOLINTEND
88};
static MCAPI void ** $vftable()
Definition Goal.h:14
Definition ItemDescriptor.h:24
Definition Mob.h:51
Definition Player.h:129