pcb and initial code from https://github.com/das-labor/borgware-2d.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
255 B
21 lines
255 B
/* A game chooser for borgs
|
|
* by: Christian Kroll
|
|
* date: Tuesday, 2008/03/16
|
|
*/
|
|
|
|
#ifndef MENU_H_
|
|
#define MENU_H_
|
|
|
|
#include <inttypes.h>
|
|
|
|
|
|
typedef struct{
|
|
void(*run)(void);
|
|
uint8_t const *icon;
|
|
}game_descriptor_t;
|
|
|
|
|
|
void menu();
|
|
|
|
#endif /*MENU_H_*/
|
|
|
|
|