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 virtual void onTame() /*override*/;
25
26 virtual ::SharedTypes::Legacy::LevelSoundEvent getAmbientSound() const /*override*/;
27 // NOLINTEND
28
29public:
30 // member functions
31 // NOLINTBEGIN
32 MCAPI
33 Cat(::ActorDefinitionGroup* definitions,
34 ::ActorDefinitionIdentifier const& definitionName,
35 ::EntityContext& entityContext);
36 // NOLINTEND
37
38public:
39 // constructor thunks
40 // NOLINTBEGIN
41 MCAPI void* $ctor(
42 ::ActorDefinitionGroup* definitions,
43 ::ActorDefinitionIdentifier const& definitionName,
44 ::EntityContext& entityContext
45 );
46 // NOLINTEND
47
48public:
49 // virtual function thunks
50 // NOLINTBEGIN
51 MCAPI void $onTame();
52
53 MCAPI ::SharedTypes::Legacy::LevelSoundEvent $getAmbientSound() const;
54
55
56 // NOLINTEND
57
58public:
59 // vftables
60 // NOLINTBEGIN
61 MCAPI static void** $vftable();
62 // NOLINTEND
63};
Definition ActorDefinitionGroup.h:37
Definition EntityContext.h:17
Definition ActorDefinitionIdentifier.h:15