raze/libraries/ZWidget/include/zwidget/core/font.h

16 lines
271 B
C
Raw Normal View History

2024-01-04 19:37:57 +00:00
#pragma once
#include <memory>
#include <string>
class Font
{
public:
virtual ~Font() = default;
virtual const std::string& GetName() const = 0;
virtual double GetHeight() const = 0;
static std::shared_ptr<Font> Create(const std::string& name, double height);
};