GUI/main/main.cpp

10 lines
157 B
C++

#include "GUI.hpp"
/** main
* The main function executes the functions of the GUI.
*/
int main(int argc, char **argv) {
GUI_init();
GUI_run();
}