blob: de24222cdcdfad4b026a2eb198587204ea528b1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include "Resource.h"
#include <string>
namespace cru::platform::graphics {
struct CRU_PLATFORM_GRAPHICS_API IFont : virtual IGraphicsResource {
virtual std::string GetFontName() = 0;
virtual float GetFontSize() = 0;
};
} // namespace cru::platform::graphics
|