tibia-client/src/framework/fonts.cpp

23 lines
331 B
C++
Raw Normal View History

2011-03-26 21:53:08 +01:00
#include "fonts.h"
#include "resourcemanager.h"
Fonts g_fonts;
Fonts::Fonts()
{
}
Fonts::~Fonts()
{
}
bool Fonts::load()
{
std::list<std::string> files = g_resources.getDirectoryFiles("fonts");
for(auto it = files.begin(); it != files.end(); ++it) {
notice("File: %s", (*it).c_str());
2011-03-26 21:53:08 +01:00
}
return true;
}