luapage/ui.h
2021-05-02 15:07:43 +03:00

18 lines
No EOL
254 B
C

#ifndef __UI_H
#define __UI_H
#include <gtk/gtk.h>
enum ElementType {
Heading1,
Text
};
struct application_state {
GtkApplication* app;
};
struct application_state new_application();
void add_element(enum ElementType elementType);
#endif