mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 10:22:05 -05:00
16 lines
346 B
C++
16 lines
346 B
C++
#include "IRCClient.h"
|
|
#include <LibGUI/GApplication.h>
|
|
#include "IRCAppWindow.h"
|
|
#include <stdio.h>
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
GApplication app(argc, argv);
|
|
|
|
IRCAppWindow app_window;
|
|
app_window.set_should_exit_event_loop_on_close(true);
|
|
app_window.show();
|
|
|
|
printf("Entering main loop...\n");
|
|
return app.exec();
|
|
}
|