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