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 // vIndex: 1
39 virtual bool canUse() /*override*/;
40
41 // vIndex: 2
42 virtual bool canContinueToUse() /*override*/;
43
44 // vIndex: 4
45 virtual void start() /*override*/;
46
47 // vIndex: 5
48 virtual void stop() /*override*/;
49
50 // vIndex: 6
51 virtual void tick() /*override*/;
52
53 // vIndex: 7
54 virtual void appendDebugInfo(::std::string& str) const /*override*/;
55
56 // vIndex: 0
57 virtual ~BegGoal() /*override*/;
58 // NOLINTEND
59
60public:
61 // member functions
62 // NOLINTBEGIN
63 MCNAPI bool _playerHoldingInteresting(::Player* player);
64 // NOLINTEND
65
66public:
67 // destructor thunk
68 // NOLINTBEGIN
69 MCNAPI void $dtor();
70 // NOLINTEND
71
72public:
73 // virtual function thunks
74 // NOLINTBEGIN
75 MCNAPI bool $canUse();
76
77 MCNAPI bool $canContinueToUse();
78
79 MCNAPI void $start();
80
81 MCNAPI void $stop();
82
83 MCNAPI void $tick();
84
85 MCNAPI void $appendDebugInfo(::std::string& str) const;
86 // NOLINTEND
87
88public:
89 // vftables
90 // NOLINTBEGIN
91 MCNAPI static void** $vftable();
92 // NOLINTEND
93};
Definition BegGoal.h:16
MCAPI void $tick()
MCAPI void $stop()
MCAPI bool $canUse()
MCAPI void $appendDebugInfo(::std::string &str) const
static MCAPI void ** $vftable()
MCAPI void $start()
MCAPI bool $canContinueToUse()
MCAPI bool _playerHoldingInteresting(::Player *player)
MCAPI void $dtor()
Definition Goal.h:14
Definition ItemDescriptor.h:22
Definition Mob.h:47
Definition Player.h:119