LeviLamina
Loading...
Searching...
No Matches
RestrictSunGoal.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/ai/goal/Goal.h"
7
8// auto generated forward declare list
9// clang-format off
10class Mob;
11// clang-format on
12
13class RestrictSunGoal : public ::Goal {
14public:
15 // member variables
16 // NOLINTBEGIN
17 ::ll::TypedStorage<8, 8, ::Mob&> mMob;
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 RestrictSunGoal& operator=(RestrictSunGoal const&);
23 RestrictSunGoal(RestrictSunGoal const&);
24 RestrictSunGoal();
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 void appendDebugInfo(::std::string& str) const /*override*/;
36
37 virtual ~RestrictSunGoal() /*override*/ = default;
38 // NOLINTEND
39
40public:
41 // virtual function thunks
42 // NOLINTBEGIN
43 MCAPI bool $canUse();
44
45 MCAPI void $start();
46
47 MCAPI void $stop();
48
49 MCAPI void $appendDebugInfo(::std::string& str) const;
50
51
52 // NOLINTEND
53
54public:
55 // vftables
56 // NOLINTBEGIN
57 MCNAPI static void** $vftable();
58 // NOLINTEND
59};
Definition Goal.h:14
Definition Mob.h:50
static MCAPI void ** $vftable()