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 virtual void aiStep() /*override*/;
32
33 virtual void normalTick() /*override*/;
34
35 virtual bool checkSpawnRules(bool fromSpawner) /*override*/;
36
37 virtual void readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper) /*override*/;
38
39 virtual void addAdditionalSaveData(::CompoundTag& tag) const /*override*/;
40
41 virtual ~Endermite() /*override*/ = default;
42 // NOLINTEND
43
44public:
45 // member functions
46 // NOLINTBEGIN
47 MCAPI Endermite(
48 ::ActorDefinitionGroup* definitions,
49 ::ActorDefinitionIdentifier const& definitionName,
50 ::EntityContext& entityContext
51 );
52 // NOLINTEND
53
54public:
55 // constructor thunks
56 // NOLINTBEGIN
57 MCAPI void* $ctor(
58 ::ActorDefinitionGroup* definitions,
59 ::ActorDefinitionIdentifier const& definitionName,
60 ::EntityContext& entityContext
61 );
62 // NOLINTEND
63
64public:
65 // virtual function thunks
66 // NOLINTBEGIN
67 MCAPI void $aiStep();
68
69 MCAPI void $normalTick();
70
71 MCAPI bool $checkSpawnRules(bool fromSpawner);
72
73 MCAPI void $readAdditionalSaveData(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper);
74
75 MCAPI void $addAdditionalSaveData(::CompoundTag& tag) const;
76
77
78 // NOLINTEND
79
80public:
81 // vftables
82 // NOLINTBEGIN
83 MCAPI static void** $vftable();
84 // NOLINTEND
85};
Definition ActorDefinitionGroup.h:35
Definition CompoundTag.h:23
Definition DataLoadHelper.h:20
Definition EntityContext.h:16
Definition ActorDefinitionIdentifier.h:15