initial commit

This commit is contained in:
2024-04-06 14:11:26 +02:00
commit 1d44ecc0ee
85 changed files with 11573 additions and 0 deletions

11
source/resource/font.cpp Normal file
View File

@@ -0,0 +1,11 @@
#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