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