metaforce/Runtime/GuiSys/CSaveableState.cpp

14 lines
278 B
C++
Raw Normal View History

#include "Runtime/GuiSys/CSaveableState.hpp"
#include "Runtime/GuiSys/CRasterFont.hpp"
2016-03-11 00:23:16 +00:00
2018-12-08 05:30:43 +00:00
namespace urde {
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
}
2018-12-08 05:30:43 +00:00
} // namespace urde