2019-12-22 20:04:07 +00:00
|
|
|
#include "Runtime/GuiSys/CSaveableState.hpp"
|
|
|
|
|
|
|
|
#include "Runtime/GuiSys/CRasterFont.hpp"
|
2016-03-11 00:23:16 +00:00
|
|
|
|
2021-04-10 08:42:06 +00:00
|
|
|
namespace metaforce {
|
2016-03-11 00:23:16 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
bool CSaveableState::IsFinishedLoading() const {
|
|
|
|
if (!x48_font || !x48_font.IsLoaded())
|
|
|
|
return false;
|
|
|
|
return x48_font->IsFinishedLoading();
|
2017-01-30 04:16:20 +00:00
|
|
|
}
|
|
|
|
|
2021-04-10 08:42:06 +00:00
|
|
|
} // namespace metaforce
|