You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+24Lines changed: 24 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,7 @@ This is a simple implementation of the classic Tetris game using C++. The game i
7
7
8
8
## Table of Contents
9
9
10
+
-[Download and Play](#download-and-play)
10
11
-[Requirements to Code](#requirements-to-code)
11
12
-[Building the Project](#building-the-project)
12
13
-[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
16
17
-[License](#license)
17
18
-[Contributing](#contributing)
18
19
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:
0 commit comments