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