LeviLamina
Loading...
Searching...
No Matches
LootItemFloatPropertyValueCondition.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#include "mc/world/level/storage/loot/predicates/LootItemPropertyValueCondition.h"
8
9// auto generated forward declare list
10// clang-format off
13namespace Json { class Value; }
14// clang-format on
15
16class LootItemFloatPropertyValueCondition : public ::LootItemPropertyValueCondition {
17public:
18 // member variables
19 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 LootItemFloatPropertyValueCondition& operator=(LootItemFloatPropertyValueCondition const&);
26 LootItemFloatPropertyValueCondition(LootItemFloatPropertyValueCondition const&);
27 LootItemFloatPropertyValueCondition();
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 virtual ::LootItemCondition::ConditionType getConditionType() const /*override*/;
33
34 virtual bool _hasPropertyValue(::PropertyComponent const& component) const /*override*/;
35
36 virtual ~LootItemFloatPropertyValueCondition() /*override*/ = default;
37 // NOLINTEND
38
39public:
40 // static functions
41 // NOLINTBEGIN
42 MCNAPI static ::std::unique_ptr<::LootItemCondition> deserialize(::Json::Value const& object);
43 // NOLINTEND
44
45public:
46 // virtual function thunks
47 // NOLINTBEGIN
48 MCNAPI ::LootItemCondition::ConditionType $getConditionType() const;
49
50 MCNAPI bool $_hasPropertyValue(::PropertyComponent const& component) const;
51
52
53 // NOLINTEND
54
55public:
56 // vftables
57 // NOLINTBEGIN
58 MCNAPI static void** $vftable();
59 // NOLINTEND
60};
Definition Value.h:16
Definition LootItemCondition.h:12
MCAPI::LootItemCondition::ConditionType $getConditionType() const
static MCAPI void ** $vftable()
MCAPI bool $_hasPropertyValue(::PropertyComponent const &component) const
static MCAPI ::std::unique_ptr<::LootItemCondition > deserialize(::Json::Value const &object)
Definition PropertyComponent.h:19
Definition Alias.h:14