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/BaseGoal.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 ::BaseGoal {
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 // NOLINTEND
50
51public:
52 // member functions
53 // NOLINTBEGIN
54 MCAPI BegGoal(
55 ::Mob& tamableAnimal,
56 ::std::vector<::ItemDescriptor> const& itemList,
57 float lookDistance,
58 int minLookTime,
59 int maxLookTime
60 );
61 // NOLINTEND
62
63public:
64 // constructor thunks
65 // NOLINTBEGIN
66 MCAPI void* $ctor(
67 ::Mob& tamableAnimal,
68 ::std::vector<::ItemDescriptor> const& itemList,
69 float lookDistance,
70 int minLookTime,
71 int maxLookTime
72 );
73 // NOLINTEND
74
75public:
76 // virtual function thunks
77 // NOLINTBEGIN
78 MCAPI bool $canUse();
79
80 MCAPI bool $canContinueToUse();
81
82 MCAPI void $start();
83
84 MCAPI void $stop();
85
86 MCAPI void $tick();
87
88 MCAPI void $appendDebugInfo(::std::string& str) const;
89
90
91 // NOLINTEND
92
93public:
94 // vftables
95 // NOLINTBEGIN
96 MCNAPI static void** $vftable();
97 // NOLINTEND
98};
static MCAPI void ** $vftable()
Definition ItemDescriptor.h:25
Definition Mob.h:57
Definition Player.h:137