mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-27 10:00:24 +00:00
a22774ee3f
I originally thought I would do this inside WindowServer, but let's try to make it as a standalone app that communicates with WindowServer instead. That will allow us to use LibGUI. :^)
10 lines
199 B
C++
10 lines
199 B
C++
#include <LibGUI/GApplication.h>
|
|
#include "TaskbarWindow.h"
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
GApplication app(argc, argv);
|
|
TaskbarWindow window;
|
|
window.show();
|
|
return app.exec();
|
|
}
|