Пример #1
0
 def __init__(self, length, breadth):
     """Make an enemy."""
     Persons.__init__(self, length, breadth)
     self.nextX = None
     self.nextY = None
     self.direction = None
     self.matrix = [['{', '*', '*', '}'], [' ', ']', '[', ' ']]
Пример #2
0
 def __init__(self, length, breadth):
     Persons.__init__(self, length, breadth)
     self.matrix = [['[', '^', '^', ']'], [' ', ']', '[', ' ']]