LeviLamina
Loading...
Searching...
No Matches
MoveNode.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
9// auto generated forward declare list
10// clang-format off
11class Actor;
12// clang-format on
13
14class MoveNode : public ::BehaviorNode {
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<1, 1, uchar> mDirectionToMove;
19 ::ll::TypedStorage<1, 1, uchar> mSecondDirectionToMove;
20 ::ll::TypedStorage<4, 4, int> mNumTicksToMove;
21 ::ll::TypedStorage<4, 4, int> mNumTicksMoved;
22 // NOLINTEND
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 virtual ::BehaviorStatus tick(::Actor& owner) /*override*/;
28
29 virtual void initializeFromDefinition(::Actor& owner) /*override*/;
30 // NOLINTEND
31
32public:
33 // member functions
34 // NOLINTBEGIN
35 MCAPI MoveNode();
36
37 MCAPI uchar convertDirectionStringToKeyPress(::std::string directionString);
38 // NOLINTEND
39
40public:
41 // constructor thunks
42 // NOLINTBEGIN
43 MCAPI void* $ctor();
44 // NOLINTEND
45
46public:
47 // virtual function thunks
48 // NOLINTBEGIN
49 MCAPI ::BehaviorStatus $tick(::Actor& owner);
50
51 MCAPI void $initializeFromDefinition(::Actor& owner);
52
53
54 // NOLINTEND
55
56public:
57 // vftables
58 // NOLINTBEGIN
59 MCNAPI static void** $vftable();
60 // NOLINTEND
61};
Definition Actor.h:125
static MCAPI void ** $vftable()