You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
318 B
13 lines
318 B
#ifndef SCREENIDS_H_
|
|
#define SCREENIDS_H_
|
|
|
|
// Keinen Platz zwischen den IDs lassen! Jede Zahl nutzen!
|
|
|
|
#define SCREEN_AMOUNT 5 // AUCH IN GAME.H ÄNDERN!!!
|
|
#define SCREEN_EXIT 0 // Will exit the game using code 0
|
|
#define SCREEN_MAINMENU 1
|
|
#define SCREEN_OPTIONS 2
|
|
#define SCREEN_GAME 3
|
|
#define SCREEN_PAUSE 4
|
|
|
|
#endif |