Machine_learning_2023/domain/entity.py
2023-03-28 20:14:23 +02:00

6 lines
128 B
Python

class Entity:
def __init__(self, x: int, y: int, type: str):
self.x = x
self.y = y
self.type = type