Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jvaelen/2048
A C++/Qt clone of the popular 2048 game
https://github.com/jvaelen/2048
Last synced: 18 days ago
JSON representation
A C++/Qt clone of the popular 2048 game
- Host: GitHub
- URL: https://github.com/jvaelen/2048
- Owner: jvaelen
- Created: 2014-03-14T21:09:23.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-05-26T14:33:45.000Z (over 9 years ago)
- Last Synced: 2024-07-31T22:49:50.478Z (3 months ago)
- Language: C++
- Size: 299 KB
- Stars: 229
- Watchers: 22
- Forks: 108
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
2048
====A C++/Qt clone of the popular 2048 game.
Game logic is written in C++, the GUI in Qt 5.2.1. The entire GUI is written in code, Qt Creator's UI designer was not used.
The core is decoupled from the GUI using the observer pattern, so it is easy to pull the code, extract the core and then build a new GUI around it.
Screenshot
--
![Alt text](http://i.imgur.com/0gJZqvI.png)Build instructions
--
1. Download and install Qt (https://www.qt.io/download-open-source/)
2. Open Qt Creator, File > Open File or Project... > Locate `ExpGame.pro` and select it
3. Build project
4. RunAlternatively, if you want to build outside of Qt Creator, this is possible as long as your system has both `qmake` and `make`. In that case, just run `qmake && make` in the checked out repository.