tetris  final beta
A tetris implementation in C
sdl.h
1 #ifndef INCLUDE_SDL_H
2 #define INCLUDE_SDL_H
3 
4 #ifdef __ANDROID__
5 #include "SDL.h"
6 #include "SDL_ttf.h"
7 #include "SDL_image.h"
8 #else
9 #include <SDL2/SDL.h>
10 #endif
11 
12 #endif