metaforce/Runtime/GuiSys/CSaveableState.cpp

14 lines
288 B
C++
Raw Normal View History

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