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 virtual void setTransitioningSitting(bool value) /*override*/;
33
34 virtual ::SharedTypes::Legacy::LevelSoundEvent getAmbientSound() const /*override*/;
35
36 virtual void readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper) /*override*/;
37 // NOLINTEND
38
39public:
40 // member functions
41 // NOLINTBEGIN
42 MCAPI Panda(
43 ::ActorDefinitionGroup* definitions,
44 ::ActorDefinitionIdentifier const& definitionName,
45 ::EntityContext& entityContext
46 );
47
48 MCAPI float getLieOnBackAmount(float a) const;
49
50 MCAPI float getSitAmount(float a) const;
51
52 MCAPI void postNormalTick();
53
54 MCAPI void updateLaying();
55
56 MCAPI void updateRollAmount();
57
58 MCAPI void updateSitting();
59 // NOLINTEND
60
61public:
62 // constructor thunks
63 // NOLINTBEGIN
64 MCAPI void* $ctor(
65 ::ActorDefinitionGroup* definitions,
66 ::ActorDefinitionIdentifier const& definitionName,
67 ::EntityContext& entityContext
68 );
69 // NOLINTEND
70
71public:
72 // virtual function thunks
73 // NOLINTBEGIN
74 MCAPI void $setTransitioningSitting(bool value);
75
76 MCAPI ::SharedTypes::Legacy::LevelSoundEvent $getAmbientSound() const;
77
78 MCAPI void $readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper);
79
80
81 // NOLINTEND
82
83public:
84 // vftables
85 // NOLINTBEGIN
86 MCAPI static void** $vftable();
87 // NOLINTEND
88};
Definition ActorDefinitionGroup.h:37
Definition CompoundTag.h:23
Definition DataLoadHelper.h:20
Definition EntityContext.h:17
Definition ActorDefinitionIdentifier.h:15