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