mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 12:25:08 +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();
|
|
}
|