LeviLamina
Loading...
Searching...
No Matches
Endermite.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/monster/Monster.h"
7
8// auto generated forward declare list
9// clang-format off
11class CompoundTag;
12class DataLoadHelper;
13class EntityContext;
15// clang-format on
16
17class Endermite : public ::Monster {
18public:
19 // member variables
20 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 Endermite& operator=(Endermite const&);
27 Endermite(Endermite const&);
28 Endermite();
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 // vIndex: 145
34 virtual void aiStep() /*override*/;
35
36 // vIndex: 24
37 virtual void normalTick() /*override*/;
38
39 // vIndex: 147
40 virtual bool checkSpawnRules(bool fromSpawner) /*override*/;
41
42 // vIndex: 136
43 virtual void readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper) /*override*/;
44
45 // vIndex: 137
46 virtual void addAdditionalSaveData(::CompoundTag& tag) const /*override*/;
47
48 // vIndex: 8
49 virtual ~Endermite() /*override*/ = default;
50 // NOLINTEND
51
52public:
53 // member functions
54 // NOLINTBEGIN
55 MCAPI Endermite(
56 ::ActorDefinitionGroup* definitions,
57 ::ActorDefinitionIdentifier const& definitionName,
58 ::EntityContext& entityContext
59 );
60 // NOLINTEND
61
62public:
63 // constructor thunks
64 // NOLINTBEGIN
65 MCAPI void* $ctor(
66 ::ActorDefinitionGroup* definitions,
67 ::ActorDefinitionIdentifier const& definitionName,
68 ::EntityContext& entityContext
69 );
70 // NOLINTEND
71
72public:
73 // virtual function thunks
74 // NOLINTBEGIN
75 MCAPI void $aiStep();
76
77 MCAPI void $normalTick();
78
79 MCAPI bool $checkSpawnRules(bool fromSpawner);
80
81 MCAPI void $readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper);
82
83 MCAPI void $addAdditionalSaveData(::CompoundTag& tag) const;
84 // NOLINTEND
85
86public:
87 // vftables
88 // NOLINTBEGIN
89 MCNAPI static void** $vftable();
90 // NOLINTEND
91};
Definition ActorDefinitionGroup.h:29
Definition CompoundTag.h:13
Definition DataLoadHelper.h:20
Definition Endermite.h:17
static MCAPI void ** $vftable()
Definition EntityContext.h:16
Definition Monster.h:19
Definition ActorDefinitionIdentifier.h:15
Definition Alias.h:14