mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-22 01:46:15 +01:00
13 lines
173 B
C++
13 lines
173 B
C++
#include "FL/fl_ask.H"
|
|
|
|
#include "UserInterface.hpp"
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
Fl::scheme("plastic");
|
|
UserInterface ui;
|
|
ui.show();
|
|
return Fl::run();
|
|
}
|