Proyecto Final - Turinmachin
Recreación del minijuego de matemáticas de Brain-Age usando redes neuronales
|
#include <cstddef>
#include <string>
Go to the source code of this file.
Namespaces | |
namespace | game |
Variables | |
constexpr std::string | game::GAME_TITLE = "Brain Ager" |
constexpr int | game::WINDOW_WIDTH = 960 |
constexpr int | game::WINDOW_HEIGHT = 540 |
constexpr int | game::FPS = 60 |
constexpr double | game::DELTA = 1.0 / FPS |
constexpr long double | game::MAX_TIME_ACCUMULATOR = 4 * DELTA |
constexpr int | game::CANVAS_WIDTH = WINDOW_HEIGHT |
constexpr int | game::CANVAS_HEIGHT = WINDOW_HEIGHT |
constexpr int | game::CANVAS_X = WINDOW_WIDTH - CANVAS_WIDTH |
constexpr int | game::CANVAS_Y = 0 |
constexpr std::size_t | game::HISTORY_LIMIT = 4 |