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