LeviLamina
Loading...
Searching...
No Matches
Pufferfish.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/animal/Fish.h"
7
8// auto generated forward declare list
9// clang-format off
10class Actor;
13class EntityContext;
15// clang-format on
16
17class Pufferfish : public ::Fish {
18public:
19 // prevent constructor by default
20 Pufferfish();
21
22public:
23 // virtual functions
24 // NOLINTBEGIN
25 // vIndex: 24
26 virtual void normalTick() /*override*/;
27
28 // vIndex: 27
29 virtual bool startRiding(::Actor& vehicle, bool forceRiding) /*override*/;
30
31 // vIndex: 135
32 virtual bool _hurt(::ActorDamageSource const& source, float damage, bool knock, bool ignite) /*override*/;
33
34 // vIndex: 8
35 virtual ~Pufferfish() /*override*/ = default;
36 // NOLINTEND
37
38public:
39 // member functions
40 // NOLINTBEGIN
41 MCAPI Pufferfish(
42 ::ActorDefinitionGroup* definitions,
43 ::ActorDefinitionIdentifier const& definitionName,
44 ::EntityContext& entityContext
45 );
46 // NOLINTEND
47
48public:
49 // constructor thunks
50 // NOLINTBEGIN
51 MCAPI void* $ctor(
52 ::ActorDefinitionGroup* definitions,
53 ::ActorDefinitionIdentifier const& definitionName,
54 ::EntityContext& entityContext
55 );
56 // NOLINTEND
57
58public:
59 // virtual function thunks
60 // NOLINTBEGIN
61 MCAPI void $normalTick();
62
63 MCFOLD bool $startRiding(::Actor& vehicle, bool forceRiding);
64
65 MCAPI bool $_hurt(::ActorDamageSource const& source, float damage, bool knock, bool ignite);
66 // NOLINTEND
67
68public:
69 // vftables
70 // NOLINTBEGIN
71 MCNAPI static void** $vftable();
72 // NOLINTEND
73};
Definition ActorDamageSource.h:18
Definition ActorDefinitionGroup.h:29
Definition Actor.h:103
Definition EntityContext.h:16
Definition Fish.h:18
Definition Pufferfish.h:17
static MCAPI void ** $vftable()
Definition ActorDefinitionIdentifier.h:15