LeviLamina
Loading...
Searching...
No Matches
LootItemActorKilledCondition.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/storage/loot/predicates/LootItemCondition.h"
7
8// auto generated forward declare list
9// clang-format off
11class Random;
12namespace Json { class Value; }
13// clang-format on
14
15class LootItemActorKilledCondition : public ::LootItemCondition {
16public:
17 // member variables
18 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 LootItemActorKilledCondition& operator=(LootItemActorKilledCondition const&);
25 LootItemActorKilledCondition(LootItemActorKilledCondition const&);
26 LootItemActorKilledCondition();
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 virtual bool applies(::Random& context, ::LootTableContext&) /*override*/;
32
33 virtual ::LootItemCondition::ConditionType getConditionType() const /*override*/;
34 // NOLINTEND
35
36public:
37 // member functions
38 // NOLINTBEGIN
39 MCNAPI ::std::string const& getActorName() const;
40 // NOLINTEND
41
42public:
43 // static functions
44 // NOLINTBEGIN
45 MCNAPI static ::std::unique_ptr<::LootItemCondition> deserialize(::Json::Value const& object);
46 // NOLINTEND
47
48public:
49 // virtual function thunks
50 // NOLINTBEGIN
52
53 MCNAPI ::LootItemCondition::ConditionType $getConditionType() const;
54
55
56 // NOLINTEND
57
58public:
59 // vftables
60 // NOLINTBEGIN
61 MCNAPI static void** $vftable();
62 // NOLINTEND
63};
Definition Value.h:16
MCAPI::LootItemCondition::ConditionType $getConditionType() const
static MCAPI ::std::unique_ptr<::LootItemCondition > deserialize(::Json::Value const &object)
MCAPI bool $applies(::Random &context, ::LootTableContext &)
static MCAPI void ** $vftable()
MCAPI::std::string const & getActorName() const
Definition LootItemCondition.h:12
Definition LootTableContext.h:21
Definition Random.h:10
Definition context.h:5
Definition Alias.h:14