16 lines
271 B
C
16 lines
271 B
C
#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__
|