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