LeviLamina
Loading...
Searching...
No Matches
RemovedActorDamageByType.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/ActorDamageSource.h"
7#include "mc/world/actor/ActorType.h"
8
9// auto generated forward declare list
10// clang-format off
11class Actor;
12// clang-format on
13
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<4, 4, ::ActorType> mEntityType;
19 // NOLINTEND
20
21public:
22 // virtual functions
23 // NOLINTBEGIN
24 virtual ::std::pair<::std::string, ::std::vector<::std::string>>
25 getDeathMessage(::std::string deadName, ::Actor* dead) const /*override*/;
26
27 virtual ::std::unique_ptr<::ActorDamageSource> clone() const /*override*/;
28
29 virtual ::ActorType getEntityType() const /*override*/;
30
31 virtual ~RemovedActorDamageByType() /*override*/ = default;
32 // NOLINTEND
33
34public:
35 // virtual function thunks
36 // NOLINTBEGIN
37
38 // NOLINTEND
39};
Definition ActorDamageSource.h:18
Definition Actor.h:105
Definition RemovedActorDamageByType.h:14