Skip to content

Commit 1f71a5e

Browse files
committed
Update README.md
1 parent 1cb42e2 commit 1f71a5e

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ This is a simple implementation of the classic Tetris game using C++. The game i
77

88
## Table of Contents
99

10+
- [Download and Play](#download-and-play)
1011
- [Requirements to Code](#requirements-to-code)
1112
- [Building the Project](#building-the-project)
1213
- [Running the Game](#running-the-game)
@@ -16,6 +17,29 @@ This is a simple implementation of the classic Tetris game using C++. The game i
1617
- [License](#license)
1718
- [Contributing](#contributing)
1819

20+
## Download and Play
21+
22+
Visit the project’s [Releases](https://github.com/itssimmons/tetris.cpp/releases) page and download the binary that corresponds to your operating system. Once downloaded, execute the file from your terminal to begin the game.
23+
24+
> ⚠️ **Terminal Compatibility**
25+
> Ensure that your terminal emulator supports ANSI escape sequences; otherwise, colors and screen rendering may not display correctly.
26+
27+
> 🔒 **Security Notice**
28+
> Precompiled binaries may be flagged by your operating system’s security mechanisms because they are unsigned.
29+
>
30+
> * **Windows:** If a SmartScreen warning appears, select **“More info”** and then **“Run anyway.”**
31+
> * **MacOS:** You may need to remove the quarantine attribute:
32+
>
33+
> ```bash
34+
> xattr -d com.apple.quarantine /path/to/tetris
35+
> ```
36+
> * **Linux:** Grant execute permission before running:
37+
>
38+
> ```bash
39+
> chmod +x /path/to/tetris
40+
> ```
41+
42+
1943
## Requirements to Code
2044
2145
- A C++ compiler (like g++)

0 commit comments

Comments
 (0)