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
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<8, 8, ::Block const*> mBlock;
19 // NOLINTEND
20
21public:
22 // virtual functions
23 // NOLINTBEGIN
24 // vIndex: 3
25 virtual bool isBlockSource() const /*override*/;
26
27 // vIndex: 10
28 virtual ::std::pair<::std::string, ::std::vector<::std::string>>
29 getDeathMessage(::std::string deadName, ::Actor* dead) const /*override*/;
30
31 // vIndex: 21
32 virtual ::std::unique_ptr<::ActorDamageSource> clone() const /*override*/;
33
34 // vIndex: 0
35 virtual ~ActorDamageByBlockSource() /*override*/ = default;
36 // NOLINTEND
37
38public:
39 // destructor thunk
40 // NOLINTBEGIN
41
42 // NOLINTEND
43
44public:
45 // virtual function thunks
46 // NOLINTBEGIN
47 MCFOLD bool $isBlockSource() const;
48
49 MCAPI ::std::pair<::std::string, ::std::vector<::std::string>>
50 $getDeathMessage(::std::string deadName, ::Actor* dead) const;
51
52 MCAPI ::std::unique_ptr<::ActorDamageSource> $clone() const;
53 // NOLINTEND
54
55public:
56 // vftables
57 // NOLINTBEGIN
58 MCAPI static void** $vftable();
59 // NOLINTEND
60};
Definition ActorDamageByBlockSource.h:14
Definition ActorDamageSource.h:18
Definition Actor.h:104
Definition Block.h:36