LeviLamina
Loading...
Searching...
No Matches
Bee.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/ActorInitializationMethod.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 Bee : public ::Animal {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 8, uint64> mNormalLoop;
21 ::ll::TypedStorage<8, 8, uint64> mAggressiveLoop;
22 ::ll::TypedStorage<4, 4, float> mLoopSoundSpeed;
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 Bee();
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 virtual ~Bee() /*override*/;
33
34 virtual void reloadHardcodedClient(::ActorInitializationMethod method) /*override*/;
35
36 virtual void onSynchedDataUpdate(int dataId) /*override*/;
37 // NOLINTEND
38
39public:
40 // member functions
41 // NOLINTBEGIN
42 MCAPI
43 Bee(::ActorDefinitionGroup* definitions,
44 ::ActorDefinitionIdentifier const& definitionName,
45 ::EntityContext& entityContext);
46
47 MCAPI void _registerLoopingSounds();
48
49 MCAPI void postNormalTick();
50 // NOLINTEND
51
52public:
53 // constructor thunks
54 // NOLINTBEGIN
55 MCAPI void* $ctor(
56 ::ActorDefinitionGroup* definitions,
57 ::ActorDefinitionIdentifier const& definitionName,
58 ::EntityContext& entityContext
59 );
60 // NOLINTEND
61
62public:
63 // destructor thunk
64 // NOLINTBEGIN
65 MCAPI void $dtor();
66 // NOLINTEND
67
68public:
69 // virtual function thunks
70 // NOLINTBEGIN
71 MCAPI void $reloadHardcodedClient(::ActorInitializationMethod method);
72
73 MCAPI void $onSynchedDataUpdate(int dataId);
74
75
76 // NOLINTEND
77
78public:
79 // vftables
80 // NOLINTBEGIN
81 MCAPI static void** $vftable();
82 // NOLINTEND
83};
Definition ActorDefinitionGroup.h:37
Definition EntityContext.h:17
Definition ActorDefinitionIdentifier.h:15