2008-12-03 05:40:16 +00:00
|
|
|
/* A game chooser for borgs
|
|
|
|
* by: Christian Kroll
|
|
|
|
* date: Tuesday, 2008/03/16
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MENU_H_
|
|
|
|
#define MENU_H_
|
|
|
|
|
|
|
|
#include <inttypes.h>
|
|
|
|
|
|
|
|
|
2009-01-01 17:06:38 +00:00
|
|
|
typedef struct{
|
|
|
|
void(*run)(void);
|
2011-09-13 00:25:14 +00:00
|
|
|
uint8_t const *icon;
|
2009-01-01 17:06:38 +00:00
|
|
|
}game_descriptor_t;
|
|
|
|
|
|
|
|
|
2008-12-03 05:40:16 +00:00
|
|
|
void menu();
|
|
|
|
|
|
|
|
#endif /*MENU_H_*/
|
|
|
|
|