Projekt_AI-Automatyczny_saper/Engine/Point.py

4 lines
101 B
Python
Raw Normal View History

2021-03-15 19:04:51 +01:00
class Point:
def __init__(self, column, row):
self.column = column
self.row = row