changeset 3338 | 9de326b3099c |
parent 2792 | c2d9b1aff59f |
child 4884 | 27ab20a36eba |
3337:9ac6f0782dd6 | 3338:9de326b3099c |
---|---|
1 /* Simple program: Move N sprites around on the screen as fast as possible */ |
1 /* Simple program: Move N sprites around on the screen as fast as possible */ |
2 |
2 |
3 #include <stdlib.h> |
3 #include <stdlib.h> |
4 #include <stdio.h> |
4 #include <stdio.h> |
5 #include <string.h> |
|
6 #include <ctype.h> |
|
5 #include <time.h> |
7 #include <time.h> |
6 #include <math.h> |
8 #include <math.h> |
7 |
9 |
8 #include "SDL.h" |
10 #include "SDL.h" |
9 |
11 |