ladybird/Widgets/test.cpp
2018-10-10 15:12:38 +02:00

18 lines
269 B
C++

#include "FrameBufferSDL.h"
#include "EventLoopSDL.h"
#include "RootWidget.h"
#include <cstdio>
int main(int c, char** v)
{
FrameBufferSDL fb(800, 600);
fb.show();
EventLoopSDL loop;
RootWidget w;
fb.setRootWidget(&w);
return loop.exec();
}