LeviLamina
Loading...
Searching...
No Matches
Witch.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/ActorEvent.h"
7#include "mc/world/actor/monster/HumanoidMonster.h"
8
9// auto generated forward declare list
10// clang-format off
13class EntityContext;
14class Vec3;
16// clang-format on
17
18class Witch : public ::HumanoidMonster {
19public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<4, 4, int> mUsingTime;
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 Witch();
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 // vIndex: 69
33 virtual void handleEntityEvent(::ActorEvent id, int data) /*override*/;
34
35 // vIndex: 12
36 virtual ::Vec3 getFiringPos() const /*override*/;
37
38 // vIndex: 167
39 virtual float getDamageAfterEnchantReduction(::ActorDamageSource const& source, float damage) const /*override*/;
40
41 // vIndex: 8
42 virtual ~Witch() /*override*/ = default;
43 // NOLINTEND
44
45public:
46 // member functions
47 // NOLINTBEGIN
48 MCAPI Witch(
49 ::ActorDefinitionGroup* definitions,
50 ::ActorDefinitionIdentifier const& definitionName,
51 ::EntityContext& entityContext
52 );
53 // NOLINTEND
54
55public:
56 // constructor thunks
57 // NOLINTBEGIN
58 MCAPI void* $ctor(
59 ::ActorDefinitionGroup* definitions,
60 ::ActorDefinitionIdentifier const& definitionName,
61 ::EntityContext& entityContext
62 );
63 // NOLINTEND
64
65public:
66 // virtual function thunks
67 // NOLINTBEGIN
68 MCAPI void $handleEntityEvent(::ActorEvent id, int data);
69
70 MCAPI ::Vec3 $getFiringPos() const;
71
72 MCAPI float $getDamageAfterEnchantReduction(::ActorDamageSource const& source, float damage) const;
73 // NOLINTEND
74
75public:
76 // vftables
77 // NOLINTBEGIN
78 MCNAPI static void** $vftable();
79 // NOLINTEND
80};
Definition ActorDamageSource.h:18
Definition ActorDefinitionGroup.h:35
Definition EntityContext.h:16
Definition HumanoidMonster.h:14
Definition Vec3.h:10
Definition Witch.h:18
static MCAPI void ** $vftable()
Definition ActorDefinitionIdentifier.h:15