LeviLamina
Loading...
Searching...
No Matches
ActivateToolNode.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/bhave/BehaviorStatus.h"
7#include "mc/world/actor/bhave/node/BehaviorNode.h"
8#include "mc/world/level/BlockPos.h"
9
10// auto generated forward declare list
11// clang-format off
12class Actor;
13class Block;
14// clang-format on
15
16class ActivateToolNode : public ::BehaviorNode {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<4, 12, ::BlockPos> mBlockPos;
21 ::ll::TypedStorage<8, 8, ::Block const*> mStartingBlock;
22 ::ll::TypedStorage<1, 1, bool> mRightMouseDown;
23 ::ll::TypedStorage<4, 4, int> mDelayTicks;
24 ::ll::TypedStorage<4, 4, int> mDelayCounter;
25 ::ll::TypedStorage<1, 1, bool> mPreActionDone;
26 // NOLINTEND
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 virtual ::BehaviorStatus tick(::Actor& owner) /*override*/;
32
33 virtual void initializeFromDefinition(::Actor& owner) /*override*/;
34 // NOLINTEND
35
36public:
37 // member functions
38 // NOLINTBEGIN
39 MCAPI ActivateToolNode();
40 // NOLINTEND
41
42public:
43 // constructor thunks
44 // NOLINTBEGIN
45 MCAPI void* $ctor();
46 // NOLINTEND
47
48public:
49 // virtual function thunks
50 // NOLINTBEGIN
51 MCAPI ::BehaviorStatus $tick(::Actor& owner);
52
53 MCFOLD void $initializeFromDefinition(::Actor& owner);
54
55
56 // NOLINTEND
57
58public:
59 // vftables
60 // NOLINTBEGIN
61 MCNAPI static void** $vftable();
62 // NOLINTEND
63};
static MCAPI void ** $vftable()
Definition Actor.h:125
Definition Block.h:69