project for a (works on my devices) demo
This commit is contained in:
14
SOURCES/main.c
Executable file
14
SOURCES/main.c
Executable file
@@ -0,0 +1,14 @@
|
||||
#include "graphics/library/application_context.h"
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
int main(int argc, char* argv[]) {
|
||||
application_context *app;
|
||||
|
||||
app = application_context_new( "Hello World");
|
||||
|
||||
fprintf(stderr, "ready to loop\n");
|
||||
while(1){
|
||||
gui_component_draw(app->win, 1);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user