28 lines
209 B
C
28 lines
209 B
C
|
//
|
||
|
// Draws the credits
|
||
|
//
|
||
|
|
||
|
#ifndef _CREDITS_
|
||
|
#define _CREDITS_
|
||
|
|
||
|
|
||
|
|
||
|
//
|
||
|
// Initialises the credits.
|
||
|
//
|
||
|
|
||
|
void CREDITS_init(void);
|
||
|
|
||
|
|
||
|
//
|
||
|
// Draws and processes the credits.
|
||
|
//
|
||
|
|
||
|
void CREDITS_draw(void);
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
#endif
|