LeviLamina
Loading...
Searching...
No Matches
ActorDamageByBlockSource.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/ActorDamageSource.h"
7
8// auto generated forward declare list
9// clang-format off
10class Actor;
11class Block;
12// clang-format on
13
14class ActorDamageByBlockSource : public ::ActorDamageSource {
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<8, 8, ::Block const*> mBlock;
19 // NOLINTEND
20
21public:
22 // virtual functions
23 // NOLINTBEGIN
24 virtual bool isBlockSource() const /*override*/;
25
26 virtual ::std::pair<::std::string, ::std::vector<::std::string>>
27 getDeathMessage(::std::string deadName, ::Actor* dead) const /*override*/;
28
29 virtual ::std::unique_ptr<::ActorDamageSource> clone() const /*override*/;
30 // NOLINTEND
31
32public:
33 // virtual function thunks
34 // NOLINTBEGIN
35 MCFOLD bool $isBlockSource() const;
36
37 MCAPI ::std::pair<::std::string, ::std::vector<::std::string>>
38 $getDeathMessage(::std::string deadName, ::Actor* dead) const;
39
40 MCAPI ::std::unique_ptr<::ActorDamageSource> $clone() const;
41
42
43 // NOLINTEND
44
45public:
46 // vftables
47 // NOLINTBEGIN
48 MCNAPI static void** $vftable();
49 // NOLINTEND
50};
Definition ActorDamageByBlockSource.h:14
static MCAPI void ** $vftable()
Definition Actor.h:125
Definition Block.h:69