LeviLamina
Loading...
Searching...
No Matches
LootItemEnumPropertyValueCondition.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
11class HashedString;
14namespace Json { class Value; }
15// clang-format on
16
17class LootItemEnumPropertyValueCondition : public ::LootItemPropertyValueCondition {
18public:
19 // member variables
20 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 LootItemEnumPropertyValueCondition& operator=(LootItemEnumPropertyValueCondition const&);
27 LootItemEnumPropertyValueCondition(LootItemEnumPropertyValueCondition const&);
28 LootItemEnumPropertyValueCondition();
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 virtual ::LootItemCondition::ConditionType getConditionType() const /*override*/;
34
35 virtual bool _hasPropertyValue(::PropertyComponent const& component) const /*override*/;
36 // NOLINTEND
37
38public:
39 // member functions
40 // NOLINTBEGIN
42 // NOLINTEND
43
44public:
45 // static functions
46 // NOLINTBEGIN
47 MCNAPI static ::std::unique_ptr<::LootItemCondition> deserialize(::Json::Value const& object);
48 // NOLINTEND
49
50public:
51 // constructor thunks
52 // NOLINTBEGIN
53 MCNAPI void* $ctor(::HashedString propertyName, ::HashedString value);
54 // NOLINTEND
55
56public:
57 // virtual function thunks
58 // NOLINTBEGIN
59 MCNAPI ::LootItemCondition::ConditionType $getConditionType() const;
60
61 MCNAPI bool $_hasPropertyValue(::PropertyComponent const& component) const;
62
63
64 // NOLINTEND
65
66public:
67 // vftables
68 // NOLINTBEGIN
69 MCNAPI static void** $vftable();
70 // NOLINTEND
71};
Definition HashedString.h:5
Definition Value.h:16
Definition LootItemCondition.h:12
static MCAPI void ** $vftable()
MCAPI::LootItemCondition::ConditionType $getConditionType() const
MCAPI LootItemEnumPropertyValueCondition(::HashedString propertyName, ::HashedString value)
MCAPI void * $ctor(::HashedString propertyName, ::HashedString value)
MCAPI bool $_hasPropertyValue(::PropertyComponent const &component) const
static MCAPI ::std::unique_ptr<::LootItemCondition > deserialize(::Json::Value const &object)
Definition PropertyComponent.h:21
Definition Alias.h:14