blob: 33a3f9549780018094d8b98f5686d1c7f88fbf9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include "../Base.h"
#include <cru/platform/graphics/Font.h>
namespace cru::ui::controls {
struct CRU_UI_API IFontControl : virtual Interface {
virtual std::shared_ptr<platform::graphics::IFont> GetFont() = 0;
virtual void SetFont(std::shared_ptr<platform::graphics::IFont> font) = 0;
};
} // namespace cru::ui::controls
|