metaforce/Runtime/GuiSys/CSaveableState.cpp

15 lines
237 B
C++
Raw Normal View History

2016-03-11 00:23:16 +00:00
#include "CSaveableState.hpp"
2017-01-30 04:16:20 +00:00
#include "CRasterFont.hpp"
2016-03-11 00:23:16 +00:00
namespace urde
{
2017-01-30 04:16:20 +00:00
bool CSaveableState::IsFinishedLoading() const
{
if (!x48_font || !x48_font.IsLoaded())
return false;
return x48_font->IsFinishedLoading();
}
2016-03-11 00:23:16 +00:00
}