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 // prevent constructor by default
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 // vIndex: 1
32 virtual bool canUse() /*override*/;
33
34 // vIndex: 6
35 virtual void tick() /*override*/;
36
37 // vIndex: 7
38 virtual void appendDebugInfo(::std::string& str) const /*override*/;
39
40 // vIndex: 10
41 virtual ::BlockPos getRandomNearbyBlockPos(::Vec3 const& centerPos) const;
42
43 // vIndex: 0
44 virtual ~EndermanTakeBlockGoal() /*override*/ = default;
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 MCNAPI static void** $vftable();
63 // NOLINTEND
64};
Definition BlockPos.h:18
Definition EnderMan.h:24
Definition EndermanTakeBlockGoal.h:15
static MCAPI void ** $vftable()
Definition Goal.h:14
Definition Vec3.h:10