LeviLamina
Loading...
Searching...
No Matches
RandomSitGoal.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 RandomSitGoal : public ::Goal {
14public:
15 // member variables
16 // NOLINTBEGIN
17 ::ll::TypedStorage<8, 8, ::Mob&> mMob;
18 ::ll::TypedStorage<4, 4, float const> mStartChance;
19 ::ll::TypedStorage<4, 4, float const> mStopChance;
20 ::ll::TypedStorage<8, 8, uint64> mCooldown;
21 ::ll::TypedStorage<4, 4, int const> mSitCooldownTotal;
22 ::ll::TypedStorage<4, 4, int const> mMinSitTick;
23 ::ll::TypedStorage<4, 4, int> mCurrentSitTick;
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
28 RandomSitGoal& operator=(RandomSitGoal const&);
31
32public:
33 // virtual functions
34 // NOLINTBEGIN
35 // vIndex: 1
36 virtual bool canUse() /*override*/;
37
38 // vIndex: 4
39 virtual void start() /*override*/;
40
41 // vIndex: 5
42 virtual void stop() /*override*/;
43
44 // vIndex: 2
45 virtual bool canContinueToUse() /*override*/;
46
47 // vIndex: 7
48 virtual void appendDebugInfo(::std::string& str) const /*override*/;
49
50 // vIndex: 0
51 virtual ~RandomSitGoal() /*override*/ = default;
52 // NOLINTEND
53
54public:
55 // virtual function thunks
56 // NOLINTBEGIN
57 MCNAPI bool $canUse();
58
59 MCNAPI void $start();
60
61 MCNAPI void $stop();
62
63 MCNAPI bool $canContinueToUse();
64
65 MCNAPI void $appendDebugInfo(::std::string& str) const;
66 // NOLINTEND
67
68public:
69 // vftables
70 // NOLINTBEGIN
71 MCNAPI static void** $vftable();
72 // NOLINTEND
73};
Definition Goal.h:14
Definition Mob.h:47
Definition RandomSitGoal.h:13
MCAPI bool $canUse()
static MCAPI void ** $vftable()
MCAPI bool $canContinueToUse()
MCAPI void $appendDebugInfo(::std::string &str) const
MCAPI void $start()
MCAPI void $stop()