LeviLamina
Loading...
Searching...
No Matches
TurnCommand.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/agent/agent_commands/Command.h"
7#include "mc/world/actor/agent/agent_components/Direction.h"
8
9namespace AgentCommands {
10
12public:
13 // member variables
14 // NOLINTBEGIN
15 ::ll::TypedStorage<1, 1, ::AgentComponents::Direction> mDir;
16 ::ll::TypedStorage<4, 4, float> mTurnStep;
17 ::ll::TypedStorage<4, 4, float> mRotation;
18 // NOLINTEND
19
20public:
21 // virtual functions
22 // NOLINTBEGIN
23 virtual void execute() /*override*/;
24
25 virtual bool isDone() /*override*/;
26
27 virtual void tick() /*override*/;
28 // NOLINTEND
29
30public:
31 // virtual function thunks
32 // NOLINTBEGIN
33 MCAPI void $execute();
34
35 MCAPI bool $isDone();
36
37 MCAPI void $tick();
38
39
40 // NOLINTEND
41
42public:
43 // vftables
44 // NOLINTBEGIN
45 MCNAPI static void** $vftable();
46 // NOLINTEND
47};
48
49} // namespace AgentCommands
Definition Command.h:16
Definition TurnCommand.h:11
static MCAPI void ** $vftable()