mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-23 16:10:20 +00:00
10 lines
199 B
C++
10 lines
199 B
C++
#include "TaskbarWindow.h"
|
|
#include <LibGUI/GApplication.h>
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
GApplication app(argc, argv);
|
|
TaskbarWindow window;
|
|
window.show();
|
|
return app.exec();
|
|
}
|