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/world/actor/ActorFilterGroup.h"
7#include "mc/world/actor/ai/goal/BaseGoalDefinition.h"
8#include "mc/world/actor/ai/goal/Goal.h"
9#include "mc/world/level/Tick.h"
10
11// auto generated forward declare list
12// clang-format off
13class Mob;
14// clang-format on
15
16class DrinkMilkGoal : public ::Goal {
17public:
18 // DrinkMilkGoal inner types declare
19 // clang-format off
21 // clang-format on
22
23 // DrinkMilkGoal inner types define
25 public:
26 // member variables
27 // NOLINTBEGIN
28 ::ll::TypedStorage<4, 4, float> mMaxCooldownSeconds;
29 ::ll::TypedStorage<8, 64, ::ActorFilterGroup> mFilters;
30 // NOLINTEND
31
32 public:
33 // virtual functions
34 // NOLINTBEGIN
35 // vIndex: 0
36 virtual ~DrinkMilkDefinition() /*override*/ = default;
37 // NOLINTEND
38
39 public:
40 // vftables
41 // NOLINTBEGIN
42 MCNAPI static void** $vftable();
43 // NOLINTEND
44 };
45
46public:
47 // member variables
48 // NOLINTBEGIN
49 ::ll::TypedStorage<4, 4, int> mMaxCooldownTicks;
50 ::ll::TypedStorage<8, 64, ::ActorFilterGroup> mFilters;
51 ::ll::TypedStorage<8, 8, ::Mob&> mMob;
52 ::ll::TypedStorage<8, 8, ::Tick> mNextStartTick;
53 ::ll::TypedStorage<8, 8, ::Tick> mFinishUsingItemTick;
54 // NOLINTEND
55
56public:
57 // prevent constructor by default
58 DrinkMilkGoal& operator=(DrinkMilkGoal const&);
61
62public:
63 // virtual functions
64 // NOLINTBEGIN
65 // vIndex: 1
66 virtual bool canUse() /*override*/;
67
68 // vIndex: 2
69 virtual bool canContinueToUse() /*override*/;
70
71 // vIndex: 4
72 virtual void start() /*override*/;
73
74 // vIndex: 5
75 virtual void stop() /*override*/;
76
77 // vIndex: 6
78 virtual void tick() /*override*/;
79
80 // vIndex: 7
81 virtual void appendDebugInfo(::std::string& str) const /*override*/;
82
83 // vIndex: 0
84 virtual ~DrinkMilkGoal() /*override*/ = default;
85 // NOLINTEND
86
87public:
88 // virtual function thunks
89 // NOLINTBEGIN
90 MCAPI bool $canUse();
91
92 MCAPI bool $canContinueToUse();
93
94 MCAPI void $start();
95
96 MCAPI void $stop();
97
98 MCAPI void $tick();
99
100 MCAPI void $appendDebugInfo(::std::string& str) const;
101 // NOLINTEND
102
103public:
104 // vftables
105 // NOLINTBEGIN
106 MCNAPI static void** $vftable();
107 // NOLINTEND
108};
Definition BaseGoalDefinition.h:10
Definition DrinkMilkGoal.h:24
static MCAPI void ** $vftable()
Definition DrinkMilkGoal.h:16
static MCAPI void ** $vftable()
Definition Goal.h:14
Definition Mob.h:47