Files
MuditaOS/module-gui/gui/GUI.cpp
Robert Borzecki d3235d54d7 Removed submodule
2019-05-21 23:35:00 +02:00

24 lines
356 B
C++

/*
* GUI.cpp
*
* Created on: 10 maj 2019
* Author: robert
*/
#include "GUI.hpp"
#include "core/Font.hpp"
namespace gui {
GUI::GUI( std::string assetsPath ) : assetsPath{assetsPath} {
//initialize Font Manager
FontManager& fontManager = FontManager::getInstance();
fontManager.init( assetsPath );
}
GUI::~GUI() {
}
} /* namespace gui */