ladybird/Widgets/test.cpp

18 lines
269 B
C++
Raw Normal View History

2018-10-10 16:12:38 +03:00
#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();
}