LeviLamina
Loading...
Searching...
No Matches
EvocationFang.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/Actor.h"
7#include "mc/world/actor/ActorEvent.h"
8
9// auto generated forward declare list
10// clang-format off
11class Mob;
12struct ActorUniqueID;
13// clang-format on
14
15class EvocationFang : public ::Actor {
16public:
17 // member variables
18 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 EvocationFang& operator=(EvocationFang const&);
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 // vIndex: 24
32 virtual void normalTick() /*override*/;
33
34 // vIndex: 84
35 virtual ::ActorUniqueID getSourceUniqueID() const /*override*/;
36
37 // vIndex: 69
38 virtual void handleEntityEvent(::ActorEvent id, int data) /*override*/;
39
40 // vIndex: 35
41 virtual float getShadowRadius() const /*override*/;
42
43 // vIndex: 8
44 virtual ~EvocationFang() /*override*/ = default;
45 // NOLINTEND
46
47public:
48 // member functions
49 // NOLINTBEGIN
50 MCAPI void _dealDamageTo(::Mob& entity);
51 // NOLINTEND
52
53public:
54 // virtual function thunks
55 // NOLINTBEGIN
56 MCAPI void $normalTick();
57
58 MCFOLD ::ActorUniqueID $getSourceUniqueID() const;
59
60 MCAPI void $handleEntityEvent(::ActorEvent id, int data);
61
62 MCFOLD float $getShadowRadius() const;
63 // NOLINTEND
64
65public:
66 // vftables
67 // NOLINTBEGIN
68 MCNAPI static void** $vftable();
69 // NOLINTEND
70};
Definition Actor.h:103
Definition EvocationFang.h:15
static MCAPI void ** $vftable()
Definition Mob.h:47
Definition ActorUniqueID.h:5
Definition Alias.h:14