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