15 lines
361 B
C++
15 lines
361 B
C++
#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
|