LeviLamina
Loading...
Searching...
No Matches
Rabbit.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/animal/Animal.h"
7
8// auto generated forward declare list
9// clang-format off
11class EntityContext;
13// clang-format on
14
15class Rabbit : public ::Animal {
16public:
17 // virtual functions
18 // NOLINTBEGIN
19 // vIndex: 93
20 virtual void onSynchedDataUpdate(int dataId) /*override*/;
21
22 // vIndex: 8
23 virtual ~Rabbit() /*override*/ = default;
24 // NOLINTEND
25
26public:
27 // member functions
28 // NOLINTBEGIN
29 MCAPI Rabbit(
30 ::ActorDefinitionGroup* definitions,
31 ::ActorDefinitionIdentifier const& definitionName,
32 ::EntityContext& entityContext
33 );
34 // NOLINTEND
35
36public:
37 // constructor thunks
38 // NOLINTBEGIN
39 MCAPI void* $ctor(
40 ::ActorDefinitionGroup* definitions,
41 ::ActorDefinitionIdentifier const& definitionName,
42 ::EntityContext& entityContext
43 );
44 // NOLINTEND
45
46public:
47 // destructor thunk
48 // NOLINTBEGIN
49
50 // NOLINTEND
51
52public:
53 // virtual function thunks
54 // NOLINTBEGIN
55 MCAPI void $onSynchedDataUpdate(int dataId);
56 // NOLINTEND
57
58public:
59 // vftables
60 // NOLINTBEGIN
61 MCAPI static void** $vftable();
62 // NOLINTEND
63};
Definition ActorDefinitionGroup.h:27
Definition Animal.h:19
Definition EntityContext.h:16
Definition Rabbit.h:15
Definition ActorDefinitionIdentifier.h:13