Projekt_AI-Automatyczny_saper/Engine/Point.py
2021-03-15 19:04:51 +01:00

4 lines
101 B
Python

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