mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-04 21:27:30 -04:00
24 lines
356 B
C++
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 */
|