LeviLamina
Loading...
Searching...
No Matches
TillCommand.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
9// auto generated forward declare list
10// clang-format off
11class Player;
12// clang-format on
13
14namespace AgentCommands {
15
17public:
18 // member variables
19 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 TillCommand& operator=(TillCommand const&);
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 // vIndex: 1
34 virtual void execute() /*override*/;
35
36 // vIndex: 2
37 virtual bool isDone() /*override*/;
38
39 // vIndex: 0
40 virtual ~TillCommand() /*override*/ = default;
41 // NOLINTEND
42
43public:
44 // member functions
45 // NOLINTBEGIN
46 MCAPI TillCommand(::Player& commander, ::std::string itemName, ::AgentComponents::Direction dir);
47 // NOLINTEND
48
49public:
50 // constructor thunks
51 // NOLINTBEGIN
52 MCAPI void* $ctor(::Player& commander, ::std::string itemName, ::AgentComponents::Direction dir);
53 // NOLINTEND
54
55public:
56 // destructor thunk
57 // NOLINTBEGIN
58
59 // NOLINTEND
60
61public:
62 // virtual function thunks
63 // NOLINTBEGIN
64 MCAPI void $execute();
65
66 MCAPI bool $isDone();
67 // NOLINTEND
68
69public:
70 // vftables
71 // NOLINTBEGIN
72 MCAPI static void** $vftable();
73 // NOLINTEND
74};
75
76} // namespace AgentCommands
Definition Command.h:7
Definition TillCommand.h:16
Definition Player.h:119
Definition Alias.h:14