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