mirror of
https://gitlab.com/dosowisko.net/libsuperderpy.git
synced 2024-12-13 04:27:59 +01:00
11 lines
277 B
C
11 lines
277 B
C
/*! \file menu.h
|
|
* \brief Main Menu view headers.
|
|
*/
|
|
|
|
#include "main.h"
|
|
|
|
void Menu_Draw(struct Game *game);
|
|
void Menu_Preload(struct Game *game);
|
|
void Menu_Unload(struct Game *game);
|
|
void Menu_Load(struct Game *game);
|
|
int Menu_Keydown(struct Game *game, ALLEGRO_EVENT *ev);
|