2016-03-11 22:52:55 +00:00
|
|
|
#include "GuiSys/CRasterFont.hpp"
|
|
|
|
|
|
|
|
namespace urde
|
|
|
|
{
|
|
|
|
CRasterFont::CRasterFont(urde::CInputStream& in, urde::IObjectStore& store)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-03-12 05:10:14 +00:00
|
|
|
std::unique_ptr<IObj> FRasterFontFactory(const SObjectTag& tag, CInputStream& in, const CVParamTransfer& vparms)
|
|
|
|
{
|
|
|
|
return TToken<CRasterFont>::GetIObjObjectFor(std::make_unique<CRasterFont>(in, *(reinterpret_cast<IObjectStore*>(vparms.GetObj()))));
|
|
|
|
}
|
|
|
|
|
2016-03-11 22:52:55 +00:00
|
|
|
}
|