Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gabrielle-nelis/2048
This 2048 game is a classic puzzle recreated using pure Python and the Pygame library. Swipe to combine tiles and try to reach the elusive 2048 tile!
https://github.com/gabrielle-nelis/2048
2048-clone pygame python
Last synced: about 1 month ago
JSON representation
This 2048 game is a classic puzzle recreated using pure Python and the Pygame library. Swipe to combine tiles and try to reach the elusive 2048 tile!
- Host: GitHub
- URL: https://github.com/gabrielle-nelis/2048
- Owner: gabrielle-nelis
- Created: 2024-06-21T13:17:46.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-09-02T20:29:09.000Z (4 months ago)
- Last Synced: 2024-09-11T12:54:56.047Z (4 months ago)
- Topics: 2048-clone, pygame, python
- Language: Python
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 2048 Clone with Pygame
### This repository contains a Python implementation of the popular puzzle game 2048, built using the Pygame library. The game allows players to slide tiles on a grid, combining tiles of the same value to create higher-numbered tiles. The goal is to reach the coveted 2048 tile.# Features
Classic gameplay: Enjoy the familiar 2048 mechanics with a simple and intuitive interface.
Pygame-powered graphics: Experience the game with visually appealing tiles and a smooth animation.
Scoring system: Keep track of your progress and compete against yourself or others.
Game over detection: The game automatically ends when there are no more possible moves.## Getting Started
### Install dependencies:
```Bash
Ensure you have Python and Pygame installed. You can install them using pip:
pip install pygame
```### Clone the repository:
```Bash
git clone https://github.com/your-username/2048-pygame.git
```### Run the game:
```Bash
python main.py
```