LeviLamina
Loading...
Searching...
No Matches
Chicken.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 Chicken : public ::Animal {
16public:
17 // virtual functions
18 // NOLINTBEGIN
19 // vIndex: 8
20 virtual ~Chicken() /*override*/ = default;
21 // NOLINTEND
22
23public:
24 // member functions
25 // NOLINTBEGIN
26 MCAPI Chicken(
27 ::ActorDefinitionGroup* definitions,
28 ::ActorDefinitionIdentifier const& definitionName,
29 ::EntityContext& entityContext
30 );
31 // NOLINTEND
32
33public:
34 // constructor thunks
35 // NOLINTBEGIN
36 MCAPI void* $ctor(
37 ::ActorDefinitionGroup* definitions,
38 ::ActorDefinitionIdentifier const& definitionName,
39 ::EntityContext& entityContext
40 );
41 // NOLINTEND
42
43public:
44 // destructor thunk
45 // NOLINTBEGIN
46
47 // NOLINTEND
48
49public:
50 // vftables
51 // NOLINTBEGIN
52 MCAPI static void** $vftable();
53 // NOLINTEND
54};
Definition ActorDefinitionGroup.h:27
Definition Animal.h:19
Definition Chicken.h:15
Definition EntityContext.h:16
Definition ActorDefinitionIdentifier.h:13