LeviLamina
Loading...
Searching...
No Matches
Pig.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/animal/Animal.h"
7
8// auto generated forward declare list
9// clang-format off
11class ActorHurtResult;
12// clang-format on
13
14class Pig : public ::Animal {
15public:
16 // virtual functions
17 // NOLINTBEGIN
18 virtual ::ActorHurtResult _hurt(::ActorDamageSource const& source, float dmg, bool knock, bool ignite) /*override*/;
19
20 virtual ~Pig() /*override*/ = default;
21 // NOLINTEND
22
23public:
24 // virtual function thunks
25 // NOLINTBEGIN
26 MCAPI ::ActorHurtResult $_hurt(::ActorDamageSource const& source, float dmg, bool knock, bool ignite);
27
28
29 // NOLINTEND
30
31public:
32 // vftables
33 // NOLINTBEGIN
34 MCAPI static void** $vftable();
35 // NOLINTEND
36};
Definition ActorDamageSource.h:18
Definition ActorHurtResult.h:5
Definition Pig.h:14