mirror of
https://gitlab.com/dosowisko.net/libsuperderpy.git
synced 2025-02-01 19:16:44 +01:00
12 lines
280 B
C
12 lines
280 B
C
|
/*! \file pause.h
|
||
|
* \brief Pause state headers.
|
||
|
*/
|
||
|
|
||
|
#include "main.h"
|
||
|
|
||
|
void Pause_Draw(struct Game *game);
|
||
|
void Pause_Preload(struct Game *game);
|
||
|
void Pause_Unload(struct Game *game);
|
||
|
void Pause_Load(struct Game *game);
|
||
|
int Pause_Keydown(struct Game *game, ALLEGRO_EVENT *ev);
|