This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/share/CodeBlocks/templates/fluid-main.cpp

13 lines
160 B
C++

#include "main_ui.h"
int main (int argc, char ** argv)
{
Fl_Window *window;
window = make_window();
window->show (argc, argv);
return(Fl::run());
}