mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-12-01 14:31:55 +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();
|
||
|
}
|