12 lines
208 B
C++
12 lines
208 B
C++
|
|
#include "iwa/resource/font.hpp"
|
|
|
|
namespace iwa
|
|
{
|
|
Font::Font(FontCreationArgs args)
|
|
: mBitmap(std::move(args.bitmap)), mGlyphMap(std::move(args.glyphMap)), mMetrics(args.metrics)
|
|
{
|
|
|
|
}
|
|
} // namespace iwa
|