11 lines
181 B
C
11 lines
181 B
C
#ifndef PLAYERINTERFACE_H_
|
|
#define PLAYERINTERFACE_H_
|
|
|
|
enum scr_id{ARENA,MAIN_MENU,GAME_OVER};
|
|
|
|
void initDisplayLib();
|
|
void displayScreen(int scr_id);
|
|
void refreshScreen();
|
|
|
|
#endif
|