Added the boardgame tic-tac-toe without winning conditions, written entirely in Python.

This commit is contained in:
Kallfaktorn 2011-01-28 01:21:12 +01:00
parent 0590fa6ca1
commit affcb739b4
28 changed files with 448 additions and 0 deletions

View file

@ -0,0 +1,7 @@
from rectangle import Rectangle
class GameRectangle(Rectangle):
def __init__(self, index, x, y, width, height):
self.index = index
self.state = ' '
Rectangle.__init__(self, x, y, width, height)