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
37 virtual ~LootItemEnumPropertyValueCondition() /*override*/ = default;
38 // NOLINTEND
39
40public:
41 // member functions
42 // NOLINTBEGIN
44 // NOLINTEND
45
46public:
47 // static functions
48 // NOLINTBEGIN
49 MCNAPI static ::std::unique_ptr<::LootItemCondition> deserialize(::Json::Value const& object);
50 // NOLINTEND
51
52public:
53 // constructor thunks
54 // NOLINTBEGIN
55 MCNAPI void* $ctor(::HashedString propertyName, ::HashedString value);
56 // NOLINTEND
57
58public:
59 // virtual function thunks
60 // NOLINTBEGIN
61 MCNAPI ::LootItemCondition::ConditionType $getConditionType() const;
62
63 MCNAPI bool $_hasPropertyValue(::PropertyComponent const& component) const;
64
65
66 // NOLINTEND
67
68public:
69 // vftables
70 // NOLINTBEGIN
71 MCNAPI static void** $vftable();
72 // NOLINTEND
73};
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:19
Definition Alias.h:14