You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
191 B
C
16 lines
191 B
C
6 years ago
|
#pragma once
|
||
|
|
||
|
#define SCREEN_W 640
|
||
|
#define SCREEN_H 480
|
||
|
|
||
6 years ago
|
//Collection of states run by state machine
|
||
6 years ago
|
enum State {
|
||
|
Start,
|
||
6 years ago
|
Easy,
|
||
|
Medium,
|
||
|
Hard,
|
||
|
EXTREME,
|
||
6 years ago
|
Help,
|
||
|
End,
|
||
|
Exit
|
||
|
};
|