// Copyright (c) Wojciech Figat. All rights reserved. #pragma once #include "Types.h" #if COMPILE_WITH_ASSETS_IMPORTER /// /// Importing fonts utility /// class ImportFont { public: /// /// Imports the font file. /// /// The importing context. /// Result. static CreateAssetResult Import(CreateAssetContext& context); }; #endif