This repository has been archived on 2025-08-18. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
GGS/games/tic-tac-toe/gamerectangle.py

7 lines
223 B
Python

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)