#pragma once // Textos namespace Texts { constexpr const char* WINDOW_TITLE = "Aventures En Egipte"; constexpr const char* VERSION = "1.00"; } // namespace Texts // Resolución del juego namespace Screen { constexpr int WIDTH = 320; constexpr int HEIGHT = 200; constexpr int BUFFER_SIZE = WIDTH * HEIGHT; // 64000 } // namespace Screen