This commit is contained in:
2024-10-10 18:16:13 -05:00
commit 3657b8de60
11 changed files with 118 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
#ifndef __CORE_H__
#define __CORE_H_
#include <agar/core.h>
void init_core();
void event_loop();
#endif // __CORE_H__
+15
View File
@@ -0,0 +1,15 @@
#ifndef __GUI_H__
#define __GUI_H__
#include <agar/core.h>
#include <agar/gui.h>
void init_gui();
AG_Window* make_window();
void show_window(AG_Window*);
AG_Label* make_label(void* parent);
void set_label_text(AG_Label* label, const char* text);
#endif // __GUI_H__