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