Files
boot-dev-maze-solver/Point.py
2025-02-22 22:49:26 +02:00

4 lines
96 B
Python

class Point:
def __init__(self, x:int, y:int) -> None:
self.x = x
self.y = y