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