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 // destructor thunk
74 // NOLINTBEGIN
75
76 // NOLINTEND
77
78public:
79 // virtual function thunks
80 // NOLINTBEGIN
81 MCAPI void $aiStep();
82
83 MCAPI void $normalTick();
84
85 MCAPI bool $checkSpawnRules(bool fromSpawner);
86
87 MCAPI void $readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper);
88
89 MCAPI void $addAdditionalSaveData(::CompoundTag& tag) const;
90 // NOLINTEND
91
92public:
93 // vftables
94 // NOLINTBEGIN
95 MCAPI static void** $vftable();
96 // NOLINTEND
97};
Definition ActorDefinitionGroup.h:27
Definition CompoundTag.h:13
Definition DataLoadHelper.h:20
Definition Endermite.h:17
Definition EntityContext.h:16
Definition Monster.h:19
Definition ActorDefinitionIdentifier.h:13
Definition Alias.h:14