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