LeviLamina
Loading...
Searching...
No Matches
IFacet.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/oreui/interface/Status.h"
7#include "mc/deps/core/utility/EnableNonOwnerReferences.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace OreUI { class FacetBinder; }
12// clang-format on
13
14namespace OreUI {
15
16class IFacet : public ::Bedrock::EnableNonOwnerReferences {
17public:
18 // virtual functions
19 // NOLINTBEGIN
20 virtual ~IFacet() /*override*/ = default;
21
22 virtual void unbind(::OreUI::FacetBinder& binder) = 0;
23
24 virtual void sync(::OreUI::FacetBinder& binder, ::std::string const& id) = 0;
25
26 virtual bool update() = 0;
27
28 virtual char const* name() const = 0;
29
30 virtual ::OreUI::Status
31 init(::std::unordered_map<::std::string, ::std::variant<double, bool, ::std::string>> const&) = 0;
32 // NOLINTEND
33
34public:
35 // virtual function thunks
36 // NOLINTBEGIN
37
38 // NOLINTEND
39};
40
41} // namespace OreUI
Definition FacetBinder.h:7
Definition IFacet.h:7