iwa/source/resource/font.cpp
2024-04-06 14:11:26 +02:00

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