Machine_learning_2023/domain/entities/entity.py

6 lines
133 B
Python

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