2019-11-18 14:56:11 +01:00
|
|
|
#include "../src/GUI.hpp"
|
2019-10-23 13:32:13 +02:00
|
|
|
|
2019-11-14 15:09:43 +01:00
|
|
|
/** main
|
|
|
|
* The main function executes the functions of the GUI.
|
2019-11-07 12:43:16 +01:00
|
|
|
*/
|
2019-11-14 15:11:10 +01:00
|
|
|
|
2019-11-07 12:43:16 +01:00
|
|
|
int main(int argc, char **argv) {
|
2019-11-18 14:56:11 +01:00
|
|
|
GUI_run(argc,argv);
|
2019-11-14 12:40:34 +01:00
|
|
|
}
|