Linting
This commit is contained in:
@ -12,8 +12,10 @@ class Map:
|
||||
width: int
|
||||
height: int
|
||||
tiles: list
|
||||
currentx : int #coordinates of the point that should be on the topleft corner of the screen
|
||||
currenty : int
|
||||
# coordinates of the point that should be
|
||||
# on the topleft corner of the screen
|
||||
currentx: int
|
||||
currenty: int
|
||||
|
||||
def __init__(self, width: int, height: int, tiles: list):
|
||||
self.width = width
|
||||
@ -88,7 +90,7 @@ class Tile(Enum):
|
||||
class Entity:
|
||||
y: int
|
||||
x: int
|
||||
name : str
|
||||
name: str
|
||||
map: Map
|
||||
|
||||
def __init__(self):
|
||||
|
Reference in New Issue
Block a user