LeviLamina
Loading...
Searching...
No Matches
Llama.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/animal/Animal.h"
7
8// auto generated forward declare list
9// clang-format off
12class EntityContext;
14// clang-format on
15
16class Llama : public ::Animal {
17public:
18 // prevent constructor by default
19 Llama();
20
21public:
22 // virtual functions
23 // NOLINTBEGIN
24 virtual void onFailedTame() /*override*/;
25
26 virtual float causeFallDamageToActor(float fallDistance, float multiplier, ::ActorDamageSource source) /*override*/;
27 // NOLINTEND
28
29public:
30 // member functions
31 // NOLINTBEGIN
32 MCAPI Llama(
33 ::ActorDefinitionGroup* definitions,
34 ::ActorDefinitionIdentifier const& definitionName,
35 ::EntityContext& entityContext
36 );
37 // NOLINTEND
38
39public:
40 // constructor thunks
41 // NOLINTBEGIN
42 MCAPI void* $ctor(
43 ::ActorDefinitionGroup* definitions,
44 ::ActorDefinitionIdentifier const& definitionName,
45 ::EntityContext& entityContext
46 );
47 // NOLINTEND
48
49public:
50 // virtual function thunks
51 // NOLINTBEGIN
52 MCAPI void $onFailedTame();
53
54 MCAPI float $causeFallDamageToActor(float fallDistance, float multiplier, ::ActorDamageSource source);
55
56
57 // NOLINTEND
58
59public:
60 // vftables
61 // NOLINTBEGIN
62 MCAPI static void** $vftable();
63 // NOLINTEND
64};
Definition ActorDamageSource.h:18
Definition ActorDefinitionGroup.h:37
Definition EntityContext.h:17
Definition ActorDefinitionIdentifier.h:15