# font\_t

## Declaration:

```cpp
// font_t is simply returned from "render::create_font" and has no members
class font_t { }
```

## Constructors:

```cpp
// takes no arguments and simply returns font_t@
font_t()
```

## Example:

```cpp
// tahoma at 13px
auto tahoma_13 = render::create_font("C:\\Windows\\Fonts\\Tahoma.ttf", 13f);
```
