#pragma once #include #include #include struct SingleFontData { std::vector fontdata; std::vector> ranges; int language = -1; // mainly useful if we start supporting Chinese so that we can use another font there than for Japanese. }; std::vector LoadWidgetFontData(const std::string& name); std::vector LoadWidgetImageData(const std::string& name);