Merge branch 'fix-settings' into 'master'

Fix settings

Closes #57 et #58

See merge request ynerant/squirrel-battle!56
This commit is contained in:
2021-01-08 11:30:02 +01:00
8 changed files with 34 additions and 23 deletions

View File

@ -190,12 +190,11 @@ class Display:
"""
raise NotImplementedError
def handle_click(self, y: int, x: int, game: Game) -> None:
def handle_click(self, y: int, x: int, attr: int, game: Game) -> None:
"""
A mouse click was performed on the coordinates (y, x) of the pad.
Maybe it should do something.
"""
pass
@property
def rows(self) -> int: