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