GamingAgent/computer_use/games/tetris/Python-Tetris-Game-Pygame/position.py

5 lines
90 B
Python

class Position:
def __init__(self, row, column):
self.row = row
self.column = column