27 lines
234 B
C
27 lines
234 B
C
//
|
|
// The checkered way Darci and Roper appear on screen.
|
|
//
|
|
|
|
#ifndef _CHECKER_
|
|
#define _CHECKER_
|
|
|
|
|
|
|
|
//
|
|
// Loads textures.
|
|
//
|
|
|
|
void CHECKER_init(void);
|
|
|
|
|
|
//
|
|
// Draws the checkers as an overlay.
|
|
//
|
|
|
|
void CHECKER_draw(void);
|
|
|
|
|
|
|
|
|
|
#endif
|