luapage/ui.h

18 lines
254 B
C
Raw Normal View History

2021-05-02 15:07:43 +03:00
#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