LeviLamina
Loading...
Searching...
No Matches
DrinkMilkGoal.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/json_utils/JsonSchemaObjectNode.h"
7#include "mc/world/actor/ai/goal/BaseGoalDefinition.h"
8#include "mc/world/actor/ai/goal/Goal.h"
9
10// auto generated forward declare list
11// clang-format off
13class Mob;
14struct Tick;
15namespace JsonUtil { class EmptyClass; }
16// clang-format on
17
18class DrinkMilkGoal : public ::Goal {
19public:
20 // DrinkMilkGoal inner types declare
21 // clang-format off
23 // clang-format on
24
25 // DrinkMilkGoal inner types define
27 public:
28 // member variables
29 // NOLINTBEGIN
32 // NOLINTEND
33
34 public:
35 // prevent constructor by default
39
40 public:
41 // virtual functions
42 // NOLINTBEGIN
43 // vIndex: 0
44 virtual ~DrinkMilkDefinition() /*override*/ = default;
45 // NOLINTEND
46
47 public:
48 // static functions
49 // NOLINTBEGIN
50 MCAPI static void buildSchema(
51 ::std::string const& name,
52 ::std::shared_ptr<
54 );
55 // NOLINTEND
56
57 public:
58 // destructor thunk
59 // NOLINTBEGIN
60
61 // NOLINTEND
62
63 public:
64 // vftables
65 // NOLINTBEGIN
66 MCAPI static void** $vftable();
67 // NOLINTEND
68 };
69
70public:
71 // member variables
72 // NOLINTBEGIN
73 ::ll::TypedStorage<4, 4, int> mMaxCooldownTicks;
74 ::ll::TypedStorage<8, 64, ::ActorFilterGroup> mFilters;
75 ::ll::TypedStorage<8, 8, ::Mob&> mMob;
76 ::ll::TypedStorage<8, 8, ::Tick> mNextStartTick;
77 ::ll::TypedStorage<8, 8, ::Tick> mFinishUsingItemTick;
78 // NOLINTEND
79
80public:
81 // virtual functions
82 // NOLINTBEGIN
83 // vIndex: 1
84 virtual bool canUse() /*override*/;
85
86 // vIndex: 2
87 virtual bool canContinueToUse() /*override*/;
88
89 // vIndex: 4
90 virtual void start() /*override*/;
91
92 // vIndex: 5
93 virtual void stop() /*override*/;
94
95 // vIndex: 6
96 virtual void tick() /*override*/;
97
98 // vIndex: 7
99 virtual void appendDebugInfo(::std::string& str) const /*override*/;
100
101 // vIndex: 0
102 virtual ~DrinkMilkGoal() /*override*/ = default;
103 // NOLINTEND
104
105public:
106 // destructor thunk
107 // NOLINTBEGIN
108
109 // NOLINTEND
110
111public:
112 // virtual function thunks
113 // NOLINTBEGIN
114 MCAPI bool $canUse();
115
116 MCAPI bool $canContinueToUse();
117
118 MCAPI void $start();
119
120 MCAPI void $stop();
121
122 MCAPI void $tick();
123
124 MCAPI void $appendDebugInfo(::std::string& str) const;
125 // NOLINTEND
126
127public:
128 // vftables
129 // NOLINTBEGIN
130 MCAPI static void** $vftable();
131 // NOLINTEND
132};
Definition ActorFilterGroup.h:16
Definition BaseGoalDefinition.h:10
Definition DrinkMilkGoal.h:26
Definition DrinkMilkGoal.h:18
Definition Goal.h:14
Definition JsonSchemaObjectNode.h:8
Definition Mob.h:47
Definition Tick.h:5
Definition Alias.h:14