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