Added frogs. Linting.

This commit is contained in:
Cameron Smart
2020-04-22 22:17:37 -07:00
parent 05a9900687
commit e9c8afa758
4 changed files with 69 additions and 63 deletions

View File

@@ -32,8 +32,6 @@ class Mob(arcade.Sprite):
self.target = None
class Player(Mob):
"""
Represents a Player.
@@ -67,7 +65,6 @@ class Player(Mob):
print("+++++++++++++++++++++++++++++++++++++++++++++++++++++++")
self.kill_list = []
def update_animation(self, delta_time: float = 1 / 60) -> None:
"""
Updates animations for the Player.
@@ -161,4 +158,3 @@ class Enemy(Mob):
paths, runs = self.dungeon.finder.find_path(start, end, self.dungeon.grid)
self.dungeon.grid.cleanup()
return paths