forked from jaildesigner-jailgames/jaildoctors_dilemma
Trabajando en la clase screen. Ya pone borde en la pantalla
This commit is contained in:
@@ -15,12 +15,16 @@
|
||||
#define HALF_BLOCK 4
|
||||
|
||||
// Tamaño de la pantalla real
|
||||
#define REAL_SCREEN_WIDTH 320
|
||||
#define REAL_SCREEN_HEIGHT 240
|
||||
|
||||
// Tamaño de la pantalla virtual
|
||||
#define SCREEN_WIDTH 256
|
||||
#define SCREEN_HEIGHT 192
|
||||
|
||||
// Tamaño de la pantalla que se muestra
|
||||
const int VIEW_WIDTH = SCREEN_WIDTH * 3;
|
||||
const int VIEW_HEIGHT = SCREEN_HEIGHT * 3;
|
||||
const int VIEW_WIDTH = REAL_SCREEN_WIDTH * 3;
|
||||
const int VIEW_HEIGHT = REAL_SCREEN_HEIGHT * 3;
|
||||
|
||||
// Zona de juego
|
||||
const int PLAY_AREA_TOP = (0 * BLOCK);
|
||||
|
||||
Reference in New Issue
Block a user