LeviLamina
Loading...
Searching...
No Matches
EndermanTakeBlockGoal.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/ai/goal/Goal.h"
7
8// auto generated forward declare list
9// clang-format off
10class BlockPos;
11class EnderMan;
12class Vec3;
13// clang-format on
14
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 8, ::EnderMan&> mEnderman;
20 // NOLINTEND
21
22public:
23 // virtual functions
24 // NOLINTBEGIN
25 // vIndex: 1
26 virtual bool canUse() /*override*/;
27
28 // vIndex: 6
29 virtual void tick() /*override*/;
30
31 // vIndex: 7
32 virtual void appendDebugInfo(::std::string& str) const /*override*/;
33
34 // vIndex: 10
35 virtual ::BlockPos getRandomNearbyBlockPos(::Vec3 const& centerPos) const;
36
37 // vIndex: 0
38 virtual ~EndermanTakeBlockGoal() /*override*/ = default;
39 // NOLINTEND
40
41public:
42 // destructor thunk
43 // NOLINTBEGIN
44
45 // NOLINTEND
46
47public:
48 // virtual function thunks
49 // NOLINTBEGIN
50 MCAPI bool $canUse();
51
52 MCAPI void $tick();
53
54 MCAPI void $appendDebugInfo(::std::string& str) const;
55
56 MCAPI ::BlockPos $getRandomNearbyBlockPos(::Vec3 const& centerPos) const;
57 // NOLINTEND
58
59public:
60 // vftables
61 // NOLINTBEGIN
62 MCAPI static void** $vftable();
63 // NOLINTEND
64};
Definition BlockPos.h:18
Definition EnderMan.h:23
Definition EndermanTakeBlockGoal.h:15
Definition Goal.h:14
Definition Vec3.h:10