mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-24 21:11:26 +00:00
15 lines
271 B
C++
15 lines
271 B
C++
#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);
|
|
};
|