mirror of
https://github.com/n0remac/game-jam-2020.git
synced 2025-12-15 00:09:55 -06:00
Added frogs. Linting.
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user