Proyecto X-Soldiers V1 Mayo 2011
src/include/constantes.h
Go to the documentation of this file.
00001 #ifndef _CONSTANTES_H_
00002 #define _CONSTANTES_H_
00003 
00004 // Constantes para las posiciones de las imágenes en el juego
00005 // En este archivo definiremos las constantes que necesitaremos, como velocidad de las balas, daño base, etc.
00023 const int PARED_IZQUIERDA = 0;
00028 const int PARED_DERECHA = 744;
00033 const int PARED_SUPERIOR = 0;
00038 const int PARED_INFERIOR = 608;
00042 const int VIDA = 100;
00046 const int VELOCIDAD = 1;
00050 const int VELB = 5;
00054 const int DAMAGE = 10;
00058 const int RANGO = 5;
00059 
00060 const double TIEMPO = 100000;
00061 
00062 #endif /* _CONSTANTES_H_ */