Game 2048 This is game 2048 created with moudle of python tkinter and OOP. This game build on classes. For start this game run: If you have python versiong 3.x.x: git clone https://github.com/githubVladimirT/Game-2048.git; cd Game-2048; python3 Game2048.py Else run: git clone https://github.com/githubVladimirT/Game-2048.git; cd Game-2048; python Game2048.py Before start app you need install moudle tkinter: For python 3.x.x run: pip3 install tkinter For python 2.x.x run: pip install tkinter In file "Board.py" located class "Board", wich draw the board. In file Game.py located class "Game", wich responsible of the game logic.