first commit

This commit is contained in:
Julian Sparber
2017-02-11 20:15:35 +01:00
commit f0ede0a585
13 changed files with 1152 additions and 0 deletions

9
src/main.c Normal file
View File

@@ -0,0 +1,9 @@
#include <gtk/gtk.h>
#include "paperplaneapp.h"
int
main (int argc, char *argv[])
{
return g_application_run (G_APPLICATION (paperplane_app_new ()), argc, argv);
}