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

25 lines
306 B
C++

/*
* GUI.hpp
*
* Created on: 10 maj 2019
* Author: robert
*/
#ifndef GUI_GUI_HPP_
#define GUI_GUI_HPP_
#include "core/Font.hpp"
namespace gui {
class GUI {
std::string assetsPath;
public:
GUI( std::string assetsPath );
virtual ~GUI();
};
} /* namespace gui */
#endif /* GUI_GUI_HPP_ */