mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-05 05:37:25 -04:00
25 lines
306 B
C++
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_ */
|