blob: e1a419eba6a41943104661e4db03a19df94feb00 (
plain)
| 1
2
3
4
5
6
7
8
 | #pragma once
#include "Resource.hpp"
namespace cru::platform::graphics {
struct IFont : virtual IGraphicsResource {
  virtual float GetFontSize() = 0;
};
}  // namespace cru::platform::graphics
 |