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
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 Bee& operator=(Bee const&);
28 Bee(Bee const&);
29 Bee();
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 // vIndex: 8
35 virtual ~Bee() /*override*/;
36
37 // vIndex: 3
38 virtual void reloadHardcodedClient(::ActorInitializationMethod method) /*override*/;
39
40 // vIndex: 93
41 virtual void onSynchedDataUpdate(int dataId) /*override*/;
42 // NOLINTEND
43
44public:
45 // member functions
46 // NOLINTBEGIN
47 MCAPI
48 Bee(::ActorDefinitionGroup* definitions,
49 ::ActorDefinitionIdentifier const& definitionName,
50 ::EntityContext& entityContext);
51
52 MCAPI void _registerLoopingSounds();
53
54 MCAPI void postNormalTick();
55 // NOLINTEND
56
57public:
58 // constructor thunks
59 // NOLINTBEGIN
60 MCAPI void* $ctor(
61 ::ActorDefinitionGroup* definitions,
62 ::ActorDefinitionIdentifier const& definitionName,
63 ::EntityContext& entityContext
64 );
65 // NOLINTEND
66
67public:
68 // destructor thunk
69 // NOLINTBEGIN
70 MCAPI void $dtor();
71 // NOLINTEND
72
73public:
74 // virtual function thunks
75 // NOLINTBEGIN
76 MCAPI void $reloadHardcodedClient(::ActorInitializationMethod method);
77
78 MCAPI void $onSynchedDataUpdate(int dataId);
79 // NOLINTEND
80
81public:
82 // vftables
83 // NOLINTBEGIN
84 MCNAPI static void** $vftable();
85 // NOLINTEND
86};
Definition ActorDefinitionGroup.h:36
Definition Animal.h:19
Definition Bee.h:16
static MCAPI void ** $vftable()
Definition EntityContext.h:16
Definition ActorDefinitionIdentifier.h:15
Definition Alias.h:14