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
21 ::ll::TypedStorage<4, 4, int> mLifeTime;
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 Endermite();
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 // vIndex: 146
32 virtual void aiStep() /*override*/;
33
34 // vIndex: 24
35 virtual void normalTick() /*override*/;
36
37 // vIndex: 148
38 virtual bool checkSpawnRules(bool fromSpawner) /*override*/;
39
40 // vIndex: 136
41 virtual void readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper) /*override*/;
42
43 // vIndex: 137
44 virtual void addAdditionalSaveData(::CompoundTag& tag) const /*override*/;
45
46 // vIndex: 8
47 virtual ~Endermite() /*override*/ = default;
48 // NOLINTEND
49
50public:
51 // member functions
52 // NOLINTBEGIN
53 MCAPI Endermite(
54 ::ActorDefinitionGroup* definitions,
55 ::ActorDefinitionIdentifier const& definitionName,
56 ::EntityContext& entityContext
57 );
58 // NOLINTEND
59
60public:
61 // constructor thunks
62 // NOLINTBEGIN
63 MCAPI void* $ctor(
64 ::ActorDefinitionGroup* definitions,
65 ::ActorDefinitionIdentifier const& definitionName,
66 ::EntityContext& entityContext
67 );
68 // NOLINTEND
69
70public:
71 // virtual function thunks
72 // NOLINTBEGIN
73 MCAPI void $aiStep();
74
75 MCAPI void $normalTick();
76
77 MCAPI bool $checkSpawnRules(bool fromSpawner);
78
79 MCAPI void $readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper);
80
81 MCAPI void $addAdditionalSaveData(::CompoundTag& tag) const;
82 // NOLINTEND
83
84public:
85 // vftables
86 // NOLINTBEGIN
87 MCNAPI static void** $vftable();
88 // NOLINTEND
89};
Definition ActorDefinitionGroup.h:32
Definition CompoundTag.h:13
Definition DataLoadHelper.h:20
Definition Endermite.h:17
static MCAPI void ** $vftable()
Definition EntityContext.h:16
Definition Monster.h:20
Definition ActorDefinitionIdentifier.h:15