#pragma once #ifndef CONST_H #define CONST_H // Textos #define WINDOW_CAPTION "Volcano (©2016,2022 JailDesigner v0.6)" // Tamaño de bloque #define BLOCK 8 #define HALF_BLOCK 4 // Tamaño de la pantalla real #define SCREEN_WIDTH 320 #define SCREEN_HEIGHT 240 // Tamaño de la pantalla virtual #define GAMECANVAS_WIDTH 320 #define GAMECANVAS_HEIGHT 240 #endif