mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-25 05:55:13 +00:00
14 lines
349 B
C++
14 lines
349 B
C++
#include <WindowServer/WSScreen.h>
|
|
#include <WindowServer/WSWindowManager.h>
|
|
#include <WindowServer/WSMessageLoop.h>
|
|
|
|
int main(int, char**)
|
|
{
|
|
WSMessageLoop loop;
|
|
WSScreen screen(1024, 768);
|
|
WSWindowManager window_manager;
|
|
|
|
dbgprintf("Entering WindowServer main loop.\n");
|
|
WSMessageLoop::the().exec();
|
|
ASSERT_NOT_REACHED();
|
|
}
|