https://github.com/samuelyuan/tetris-java
A Java Tetris Game
https://github.com/samuelyuan/tetris-java
Last synced: 3 months ago
JSON representation
A Java Tetris Game
- Host: GitHub
- URL: https://github.com/samuelyuan/tetris-java
- Owner: samuelyuan
- License: mit
- Created: 2018-04-02T02:00:55.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2025-01-06T03:53:29.000Z (5 months ago)
- Last Synced: 2025-01-06T04:26:28.732Z (5 months ago)
- Language: Java
- Homepage:
- Size: 56.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Tetris
======I wrote a Tetris clone in Java for learning purposes.
Controls
---
* `left`: Move the block left
* `right`: Move the block right
* `up`: Rotate the block
* `down`: Slow drop
* `p`: Pause the gameGetting Started
---1. Clone the project
2. Compile project
```
gradle build
```3. Run project
```
gradle run
```