1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
#ifndef GAME_HPP # define GAME_HPP #include <cstdlib> #include "2048.hpp" class Game { public: Game(int s); ~Game(); int getSize(); int at(int x, int y); void move(Direction direction); void spawn(); bool lost(); private: int size; int **grid; }; #endif