13 lines
244 B
C++
13 lines
244 B
C++
#include "run_gui.hpp"
|
|
#include "main_window.hpp"
|
|
#include "app_config.h"
|
|
|
|
namespace duck {
|
|
int run_gui(int icon_size, int icon_fps) {
|
|
MainWindow win(icon_size, icon_fps, APP_NAME);
|
|
win.show();
|
|
|
|
nana::exec();
|
|
return 0;
|
|
}
|
|
} //namespace duck
|