6 lines
133 B
Python
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
|