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