# include #include //std::filesystemを使うのに必要 void Main() { //カレントディレクトリ取得 std::filesystem::path crrpath = std::filesystem::current_path(); Font font{ 30 }; while (System::Update()) { font(ここでUTF32に変換してフォントに渡す).draw(Vec2{ 10,Scene::Center().y }, Palette::White); } }