LeviLamina
Loading...
Searching...
No Matches
Panda.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 CompoundTag;
13class DataLoadHelper;
14class EntityContext;
16// clang-format on
17
18class Panda : public ::Animal {
19public:
20 // member variables
21 // NOLINTBEGIN
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 Panda& operator=(Panda const&);
28 Panda(Panda const&);
29 Panda();
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 // vIndex: 170
35 virtual void setTransitioningSitting(bool value) /*override*/;
36
37 // vIndex: 63
38 virtual ::SharedTypes::Legacy::LevelSoundEvent getAmbientSound() const /*override*/;
39
40 // vIndex: 136
41 virtual void readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper) /*override*/;
42
43 // vIndex: 8
44 virtual ~Panda() /*override*/ = default;
45 // NOLINTEND
46
47public:
48 // member functions
49 // NOLINTBEGIN
50 MCAPI Panda(
51 ::ActorDefinitionGroup* definitions,
52 ::ActorDefinitionIdentifier const& definitionName,
53 ::EntityContext& entityContext
54 );
55
56 MCAPI float getSitAmount(float a) const;
57
58 MCAPI void postNormalTick();
59
60 MCAPI void updateLaying();
61
62 MCAPI void updateSitting();
63 // NOLINTEND
64
65public:
66 // constructor thunks
67 // NOLINTBEGIN
68 MCAPI void* $ctor(
69 ::ActorDefinitionGroup* definitions,
70 ::ActorDefinitionIdentifier const& definitionName,
71 ::EntityContext& entityContext
72 );
73 // NOLINTEND
74
75public:
76 // destructor thunk
77 // NOLINTBEGIN
78
79 // NOLINTEND
80
81public:
82 // virtual function thunks
83 // NOLINTBEGIN
84 MCAPI void $setTransitioningSitting(bool value);
85
86 MCAPI ::SharedTypes::Legacy::LevelSoundEvent $getAmbientSound() const;
87
88 MCAPI void $readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper);
89 // NOLINTEND
90
91public:
92 // vftables
93 // NOLINTBEGIN
94 MCAPI static void** $vftable();
95 // NOLINTEND
96};
Definition ActorDefinitionGroup.h:27
Definition Animal.h:19
Definition CompoundTag.h:13
Definition DataLoadHelper.h:20
Definition EntityContext.h:16
Definition Panda.h:18
Definition ActorDefinitionIdentifier.h:13
Definition Alias.h:14