mirror of
https://github.com/n0remac/game-jam-2020.git
synced 2025-12-09 20:05:18 -06:00
remove useless functions, basic reformat command, add dumb docstring
This commit is contained in:
@@ -64,10 +64,6 @@ class Dungeon(object):
|
||||
self.floor_list.extend(room_floor)
|
||||
self.wall_list.extend(room_wall)
|
||||
|
||||
def add_level(self, sprit_list):
|
||||
for x in sprit_list:
|
||||
self.levels.append(x)
|
||||
|
||||
def render(self) -> None:
|
||||
"""
|
||||
Calls render on all level
|
||||
@@ -145,9 +141,6 @@ class Level:
|
||||
x = 0
|
||||
y += 1
|
||||
|
||||
def get_lists(self):
|
||||
return self.floor_list, self.wall_list
|
||||
|
||||
def rotate_level(self, times_rotated):
|
||||
"""
|
||||
Rotates the
|
||||
|
||||
Reference in New Issue
Block a user