tibia-client/src/framework/fonts.cpp

23 lines
316 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");
2011-04-02 21:59:49 +02:00
foreach(const std::string& file, files) {
notice("File: %s", file.c_str());
2011-03-26 21:53:08 +01:00
}
return true;
}