Skip to content

Commit 5f832a7

Browse files
Created the basic repository and related files
0 parents  commit 5f832a7

File tree

3 files changed

+56
-0
lines changed

3 files changed

+56
-0
lines changed

.gitignore

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Virtualenv
2+
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
3+
.Python
4+
[Bb]in
5+
[Ii]nclude
6+
[Ll]ib
7+
[Ll]ib64
8+
[Ll]ocal
9+
[Ss]cripts
10+
[Tt]cl
11+
pyvenv.cfg
12+
.venv
13+
pip-selfcheck.json

LICENSE.txt

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2019 Alexander Rawson
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

readme.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
> THIS IS UNFINISHED AS OF YET
2+
3+
> IT MOST LIKELY DOESN'T WORK
4+
5+
> YOU HAVE BEEN WARNED
6+
7+
# Tetris vs AI
8+
This is a simple game of Tetris vs. a a simple AI. Not much else can be said about it. It's simply a mediocre Tetris clone and a bot that plays it with you.
9+
10+
## Installation
11+
Installation is a quick and painless process:
12+
13+
1. Install Python and Pip
14+
2. Open a terminal in the destination directory
15+
3. `git clone https://github.com/zombiepigdragon/Tetris-VS-AI.git`
16+
4. `pip install pygame`
17+
5. `python3 run.py`
18+
19+
You can re-run `run.py` at any given time in order to play the game.
20+
21+
## License
22+
This work is licensed under the [MIT license](./LICENSE.txt).

0 commit comments

Comments
 (0)