LeviLamina
Loading...
Searching...
No Matches
CommandPropertyBag.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/PropertyBag.h"
7
8// auto generated forward declare list
9// clang-format off
10class BlockPos;
11class Vec3;
12namespace Json { class Value; }
13// clang-format on
14
15class CommandPropertyBag : public ::PropertyBag {
16public:
17 // virtual functions
18 // NOLINTBEGIN
19 virtual ~CommandPropertyBag() = default;
20 // NOLINTEND
21
22public:
23 // member functions
24 // NOLINTBEGIN
25 MCAPI CommandPropertyBag();
26
27 MCAPI explicit CommandPropertyBag(::Json::Value const& jsonValue);
28
29 MCAPI void addToResultList(::std::string const& key, ::std::string const& element);
30
31 MCAPI ::std::unique_ptr<::CommandPropertyBag> clone() const;
32
33 MCAPI bool operator==(::CommandPropertyBag const& other) const;
34
35 MCAPI void set(::std::string const& key, ::BlockPos const& pos);
36
37 MCAPI void set(::std::string const& key, ::Vec3 size);
38
39#ifdef LL_PLAT_S
40 MCAPI void set(::std::string const& key, ::Json::Value const& val);
41#endif
42 // NOLINTEND
43
44public:
45 // constructor thunks
46 // NOLINTBEGIN
47 MCAPI void* $ctor();
48
49 MCAPI void* $ctor(::Json::Value const& jsonValue);
50 // NOLINTEND
51
52public:
53 // vftables
54 // NOLINTBEGIN
55 MCNAPI static void** $vftable();
56 // NOLINTEND
57};
Definition BlockPos.h:21
static MCAPI void ** $vftable()
Definition Value.h:16
Definition Vec3.h:10