Unravel Engine C++ Reference
Loading...
Searching...
No Matches
font.cpp
Go to the documentation of this file.
1#include "font.hpp"
2
3namespace unravel
4{
5
7{
8 entt::meta_factory<font>{}
9 .type("font"_hs)
11 entt::attribute{"name", "font"},
12 entt::attribute{"pretty_name", "Font"},
13 });
14}
15
16} // namespace unravel
attributes::value_type attribute
Definition reflection.h:19
std::map< std::string, meta_any > attributes
Definition reflection.h:18
#define REFLECT(cls)
Definition reflection.h:133