aboutsummaryrefslogtreecommitdiff
path: root/tetris.py
diff options
context:
space:
mode:
Diffstat (limited to 'tetris.py')
-rw-r--r--tetris.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/tetris.py b/tetris.py
index e88e4a7..e97271f 100644
--- a/tetris.py
+++ b/tetris.py
@@ -1,4 +1,22 @@
#!/usr/bin/env python
+# Burton-Conner Tetris Battle -- Tetris installation controlled by DDR pads
+# Copyright (C) 2010, 2011 Simon Peverett <http://code.google.com/u/@WRVXSlVXBxNGWwl1/>
+# Copyright (C) 2011 Russell Cohen <rcoh@mit.edu>,
+# Leah Alpert <lalpert@mit.edu>
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or (at
+# your option) any later version.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
"""
Tetris Tk - A tetris clone written in Python using the Tkinter GUI library.
@@ -430,4 +448,11 @@ class TetrisGame(object):
if __name__ == "__main__":
+ print """Burton-Conner Tetris Battle Copyright (C) 2010, 2011 Simon Peverett
+ Copyright (C) 2011 Russell Cohen, Leah Alpert
+This program comes with ABSOLUTELY NO WARRANTY; for details see
+<http://gnu.org/licenses/gpl#section15>.
+This is free software, and you are welcome to redistribute it under certain
+conditions; see <http://gnu.org/licenses/gpl#content> for details."""
+
tetrisGame = TetrisGame()